function getlocations_tools_help in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_tools/getlocations_tools.module \getlocations_tools_help()
Implements hook_help().
File
- modules/
getlocations_tools/ getlocations_tools.module, line 16 - getlocations_tools.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_tools_help($path, $arg) {
switch ($path) {
case 'admin/help#getlocations_tools':
$output = '<p>' . t('Provides import and export utilities.') . '</p>';
return $output;
}
}