You are here

function site_map_help in Site map 6

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

Implements 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($path, $arg) {
  switch ($path) {
    case 'sitemap':
      $output = _sitemap_get_message();
      return $output ? '<p>' . $output . '</p>' : '';
  }
}