我创建了一个自定义块,并希望将其与关联模块中的tpl相关联。
目前我只能在主题文件夹中关联tpl文件。
我希望它是模块的tpl,然后使用hook_menu并将一些数据传递给它,这在主题文件夹中使用tpl是不可能的(据我所知)。
这甚至可能吗?
如果这不可能,我想在我的主题中使用tpl作为容器并使用hook_menu传递其内容,但我不知道如何返回我将在模块中创建的tpl / theme。 / p>
有人可以帮助我吗?
答案 0 :(得分:2)
我希望以下示例可以帮助您
function MYMODULEBLOCK_block_info() {
$blocks['MYMODULE_BLOCK_NAME'] = array(
'info' => t('MYMODULE BLOCK TITLE'),
'cache' => DRUPAL_NO_CACHE, //there are a number of caching options for this
);
return $blocks;
}
function MYMODULEBLOCK_block_view($delta = ''){
switch($delta){
case 'MYMODULE_BLOCK_NAME':
if(user_access('access content')){ //good idea to check user perms here
$block['subject'] = t('MYBLOCK_TITLE');
$block['content'] = MYMODULE_BLOCK_FUNCTION_ITEMS();
return $block;
}
break;
}
}
function MYMODULE_BLOCK_FUNCTION_ITEMS(){
$items = array();
$items['VAR_ONE'] = array('#markup' => 'VAR_ONE_OUTPUT'); //this is the simplest kind of render array
$items['VAR_TWO'] = array(
'#prefix' => '<div>',
'#markup' => 'VAR_TWO_OUTPUT',
'#suffix' => '</div>',
);
// this is where the $items get sent to your default MYMODULE_BLOCK.tpl.php that gets
// registered below
return theme('MYMODULE_BLOCK_FUNCTION_ITEMS', array('items' => $items));
}
//here you are registering your default tpl for the above block
function MYMODULE_theme() {
$module_path = drupal_get_path('module', 'MYMODULE');
$base = array(
'path' => "$module_path/theme",
);
return array(
'MYMODULE_BLOCK_FUNCTION_ITEMS' => $base + array(
'template' => 'MYMODULE_BLOCK', //leave off .tpl.php
'variables' => array('items' => NULL,),
),
);
}
CAPITALS中的所有内容(DRUPAL_NO_CACHE除外)都可以根据需要命名
然后在你的模块中名为theme /的子文件夹中,应该有一个名为MYMODULE_BLOCK.tpl.php的文件,其中可能包含:
<?php
$items = $variables['items'];
print render($items['VAR_ONE']);
print render($items['VAR_TWO']);
如果您愿意,您实际上可以覆盖&#34;默认&#34;您刚刚在主题中为MYMODULE_BLOCK.tpl.php创建的模块实现,如您所希望的那样 - MYMODULE - DELTA.tpl.php
答案 1 :(得分:1)
我这样做的方式如下......
function YOURMODULE_menu(){
$items['somepage'/%] = array(
'title' => 'Some page title',
'page callback' => 'YOURMODULE_page',
'page arguments' => array(1),
'type' => MENU_CALLBACK,
'access arguments' => array('access content'),
);
return $items;
}
function YOURMODULE_page($data){
$output = 'value from YOURMODULE module! = '.$data;
return theme('theme_file',array('results' => $output));
}
function YOURMODULE_theme() {
$path = drupal_get_path('module', 'YOURMODULE');
return array(
'theme_file' => array(
'variables' => array('results' => null),
'template' => 'theme_file',
'path' => $path,
),
);
}
将你的tpl文件theme_file.tpl.php放在你的模块目录中,里面使用下面的代码。
<?php print $results; ?>
或
function YOURMODULE_theme() {
return array(
'theme_file' => array(
'variables' => array('results' => null),
'template' => 'theme_file',
),
);
}
将您的tpl文件theme_file.tpl.php放在您的主题目录中,并在其中放置以下代码
<?php print $results; ?>