function getlocations_gps_help in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_gps/getlocations_gps.module \getlocations_gps_help()
Implements hook_help().
File
- modules/
getlocations_gps/ getlocations_gps.module, line 18 - getlocations_gps.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_gps_help($path, $arg) {
switch ($path) {
case 'admin/help#getlocations_gps':
$output = '<p>' . t('Provide a gps facility on a map.') . '</p>';
return $output;
}
}