You are here

function ip_geoloc_generator_help in IP Geolocation Views & Maps 7

Same name and namespace in other branches
  1. 8 modules/ip_geoloc_generator/src/Form/ip_geoloc_generator.module \ip_geoloc_generator_help()

Implements hook-help().

File

ip_geoloc_generator/ip_geoloc_generator.module, line 13
ip_geoloc_generator.module

Code

function ip_geoloc_generator_help($path, $arg) {
  if ($path == 'admin/help#ip_geoloc_generator') {
    return t('Instructions can be found in the <a href="@README">README</a> file.', array(
      '@README' => url(drupal_get_path('module', 'ip_geoloc_generator') . '/README.txt'),
    ));
  }
}