function pmnote_help in Drupal PM (Project Management) 7.2
Same name and namespace in other branches
- 8 pmnote/pmnote.module \pmnote_help()
- 7.3 pmnote/pmnote.module \pmnote_help()
- 7 pmnote/pmnote.module \pmnote_help()
Implements hook_help().
File
- pmnote/
pmnote.module, line 10 - Functions for the PM Note module.
Code
function pmnote_help($path, $arg) {
$o = '';
switch ($path) {
case "admin/help#pmnote":
$o = '<p>' . t("Provides note support for Project Management") . '</p>';
break;
}
return $o;
}