【发布时间】:2013-05-18 14:11:16
【问题描述】:
我建议在hook_preprocess_page() 实现中从模块完成模板文件,但似乎没有使用建议的模板文件。
模板文件为page--terminal-template.tpl.php,在包含模块的目录下,这是hook_preprocess_page()的实现。
function terminal_preprocess_page(&$variables) {
if (arg(0) == "terminal") {
$variables['theme_hook_suggestions'][] = "page__terminal_template";
}
}
谁能帮帮我?
【问题讨论】:
标签: drupal drupal-7 drupal-theming