You are here

function getdirections_fields_help in Get Directions 7.3

Implements hook_help().

File

modules/getdirections_fields/getdirections_fields.module, line 13
Provides Field module integration for Getdirections

Code

function getdirections_fields_help($path, $arg) {
  switch ($path) {
    case 'admin/help#getdirections':
      $output = '<p>' . t('Provides a getdirections field type.') . '</p>';
      return $output;
  }
}