function simplesamlphp_auth_help in simpleSAMLphp Authentication 8.3
Same name and namespace in other branches
- 6.3 simplesamlphp_auth.module \simplesamlphp_auth_help()
- 6.2 simplesamlphp_auth.module \simplesamlphp_auth_help()
- 7.3 simplesamlphp_auth.module \simplesamlphp_auth_help()
- 7 simplesamlphp_auth.module \simplesamlphp_auth_help()
- 7.2 simplesamlphp_auth.module \simplesamlphp_auth_help()
Implements hook_help().
File
- ./
simplesamlphp_auth.module, line 40 - SimpleSAMLphp authentication module for Drupal.
Code
function simplesamlphp_auth_help($route_name) {
switch ($route_name) {
case 'simplesamlphp_auth.admin_settings':
case 'help.page.simplesamlphp_auth':
$output = t('<p>This module integrates Drupal with a SimpleSAMLphp Service Point (SP), effectively federating Drupal.</p>');
return $output;
}
}