function simplesamlphp_custom_attributes_help in SimpleSAMLphp Custom Attribute Mapping 8
Implements hook_help().
File
- ./
simplesamlphp_custom_attributes.module, line 13 - SimpleSAMLphp Custom Attribute Mapping module.
Code
function simplesamlphp_custom_attributes_help($route_name) {
switch ($route_name) {
case 'simplesamlphp_custom_attributes.list':
case 'help.page.simplesamlphp_custom_attributes':
return t('<p>This module saves SimpleSAMLphp attributes to Drupal user fields.</p>');
}
}