You are here

function samlauth_help in SAML Authentication 8

Same name and namespace in other branches
  1. 8.3 samlauth.module \samlauth_help()
  2. 8.2 samlauth.module \samlauth_help()
  3. 4.x samlauth.module \samlauth_help()

Implements hook_help().

File

./samlauth.module, line 14
Contains samlauth.module.

Code

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

    // Main module help for the samlauth module.
    case 'help.page.samlauth':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allows users to authenticate against an external SAML identity provider.') . '</p>';
      return $output;
    default:
  }
}