function site_map_page in Site map 5
Same name and namespace in other branches
- 6.2 site_map.module \site_map_page()
- 6 site_map.module \site_map_page()
- 7 site_map.module \site_map_page()
Menu callback for the site map.
1 string reference to 'site_map_page'
- site_map_menu in ./
site_map.module - Implementation of hook_menu().
File
- ./
site_map.module, line 234 - Original author: Nic Ivy Now maintained by by Fredrik Jonsson fredrik at combonet dot se
Code
function site_map_page() {
// Set breadcrumbs
$breadcrumb = array(
array(
'path' => 'sitemap',
),
);
menu_set_location($breadcrumb);
return theme('site_map_display');
}