You are here

function pm_help in Drupal PM (Project Management) 8

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

Implements hook_help().

File

./pm.module, line 19
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;
    case 'admin/help#pm-permission':
      return '<p>' . t('PM Permission allows you to grant access to content based on interactions with Drupal PM.') . '</p>';
  }
  return $output;
}