如何创建一个html片段,我可以在多个模板页面中重复使用并将变量s传递给?有些人喜欢这样(但显然有点复杂):
<ul>
<? foreach ($items as $item): ?>
<li><?=$item?></li>
<? endfor; ?>
</ul>
由于
答案 0 :(得分:8)
在自定义模块中使用hook_theme()
,然后在模板中调用theme()
方法。
在你的模块中:
mymodule_theme($existing, $type, $theme, $path) {
return array(
'my_theme_name' => array(
'template' => 'my_template_file_name', // without the .tpl.php extension
'variables' => array(), // to define default values for passed variables
)
);
}
在你的模板中:
theme('my_theme_name', array('arg1' => 'val1', 'arg2' => 'val2'));