You are here

function getlocations_map_help in Get Locations 7.2

Same name and namespace in other branches
  1. 7 modules/getlocations_map/getlocations_map.module \getlocations_map_help()

Implements hook_help().

File

modules/getlocations_map/getlocations_map.module, line 18
getlocations_map.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_map_help($path, $arg) {
  switch ($path) {
    case 'admin/help#getlocations':
      $output = '<p>' . t('Provides a getlocations map field type.') . '</p>';
      return $output;
  }
}