function autologout_info in Automated Logout 6.2
Same name and namespace in other branches
- 5 autologout.module \autologout_info()
- 6 autologout.module \autologout_info()
Implementation of hook_info().
File
- ./
autologout.module, line 26 - Used to automagically log out a user after a preset time, AjK May 2006
Code
function autologout_info() {
return array(
'autologout' => array(
'name' => t('Automated logout'),
'module' => 'autologout',
'description' => t('Manage the automated logout features'),
),
);
}