function _autologout_debug in Automated Logout 5
Same name and namespace in other branches
- 6 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_footer in ./
autologout.module - Implementation of hook_footer()
- 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 542 - 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);
}
}