theme_menu_tree($pid = 1)theme_menu_tree($tree)theme_menu_tree($variables)Generate the HTML for a menu tree.
$pid The parent id of the menu.
drupal/includes/menu.inc, line 646
<?php
function theme_menu_tree($pid = 1) {
if ($tree = menu_tree($pid)) {
return "\n<ul class=\"menu\">\n". $tree ."\n</ul>\n";
}
}
?>