function theme_menu_tree
Same name and namespace in other branches
- 7.x drupal-7.x/includes/menu.inc \theme_menu_tree()
Generate the HTML output for a menu tree
Related topics
1 theme call to theme_menu_tree()
- menu_tree_output in drupal-6.x/
includes/ menu.inc - Returns a rendered menu tree.
Archivo
- drupal-6.x/
includes/ menu.inc, line 1142 - API for the Drupal menu system.
Código
function theme_menu_tree($tree) {
return '<ul class="menu">' . $tree . '</ul>';
}