刚刚在气泡模块中创建了一个 Drupal7 主题,并在模块气泡内的文件夹模板中添加了模板 bubbles.tpl。使用下面的钩子,我希望调用模板bubble.tpl 并传递一些变量。
function bubbles_theme($existing, $type, $theme, $path){
return array(
'bubbles' => array(
'variables' => array(
'name' => "test",
'description' => "test time being."
),
'template' => 'bubbles',
'path' => 'template'
)
);
}
在我调用的 template.php 预处理钩子中
$variables = array(
'name' => 1,
'description' => 2
);
$output = theme('bubbles',$variables);
$ 输出为空。我是主题新手,所以我不明白从哪里开始调试。如果有人可以提供帮助,我会很高兴。