You are here

function pm_help in Drupal PM (Project Management) 7.2

Same name and namespace in other branches
  1. 8 pm.module \pm_help()
  2. 7.3 pm.module \pm_help()
  3. 7 pm.module \pm_help()
  4. 4.x pm.module \pm_help()

Implements hook_help().

File

./pm.module, line 15
Main module file for the Project Management module.

Code

function pm_help($path, $arg) {
  $output = '';
  switch ($path) {
    case "admin/help#pm":
      $output = '<p>' . t("Provides a complete project management environment") . '</p>';
      break;
  }
  return $output;
}