есть в папке с темой файл gallery.css и есть страничка с таким адресом http://gallery.art/admin/content/image , мне к етой странице нужно применить етот css, и как ето у меня не получаеться *(...
что я сделал: открил файл template.php и в функции _phptemplate_variables добавил вот такое
switch ($hook) {
case (preg_match('/image/', drupal_get_path_alias($_GET['q'])) ? TRUE : FALSE):
drupal_add_css(path_to_theme() . 'gallery.css');
}
и в целом функция стала вот такой
function _phptemplate_variables($hook, $vars) {
if ($hook == 'page') {
switch ($hook) {
case (preg_match('/image/', drupal_get_path_alias($_GET['q'])) ? TRUE : FALSE):
drupal_add_css(path_to_theme() . 'gallery.css');
}
if ($secondary = menu_secondary_local_tasks()) {
$output = '';
$output .= "
\n";
$vars['tabs2'] = $output;
}
// Hook into color.module
if (module_exists('color')) {
_color_page_alter($vars);
}
return $vars;
}
return array();
}
так вот, ето правильно ?.. иль я чтото не то сделал ?
Если не правильно.. то как правильно и как вообще заюзать етот файл к странице ?(