function pmticket_help in Drupal PM (Project Management) 8
Same name and namespace in other branches
- 7.3 pmticket/pmticket.module \pmticket_help()
- 7 pmticket/pmticket.module \pmticket_help()
- 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;
}