theme_menu_tree($tree)
drupal/includes/menu.inc, line 1241
Generate the HTML output for a menu tree
| Name | Description |
|---|---|
| Default theme implementations | Functions and templates that present output to the user, and can be implemented by themes. |
| Menu system | Define the navigation menus, and route page requests to code based on URLs. |
function theme_menu_tree($tree) {
return '<ul class="menu">' . $tree . '</ul>';
}