You are here

function casetracker_help in Case Tracker 6

Same name and namespace in other branches
  1. 5 casetracker.module \casetracker_help()
  2. 7 casetracker.module \casetracker_help()

Implementation of hook_help().

File

./casetracker.module, line 18
Enables the handling of projects and their cases.

Code

function casetracker_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/casetracker/states':
      return '<p>' . t('Current Case Tracker case states are listed below.') . '</p>';
    case 'admin/settings/casetracker/states/add':
      return '<p>' . t('You may add a new case state below.') . '</p>';
    case 'admin/settings/casetracker/states/edit/' . arg(4):
      return '<p>' . t('You may edit an existing case state below.') . '</p>';
    case 'admin/settings/casetracker':
      return '<p>' . t('Configure the various Case Tracker options with these settings.') . '</p>';
  }
}