3

我正在为 drupal 7 编写模块。模块在该块 ['content'] 内生成块和项目列表。当我使用标准主题('item_list', array('items' => $items)) 一切正常,但是当我想定义我自己的主题来代替 item_list 时,阻止消失。我一直在阅读文档和各种示例,但没有任何帮助。在我的模块文件中,我写道:

function lastposts_thm_theme() {
  return array(
   'lastposts_thm' => array(
   'variables' => array('items' => NULL),
   //template file, path, ....
   ),
 );
}
function theme_lastposts_thm($variables) {
  $node = $variables['items'];
  $build = node_view($node);
  $output = drupal_render($build);

  return $output;
}

当我从 block_view 函数调用它时,它不起作用主题('lastposts_thm',$...)。我在哪里弄错了?

4

1 回答 1

1

检查您的主题是否打印块的变量并在主题的信息字段中定义区域。这可能是您面临的问题。.

于 2012-11-05T04:41:07.233 回答