You are here

function getdirections_help in Get Directions 7.3

Same name and namespace in other branches
  1. 6.2 getdirections.module \getdirections_help()
  2. 6 getdirections.module \getdirections_help()
  3. 7.2 getdirections.module \getdirections_help()

Implements hook_help().

File

./getdirections.module, line 13
Fetches google map directions.

Code

function getdirections_help($path, $arg) {
  switch ($path) {
    case 'admin/help#getdirections':
      $output = '<p>' . t('Fetches google map directions.') . '</p>';
      return $output;
  }
}