You are here

autologout.api.php in Automated Logout 6.4

Same filename and directory in other branches
  1. 8 autologout.api.php
  2. 7.4 autologout.api.php

Describe hooks provided by the autologout module.

File

autologout.api.php
View source
<?php

/**
 * @file
 * Describe hooks provided by the autologout module.
 */

/**
 * Prevent autologout logging a user out.
 *
 * This allows other modules to indicate that a page should not be included
 * in the autologout checks. This works in the same way as not ticking the
 * enforce on admin pages option for autologout which stops a user being logged
 * out of admin pages.
 *
 * @return bool
 *   Return TRUE if you do not want the user to be logged out.
 *   Return FALSE (or nothing) if you want to leave the autologout
 *   process alone.
 */
function hook_autologout_prevent() {

  // Don't include autologout JS checks on ajax callbacks.
  if (in_array(arg(0), array(
    'ajax',
    'autologout_ahah_logout',
    'autologout_ahah_set_last',
  ))) {
    return TRUE;
  }
}

/**
 * Keep a login alive whilst the user is on a particular page.
 *
 * @return bool
 *   By returning TRUE from this function the JS which talks to autologout
 *   module is included in the current page request and peridoically dials
 *   back to the server to keep the login alive.
 *   Return FALSE (or nothing) to just use the standard behaviour.
 */
function hook_autologout_refresh_only() {

  // Check to see if an open admin page will keep
  // login alive.
  if (arg(0) == 'admin' && !variable_get('autologout_enforce_admin', FALSE)) {
    return TRUE;
  }
}

Functions

Namesort descending Description
hook_autologout_prevent Prevent autologout logging a user out.
hook_autologout_refresh_only Keep a login alive whilst the user is on a particular page.