You are here

function autologout_theme in Automated Logout 6.4

Same name and namespace in other branches
  1. 6.3 autologout.module \autologout_theme()
  2. 7.4 autologout.module \autologout_theme()

Implements hook_theme().

File

./autologout.module, line 189
Used to automagically log out a user after a preset time.

Code

function autologout_theme() {
  return array(
    'autologout_render_table' => array(
      'render element' => 'element',
    ),
    'autologout_block' => array(
      'arguments' => array(
        'variables' => array(),
      ),
    ),
  );
}