function samlauth_help in SAML Authentication 8.2
Same name and namespace in other branches
- 8.3 samlauth.module \samlauth_help()
- 8 samlauth.module \samlauth_help()
- 4.x samlauth.module \samlauth_help()
Implements hook_help().
File
- ./
samlauth.module, line 15 - 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:
}
}