You are here

function autologout_block_info in Automated Logout 7.2

Same name and namespace in other branches
  1. 7.4 autologout.module \autologout_block_info()

Implements hook_block_info().

File

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

Code

function autologout_block_info() {
  $blocks = array();
  _autologout_debug("autologout_block_info()");
  $blocks['info'] = array(
    'info' => t('Automated Logout info'),
  );
  return $blocks;
}