Для конкретной темы я в template.php пишу:
function tema_preprocess_page(&$vars) {
if(arg(0) == 'taxonomy' && arg(1) == 'term' && is_numeric(arg(2))) {
$term = taxonomy_get_term(arg(2));
if ($term->vid==1) {
$vars['template_files'][] = 'page-vocabulary-1';
}
} }
if(arg(0) == 'taxonomy' && arg(1) == 'term' && is_numeric(arg(2))) {
$term = taxonomy_get_term(arg(2));
if ($term->vid==1) {
$vars['template_files'][] = 'page-vocabulary-1';
}
} }
А как в моем модуле сделать единый шаблон для страницы?
Шаблон находится в папке модуля
Комментарии
http://api.drupal.org/api/function/template_preprocess/6
+hook_theme