You are here

function theme_submenu_tree_menu in Submenu Tree 5

Same name and namespace in other branches
  1. 6 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 395

Code

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