function cas_permission in CAS 7
Implements hook_permission().
File
- ./
cas.module, line 330 - Enables users to authenticate via a Central Authentication Service (CAS) Cas will currently work if the auto registration is turned on and will create user accounts automatically.
Code
function cas_permission() {
return array(
'administer cas' => array(
'title' => t('Administer CAS'),
'description' => t('Configure CAS server, default CAS user roles, login/logout redirection, and other settings.'),
'restrict access' => TRUE,
),
);
}