You are here

function getlocations_help in Get Locations 6.2

Same name and namespace in other branches
  1. 6 getlocations.module \getlocations_help()
  2. 7.2 getlocations.module \getlocations_help()
  3. 7 getlocations.module \getlocations_help()

Implementation of hook_help().

File

./getlocations.module, line 15
Displays locations on a map. for Drupal 6 using version 3 googlemaps API

Code

function getlocations_help($path, $arg) {
  switch ($path) {
    case 'admin/help#getlocations':
      $output = '<p>' . t('Displays locations on a map.') . '</p>';
      return $output;
  }
}