You are here

function autologout_help in Automated Logout 5

Same name and namespace in other branches
  1. 8 autologout.module \autologout_help()
  2. 6.4 autologout.module \autologout_help()
  3. 6 autologout.module \autologout_help()
  4. 6.2 autologout.module \autologout_help()
  5. 6.3 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 156
Used to automagically log out a user after a preset time, AjK May 2006

Code

function autologout_help($section) {
  switch ($section) {
    case 'admin/build/block/configure/autologout/0':
      return 'The Automated Logout block will only display if you have ' . l('Javascript Countdown Timer', 'http://drupal.org/project/countdowntimer') . ' 5.x-1.17 or later installed.';
      break;
  }
}