function cas_help in CAS 7
Same name and namespace in other branches
- 8 cas.module \cas_help()
- 5.4 cas.module \cas_help()
- 5 cas.module \cas_help()
- 5.3 cas.module \cas_help()
- 6.3 cas.module \cas_help()
- 6 cas.module \cas_help()
- 6.2 cas.module \cas_help()
- 2.x cas.module \cas_help()
Implements hook_help().
File
- ./
cas.module, line 343 - 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_help($section) {
switch ($section) {
case 'admin/help#cas':
return t("Allows users to authenticate via a Central Authentication Service.");
}
}