- drupal
- drupal6
- drupal7
| Versionen | |
| drupal6 – drupal7 |
theme_menu_tree($tree) |
Generate the HTML output for a menu tree
Verwandte Themen
- 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.
Code
includes/menu.inc, line 1261
<?php
function theme_menu_tree($tree) {
return '<ul class="menu">' . $tree . '</ul>';
}
?>
Kommentare
Kommentar hinzufügen