function ldap_sso_help in LDAP Single Sign On 8
Same name and namespace in other branches
- 8.4 ldap_sso.module \ldap_sso_help()
Implements hook_help().
File
- ./
ldap_sso.module, line 37 - This module injects itself into Drupal's Authentication stack.
Code
function ldap_sso_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case '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;
}
}