You are here

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

Implements hook_help().

File

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

Code

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

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