function locationmap_help in Location Map 8.2
Same name and namespace in other branches
- 7.2 locationmap.module \locationmap_help()
- 7 locationmap.module \locationmap_help()
Implements hook_help().
File
- ./
locationmap.module, line 6
Code
function locationmap_help($path, $arg) {
switch ($path) {
case 'admin/help#locationmap':
$output = '<p>' . t('The Location Map module displays a map of your geographic location with Google Maps.') . ' ' . l(t('The page for the map'), 'locationmap') . ' ' . t('is automatically generated.') . ' ' . t('A block is also created that displays a thumbnail of the map, linking to the map page.') . ' ' . t('This can be assigned to a page region on the') . ' ' . l(t('block administration page'), 'admin/structure/block') . '.</p>';
return $output;
}
}