You are here

function pmnote_help in Drupal PM (Project Management) 7

Same name and namespace in other branches
  1. 8 pmnote/pmnote.module \pmnote_help()
  2. 7.3 pmnote/pmnote.module \pmnote_help()
  3. 7.2 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;
}