You are here

function opigno_tincan_ilt_help in Opigno TinCan API 8

Same name and namespace in other branches
  1. 3.x modules/opigno_tincan_ilt/opigno_tincan_ilt.module \opigno_tincan_ilt_help()

Implements hook_help().

File

modules/opigno_tincan_ilt/opigno_tincan_ilt.module, line 18
Contains opigno_tincan_ilt.module.

Code

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

    // Main module help for the opigno_tincan_ilt module.
    case 'help.page.opigno_tincan_ilt':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Functionality for sending tincan statements for opigno Instructor-Led Training (ILT).') . '</p>';
      return $output;
    default:
  }
}