You are here

function pm_organization_help in Drupal PM (Project Management) 4.x

Implements hook_help().

File

modules/pm_organization/pm_organization.module, line 13
Contains pm_organization.module.

Code

function pm_organization_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the pm_organization module.
    case 'help.page.pm_organization':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('PM Organization') . '</p>';
      return $output;
    default:
  }
}