You are here

function simplesamlphp_auth_permission in simpleSAMLphp Authentication 7

Same name and namespace in other branches
  1. 7.3 simplesamlphp_auth.module \simplesamlphp_auth_permission()
  2. 7.2 simplesamlphp_auth.module \simplesamlphp_auth_permission()

Implements hook_permission().

File

./simplesamlphp_auth.module, line 78
simpleSAMLphp authentication module for Drupal.

Code

function simplesamlphp_auth_permission() {
  return array(
    'administer simpleSAMLphp authentication' => array(
      'title' => t('Administer simpleSAMLphp authentication'),
      'description' => t('Warning: Give to trusted roles only; this permission has security implications.'),
    ),
  );
}