function simplesamlphp_auth_help in simpleSAMLphp Authentication 7.2
Same name and namespace in other branches
- 8.3 simplesamlphp_auth.module \simplesamlphp_auth_help()
- 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()
Implements hook_help().
File
- ./
simplesamlphp_auth.module, line 61 - simpleSAMLphp authentication module for Drupal.
Code
function simplesamlphp_auth_help($path, $arg) {
switch ($path) {
case 'admin/config/people/simplesamlphp_auth':
$output = t('<p>This module integrates Drupal with a SimpleSAMLphp Service Point (SP), effectively federating Drupal.</p>');
$output .= t('<p></p>');
return $output;
}
}