function theme_navbar_menu_tree in Navbar 7
Returns HTML for a wrapper for a navbar menu sub-tree.
Parameters
$variables: An associative array containing:
- tree: An HTML string containing the tree's items.
See also
template_preprocess_navbar_menu_tree()
1 string reference to 'theme_navbar_menu_tree'
- navbar_theme in ./
navbar.module - Implements hook_theme().
File
- ./
navbar.module, line 433 - Administration navbar for quick access to top level administration items.
Code
function theme_navbar_menu_tree($variables) {
return '<ul class="navbar-menu">' . $variables['tree'] . '</ul>';
}