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