function getlocations_help in Get Locations 7
Same name and namespace in other branches
- 6.2 getlocations.module \getlocations_help()
- 6 getlocations.module \getlocations_help()
- 7.2 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;
}
}