You are here

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

Implements hook_help().

File

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

Code

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

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