function autologout_help in Automated Logout 7.2
Same name and namespace in other branches
- 8 autologout.module \autologout_help()
- 5 autologout.module \autologout_help()
- 6.4 autologout.module \autologout_help()
- 6 autologout.module \autologout_help()
- 6.2 autologout.module \autologout_help()
- 6.3 autologout.module \autologout_help()
- 7.4 autologout.module \autologout_help()
Implements hook_help().
File
- ./
autologout.module, line 147 - Used to automagically log out a user after a preset time, AjK May 2006
Code
function autologout_help($path, $arg) {
switch ($path) {
case 'admin/help#autologout':
$output = '<p>' . t('The <em>Automated Logout</em> module allows you to force users to log out after a given amount of time. You can configure this in the <a href="@alo_settings">Automated logout settings</a> page.', array(
'@alo_settings' => url('admin/config/people/autologout'),
)) . '</p>';
$output .= '<p>' . t('If you have the <a href="@jstimer">Javascript timer module</a> enabled, the <a href="@automatedlogoutblock">Automated Logout block</a> will have a live countdown timer.', array(
'@automatedlogoutblock' => url('admin/structure/block'),
'@jstimer' => 'http://drupal.org/project/jstimer',
)) . '</p>';
return $output;
}
}