Definition

theme_menu_tree($tree)
drupal/includes/menu.inc, line 1241

Description

Generate the HTML output for a menu tree

Related topics

Namesort iconDescription
Default theme implementationsFunctions and templates that present output to the user, and can be implemented by themes.
Menu systemDefine the navigation menus, and route page requests to code based on URLs.

Code

function theme_menu_tree($tree) {
  return '<ul class="menu">' . $tree . '</ul>';
}