You are here

function shib_auth_help in Shibboleth Authentication 8.4

Same name and namespace in other branches
  1. 8 shib_auth.module \shib_auth_help()
  2. 5.3 shib_auth.module \shib_auth_help()
  3. 5.2 shib_auth.module \shib_auth_help()
  4. 6.4 shib_auth.module \shib_auth_help()
  5. 6 shib_auth.module \shib_auth_help()
  6. 6.2 shib_auth.module \shib_auth_help()
  7. 6.3 shib_auth.module \shib_auth_help()
  8. 7.4 shib_auth.module \shib_auth_help()

Implements hook_help().

File

./shib_auth.module, line 13
Contains shib_auth.module.

Code

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

    // Main module help for the shib_auth module.
    case 'help.page.shib_auth':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Provides user authentication with Shibboleth (both v1.3 and v2.0) as well as some authorisation features (automatic role assignment based on Shibboleth attributes).') . '</p>';
      return $output;
    default:
  }
}