/* Метод возвращает имя нового файла */ protected function getName($array, $ext) { $hash = array( $this->getTimes($array), $this->_options['expires_' . $ext], $this->_options['gzip_' . $ext], $ext, SX::get('options.theme') ); if ($ext === 'css') { $hash[] = SX::get('section.CSS_Theme'); } $hash = md5(implode('_', $hash)); $ext = $this->extension($ext); return urlencode('status_x_' . $ext . '_' . $hash . '.' . $ext); }