You are here

function shib_auth_permission in Shibboleth Authentication 7.4

Implements hook_permission().

File

./shib_auth.module, line 971
Drupal Shibboleth authentication module.

Code

function shib_auth_permission() {
  return array(
    'administer shibboleth authentication' => array(
      'title' => t('Admin the shibboleth authentication'),
      'description' => t('Admin the shibboleth authentication module settings page.'),
    ),
  );
}