theme_menu_tree
includes/menu.inc, line 646
- Versions
- 4.6 – 5
theme_menu_tree($pid= 1)- 6 – 7
theme_menu_tree($tree)
Generate the HTML for a menu tree.
Parameters
$pid The parent id of the menu.
Related topics
Code
<?php
function theme_menu_tree($pid = 1) {
if ($tree = menu_tree($pid)) {
return "\n<ul class=\"menu\">\n". $tree ."\n</ul>\n";
}
}
?> 