function pmticket_help in Drupal PM (Project Management) 7
Same name and namespace in other branches
- 8 pmticket/pmticket.module \pmticket_help()
- 7.3 pmticket/pmticket.module \pmticket_help()
- 7.2 pmticket/pmticket.module \pmticket_help()
Implements hook_help().
File
- pmticket/
pmticket.module, line 12 - 1: Hooks 2: Access functions
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;
}