function cas_admin_paths in CAS 7
Implements hook_admin_paths().
File
- ./
cas.module, line 535 - 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_admin_paths() {
$paths = array(
'user/*/cas' => TRUE,
'user/*/cas/delete/*' => TRUE,
);
return $paths;
}