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