gpt4 book ai didi

php - 如何在 drupal 7 中实现 hook_theme?

转载 作者:可可西里 更新时间:2023-10-31 22:11:00 25 4
gpt4 key购买 nike

我创建了一个新的 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放到templates目录下,清除所有缓存,调用主题函数:

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 模板”的信息,这意味着它调用了 header.tpl.php,但它没有打印 html 代码。我的代码有什么问题?

最佳答案

尝试在hook_theme中加入variables数组

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

关于php - 如何在 drupal 7 中实现 hook_theme?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12985689/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com