You are here

function opigno_class_help in Opigno class 8

Same name and namespace in other branches
  1. 3.x opigno_class.module \opigno_class_help()

Implements hook_help().

File

./opigno_class.module, line 23
Contains opigno_class.module.

Code

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

    // Main module help for the opigno_class module.
    case 'help.page.opigno_class':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Adds the classes to your Opigno instance. Works well with Opigno Learning Path.') . '</p>';
      return $output;
    default:
      return '';
  }
}