function autologout_perm in Automated Logout 6.4
Same name and namespace in other branches
- 5 autologout.module \autologout_perm()
- 6 autologout.module \autologout_perm()
- 6.2 autologout.module \autologout_perm()
Implements hook_perm().
File
- ./
autologout.module, line 16 - Used to automagically log out a user after a preset time.
Code
function autologout_perm() {
return array(
'change own logout threshold',
'administer autologout',
);
}