function getlocations_map_help in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_map/getlocations_map.module \getlocations_map_help()
Implements hook_help().
File
- modules/
getlocations_map/ getlocations_map.module, line 19 - 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;
}
}