function getlocations_location_taxonomize_help in Get Locations 7
Same name and namespace in other branches
- 7.2 modules/getlocations_location_taxonomize/getlocations_location_taxonomize.module \getlocations_location_taxonomize_help()
Implements hook_help().
File
- modules/
getlocations_location_taxonomize/ getlocations_location_taxonomize.module, line 24 - getlocations_location_taxonomize.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL
Code
function getlocations_location_taxonomize_help($path, $arg) {
switch ($path) {
case 'admin/help#getlocations_location_taxonomize':
$output = '<p>' . t('Provides getlocations_fields as a data source to the location_taxonomize module.') . '</p>';
return $output;
}
}