function pm_help in Drupal PM (Project Management) 7.3
Same name and namespace in other branches
- 8 pm.module \pm_help()
 - 7 pm.module \pm_help()
 - 7.2 pm.module \pm_help()
 - 4.x pm.module \pm_help()
 
Implements hook_help().
File
- ./
pm.module, line 24  - 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;
}