You are here

function opigno_catalog_help in Opigno training catalog 8

Same name and namespace in other branches
  1. 3.x opigno_catalog.module \opigno_catalog_help()

Implements hook_help().

File

./opigno_catalog.module, line 16
Contains opigno_catalog.module.

Code

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

    // Main module help for the opigno_catalog module.
    case 'help.page.opigno_catalog':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Add features to opigno catalogue') . '</p>';
      return $output;
    default:
      return '';
  }
}