我已经生成了一个查询,如下所示,并将结果格式化为链接:
$result = db_query("SELECT name FROM {taxonomy_term_data} WHERE vid = :val", array(':val' => '1'));
$list = array();
foreach ($result as $record) {
$list[] = l($record->name, 'blog/' . $record->name);
}
现在我想将此数组渲染为无序列表并将其返回到块。这样做的正确功能/语法是什么?
此外,哪里有与渲染相关的函数的良好参考?
提前感谢您的帮助!
答案 0 :(得分:0)
请注意,“呈现查询结果的正确方法”不存在,有很多方法。它们可以呈现为列表,表格和许多其他方式。您要求的是呈现链接列表的正确方法,这些链接来自数据库是不相关的。
见http://api.drupal.org/api/drupal/includes--theme.inc/function/theme_links/7。而不是直接调用theme(),你也可以使用所谓的可渲染数组,它是Drupal 7中的一个新功能,也是现在执行此操作的首选方法。
$result = db_query("SELECT name FROM {taxonomy_term_data} WHERE vid = :val", array(':val' => '1'));
// Prepare renderable array, define which theme function shall be used.
// The other properties match the arguments of that theme function.
$list = array(
'#theme' => 'links',
'#links' => array(),
);
foreach ($result as $record) {
// Add each link to the array.
$list['#links'][] = array('title' => $record->name, 'href' => 'blog/' . $record->name));
}
// Now you can call drupal_render() and return or print that result.
// If this is inside a block or page callback, you can also directly return
// $list and Drupal will call drupal_render() automatically when the rest of
// the page is rendered.
return drupal_render($list);
答案 1 :(得分:0)
这是一种方法。构建$vars
数组并将其传递给theme_item_list($vars)
:
$vars['items'] = $list;
$vars['title'] = 'Sort entries by category';
$vars['type'] = 'ul';
$vars['attributes'] = array(
'id' => 'blog-taxonomy-block',
);
$content = theme_item_list($vars);
return $content;
http://api.drupal.org/api/drupal/includes--theme.inc/function/theme_item_list/7