You are here

function autologout_block in Automated Logout 6.4

Same name and namespace in other branches
  1. 5 autologout.module \autologout_block()
  2. 6 autologout.module \autologout_block()
  3. 6.2 autologout.module \autologout_block()
  4. 6.3 autologout.module \autologout_block()

Implements hook_block_info().

File

./autologout.module, line 66
Used to automagically log out a user after a preset time.

Code

function autologout_block($op = 'list', $delta = 0, $edit = array()) {
  $function = "_autologout_block_{$op}";
  if (function_exists($function)) {
    return $function($delta, $edit);
  }
}