function theme_submenu_tree_fulltext in Submenu Tree 5
Same name and namespace in other branches
- 6 submenutree.module \theme_submenu_tree_fulltext()
- 7.2 submenutree.theme.inc \theme_submenu_tree_fulltext()
- 7 submenutree.module \theme_submenu_tree_fulltext()
1 theme call to theme_submenu_tree_fulltext()
- _submenutree_menutree_view in ./
submenutree.module - View the menu tree, either by poking into $node->content, or via the block functions
File
- ./
submenutree.module, line 424
Code
function theme_submenu_tree_fulltext($items, $title = null, $links) {
$output = '';
if (isset($title)) {
$output .= '<h3>' . $title . '</h3>';
}
foreach ($items as $item) {
$output .= node_view($item['node'], false, false, $links);
}
return $output;
}