You are here

function locationmap_help in Location Map 7.2

Same name and namespace in other branches
  1. 8.2 locationmap.module \locationmap_help()
  2. 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. The !map_page for the map is automatically generated. A block is also created that displays a thumbnail of the map, linking to the map page. This can be assigned to a page region on the !block_admin_page', array(
        '!map_page' => l(t('map page'), 'locationmap'),
        '!block_admin_page' => l(t('block administration page'), 'admin/structure/block'),
      )) . '.</p>';
      return $output;
  }
}