function autologout_block in Automated Logout 6.4
Same name and namespace in other branches
- 5 autologout.module \autologout_block()
- 6 autologout.module \autologout_block()
- 6.2 autologout.module \autologout_block()
- 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);
}
}