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