使用drupal 7调用自定义主题

时间:2013-06-06 16:42:13

标签: php drupal-7

刚刚在气泡模块中创建了一个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);

$输出为空。我是主流的新手,所以我不知道从哪里开始调试。 如果有人可以提供帮助,我会很高兴。

0 个答案:

没有答案