You are here

function ldap_sso_help in LDAP Single Sign On 8.4

Same name and namespace in other branches
  1. 8 ldap_sso.module \ldap_sso_help()

Implements hook_help().

File

./ldap_sso.module, line 40

Code

function ldap_sso_help($route_name, RouteMatchInterface $route_match) {
  if ($route_name === 'help.page.ldap_sso') {
    $output = '';
    $output .= '<h3>' . t('About') . '</h3>';
    $output .= '<p>' . t('The LDAP SSO module provides integration for environments which provide an authenticated user through server headers.') . '</p>';
    return $output;
  }
}