You are here

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

Implements hook_help().

File

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

Code

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

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