我创建了一个新的drupal 7主题并试图在template.php上实现hook_theme,如下所示:
function mytheme_theme($existing, $type, $theme, $path){
return array(
'mytheme_header'=>array(
'template'=>'header',
'path'=>$path.'/templates',
'type'=>'theme',
),
);
}
然后我将header.tpl.php放入模板目录并清除所有缓存,并调用主题函数:
theme('mytheme_header', $vars);
和header.tpl.php喜欢这个:
<?php
fb('calling header template');//the function of FirePHP to output debug info
print '<div>Header</div>';
//...
我检查Firebug并获取信息'调用标头模板',这意味着它已调用header.tpl.php,但它没有打印html代码。我的代码出了什么问题?
答案 0 :(得分:17)
尝试在variables
hook_theme
数组
function mytheme_theme($existing, $type, $theme, $path){
return array(
'mytheme_header' => array(
'template' => 'header',
'path' => $path . '/templates',
'type' => 'theme',
'variables' => array(
'title' => NULL,
'some_text' => NULL,
),
),
);
}
在header.tpl.php
文件中:
<h1><?php print $title; ?></h1>
<p><?php print $some_text; ?></p>
然后,将其打印出来:
$vars = array();
$vars['title'] = "This is a title";
$vars['some_text'] = "Some text...";
print theme('mytheme_header', $vars);