You are here

function getlocations_mapquest_help in Get Locations 7

Same name and namespace in other branches
  1. 7.2 modules/getlocations_mapquest/getlocations_mapquest.module \getlocations_mapquest_help()

Implements hook_help().

File

modules/getlocations_mapquest/getlocations_mapquest.module, line 19
getlocations_mapquest.module @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Code

function getlocations_mapquest_help($path, $arg) {
  switch ($path) {
    case 'admin/help#getlocations':
      $output = '<p>' . t('Provides Mapquest Maps integration for Getlocations.') . '</p>';
      return $output;
  }
}