我建议在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";
}
}
有人可以帮我吗?