You are here

function autologout_info in Automated Logout 5

Same name and namespace in other branches
  1. 6 autologout.module \autologout_info()
  2. 6.2 autologout.module \autologout_info()

Implementation of hook_info()

File

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

Code

function autologout_info() {
  return array(
    'autologout' => array(
      'name' => t('automated logout'),
      'module' => 'autologout',
      'description' => t('Manage the automated logout features'),
    ),
  );
}