You are here

function theme_site_map_menu_tree in Site map 6.2

Same name and namespace in other branches
  1. 8 site_map.theme.inc \theme_site_map_menu_tree()
  2. 7 includes/site_map.theme.inc \theme_site_map_menu_tree()

Generate the HTML output for a menu tree.

This is a clone of the core theme_menu_tree() function with the exception of the site_map specific class name used in the UL that also allow themers to override the function only for the site map page.

1 theme call to theme_site_map_menu_tree()
_site_map_menu_tree_output in ./site_map.module
Returns a rendered menu tree.

File

./site_map.theme.inc, line 90
Site map theme functions.

Code

function theme_site_map_menu_tree($tree) {
  return '<ul class="site-map-menu">' . $tree . '</ul>';
}