您好我已经创建了一个自定义drupal模块,在我的模块中我必须使用while循环从数据库中获取数据并在此ul,li结构中打印数据。请告诉我如何才能这样做
<ul class="catCol"><li><div class="itemLine"><div class="itemTitle"><a href="test_film.html"><font><font>test film</font></font></a></div><div class="itemCategory"><font><font>Pharmacy and Wholesale</font></font></div>
<div class="itemDate"><span class="date"><font><font>11 Feb 2013</font></font></span></div>
</div>
<div style="clear:both;"></div>
</li>
我是drupal的新手,所以如果有人能帮助我解决这个问题,那将是可观的。
答案 0 :(得分:2)
function your_callback(){
return theme('custom_output', array('results' => $results)); // $results an array with results from database
}
function your_module_name_theme() {
return array(
'custom_output' => array(
'file' => 'your_template.tpl.php', // place your file in 'templates' folder of your module folder
'path' => drupal_get_path('module', 'your_module_name') .'/templates'
)
);
}
在'your_template.tpl.php'中你也可以输入php和html。从数据库中选择的结果可以从$ variables ['results']变量中的模板文件中获得。