You are here

function hook_autologout_timeout_alter in Automated Logout 7.4

Let other modules modify the timeout value.

1 invocation of hook_autologout_timeout_alter()
_autologout_get_user_timeout in ./autologout.module
Get a user's timeout in seconds.

File

./autologout.api.php, line 58
Describe hooks provided by the autologout module.

Code

function hook_autologout_timeout_alter(&$timeout) {
  $timeout = 1800;
}