You are here

function site_map_help in Site map 5

Same name and namespace in other branches
  1. 6 site_map.module \site_map_help()
  2. 7 site_map.module \site_map_help()

Implementation of hook_help().

File

./site_map.module, line 12
Original author: Nic Ivy Now maintained by by Fredrik Jonsson fredrik at combonet dot se

Code

function site_map_help($section) {
  switch ($section) {
    case 'sitemap':
      $output = _sitemap_get_message();
      return $output ? '<p>' . $output . '</p>' : '';
  }
}