function _autoban_blocked_ips_expire_enable in Automatic IP ban (Autoban) 7
Is blocked_ips_expire module enabled?
Return value
bool The module is enabled.
4 calls to _autoban_blocked_ips_expire_enable()
- autoban_clear_tables_form in ./
autoban.admin.inc - Clear tables.
- autoban_clear_tables_form_submit in ./
autoban.admin.inc - Form submission for autoban_clear_tables_form().
- autoban_help in ./
autoban.module - Implements hook_help().
- autoban_insert_banned_table in ./
autoban.module - Insert IP to table for banned IP.
File
- ./
autoban.module, line 1065 - Main file for autoban module.
Code
function _autoban_blocked_ips_expire_enable() {
return module_exists('blocked_ips_expire');
}