You are here

function theme_submenu_tree_menu in Submenu Tree 6

Same name and namespace in other branches
  1. 5 submenutree.module \theme_submenu_tree_menu()
  2. 7.2 submenutree.theme.inc \theme_submenu_tree_menu()
  3. 7 submenutree.module \theme_submenu_tree_menu()
1 theme call to theme_submenu_tree_menu()
_submenutree_menutree_view in ./submenutree.module
View the menu tree, either by poking into $node->content, or via the block functions

File

./submenutree.module, line 516

Code

function theme_submenu_tree_menu($tree, $title = null) {
  $output = '';
  if (isset($title)) {
    $output .= '<h3>' . $title . '</h3>';
  }
  $output .= menu_tree_output($tree);
  return $output;
}