function site_map_content in Site map 7
The content of the site map page.
2 calls to site_map_content()
- site_map_block_view in ./
site_map.module - Implements hook_block_view().
- site_map_page in ./
site_map.module - Menu callback for the site map.
File
- ./
site_map.module, line 210 - site_map.module
Code
function site_map_content() {
if (variable_get('site_map_css', 0) != 1) {
drupal_add_css(drupal_get_path('module', 'site_map') . '/styles/site_map.theme.css');
}
return theme('site_map');
}