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