You are here

function autologout_help in Automated Logout 6.3

Same name and namespace in other branches
  1. 8 autologout.module \autologout_help()
  2. 5 autologout.module \autologout_help()
  3. 6.4 autologout.module \autologout_help()
  4. 6 autologout.module \autologout_help()
  5. 6.2 autologout.module \autologout_help()
  6. 7.2 autologout.module \autologout_help()
  7. 7.4 autologout.module \autologout_help()

Implementation of hook_help().

File

./autologout.module, line 11
Used to automagically log out a user after a certain time.

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="@usersettings">User settings administration</a>.', array(
        '@usersettings' => url('admin/user/settings'),
      )) . '</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/build/block'),
        '@jstimer' => 'http://drupal.org/project/jstimer',
      )) . '</p>';
      return $output;
      break;
  }
}