把Html结构放在drupal中

时间:2014-01-06 12:04:58

标签: drupal drupal-7 drupal-modules drupal-views

您好我已经创建了一个自定义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的新手,所以如果有人能帮助我解决这个问题,那将是可观的。

1 个答案:

答案 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']变量中的模板文件中获得。