You are here

function getlocations_help in Get Locations 7.2

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

Implements hook_help().

File

./getlocations.module, line 21
getlocations.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

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