You are here

function opigno_learning_path_help in Opigno Learning path 3.x

Same name and namespace in other branches
  1. 8 opigno_learning_path.module \opigno_learning_path_help()

Implements hook_help().

File

./opigno_learning_path.module, line 1094
Contains opigno_learning_path.module.

Code

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

    // Main module help for the opigno_learning_path module.
    case 'help.page.opigno_learning_path':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Add the Learning Path feature to the opigno instance') . '</p>';
      return $output;
    default:
      return '';
  }
}