function autologout_block_info in Automated Logout 7.4
Same name and namespace in other branches
- 7.2 autologout.module \autologout_block_info()
Implements hook_block_info().
File
- ./
autologout.module, line 71 - Used to automagically log out a user after a preset time.
Code
function autologout_block_info() {
$blocks = array();
$blocks['info'] = array(
'info' => t('Automated Logout info'),
);
return $blocks;
}