创建自定义 .tpl 文件以对自定义块进行主题化的 Drupal 方法是什么?具体来说,我正在尝试以编程方式创建一个块,然后找到一种方法将视图代码与模块 php 代码分开。如果它是一个页面,Drupal theme() 将是实现这一目标的非常有效的方法。但是我找不到对自定义块做同样事情的 Drupal 方法是什么。我试过使用 hook_theme() 没有运气。
//implementation of hook_block_info
function mymodule_block_info() {
$blocks = array();
$blocks['myblock'] = array(
'info' => t('My Block Title'),
);
return $blocks;
}
//implementation of hook_block_view
function mymodule_block_view($delta='') {
$block = array();
switch($delta) {
case 'myblock' :
$block['content'] = mymodule_get_block_view();
break;
}
return $block;
}
function mymodule_get_block_view(){
$variables=array();
return theme('mytemplate', $variables);
}
//implementation of hook_theme
function codefactory_theme() {
return array(
'mytemplate' => array(
'variables' => array(),
'template' => 'mytemplate',
),
);
}