You are here

function simplesamlphp_auth_help in simpleSAMLphp Authentication 7.3

Same name and namespace in other branches
  1. 8.3 simplesamlphp_auth.module \simplesamlphp_auth_help()
  2. 6.3 simplesamlphp_auth.module \simplesamlphp_auth_help()
  3. 6.2 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 100
simpleSAMLphp authentication module for Drupal.

Code

function simplesamlphp_auth_help($path, $arg) {
  switch ($path) {
    case 'admin/config/people/simplesamlphp_auth':
      $output = '<p>' . t('This module integrates Drupal with a SimpleSAMLphp Service Point (SP), effectively federating Drupal.') . '</p>';
      return $output;
  }
}