如何实现在Drupal 7 hook_theme?(How to implement hook_th

2019-07-01 11:02发布

我创建了一个新的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>';
//...

我检查萤火虫,它得到的信息“呼叫头部模板”,它的意思是呼吁header.tpl.php,但它并没有打印的HTML代码。 这有什么错我的代码?

Answer 1:

尝试添加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);


文章来源: How to implement hook_theme in drupal 7?