如何在drupal 7中实现hook_theme?

时间:2012-10-20 05:53:43

标签: php drupal drupal-7 drupal-theming

我创建了一个新的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代码。我的代码出了什么问题?

1 个答案:

答案 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);