function autologout_help in Automated Logout 6.4
Same name and namespace in other branches
- 8 autologout.module \autologout_help()
- 5 autologout.module \autologout_help()
- 6 autologout.module \autologout_help()
- 6.2 autologout.module \autologout_help()
- 6.3 autologout.module \autologout_help()
- 7.2 autologout.module \autologout_help()
- 7.4 autologout.module \autologout_help()
Implements hook_help().
File
- ./
autologout.module, line 178 - Used to automagically log out a user after a preset time.
Code
function autologout_help($path, $arg) {
$output = _autologout_get_user_timeout();
if ($path == 'admin/help#autologout') {
return '<p>' . t('This module allows you to force site users to be logged out after a given amount of time due to inactivity after first being presented with a confirmation dialog. Your current logout threshold is ' . $output . " seconds.") . '</p>';
}
}