You are here

function simplesamlphp_auth_help in simpleSAMLphp Authentication 8.3

Same name and namespace in other branches
  1. 6.3 simplesamlphp_auth.module \simplesamlphp_auth_help()
  2. 6.2 simplesamlphp_auth.module \simplesamlphp_auth_help()
  3. 7.3 simplesamlphp_auth.module \simplesamlphp_auth_help()
  4. 7 simplesamlphp_auth.module \simplesamlphp_auth_help()
  5. 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;
  }
}