You are here

function opigno_tincan_modules_help in Opigno TinCan API 3.x

Same name and namespace in other branches
  1. 8 modules/opigno_tincan_modules/opigno_tincan_modules.module \opigno_tincan_modules_help()

Implements hook_help().

File

modules/opigno_tincan_modules/opigno_tincan_modules.module, line 20
Contains opigno_tincan_modules.module.

Code

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

    // Main module help for the opigno_tincan_modules module.
    case 'help.page.opigno_tincan_modules':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Functionality for sending tincan statements for opigno modules.') . '</p>';
      return $output;
    default:
  }
}