You are here

function externalauth_help in External Authentication 2.0.x

Same name and namespace in other branches
  1. 8 externalauth.module \externalauth_help()

Implements hook_help().

File

./externalauth.module, line 13
Contains externalauth.module.

Code

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

    // Main module help for the authmap module.
    case 'help.page.externalauth':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Authenticates users using an external site / service and stores identification details.') . '</p>';
      return $output;
    default:
  }
}