You are here

function pmticket_help in Drupal PM (Project Management) 8

Same name and namespace in other branches
  1. 7.3 pmticket/pmticket.module \pmticket_help()
  2. 7 pmticket/pmticket.module \pmticket_help()
  3. 7.2 pmticket/pmticket.module \pmticket_help()

Implements hook_help().

File

pmticket/pmticket.module, line 10
Main module file for the PM Ticket module.

Code

function pmticket_help($path, $arg) {
  $o = '';
  switch ($path) {
    case "admin/help#pmticket":
      $o = '<p>' . t("Provides ticket support for Project Management") . '</p>';
      break;
  }
  return $o;
}