You are here

function _autologout_debug in Automated Logout 6

Same name and namespace in other branches
  1. 5 autologout.module \_autologout_debug()
  2. 6.2 autologout.module \_autologout_debug()
  3. 7.2 autologout.module \_autologout_debug()
6 calls to _autologout_debug()
autologout_block in ./autologout.module
Implementation of hook_block().
autologout_boot in ./autologout.module
Implementation of hook_boot().
autologout_nodeapi in ./autologout.module
Implementation of hook_nodeapi().
autologout_perm in ./autologout.module
Implementation of hook_perm().
autologout_user in ./autologout.module
Implementation of hook_user().

... See full list

File

./autologout.module, line 583
Used to automagically log out a user after a preset time, AjK May 2006

Code

function _autologout_debug($s) {
  if (defined("AUTOLOGOUT_DEBUG") && AUTOLOGOUT_DEBUG) {
    error_log($s);
  }
}