You are here

function bb2_read_settings in Bad Behavior 5.2

Same name and namespace in other branches
  1. 6.2 badbehavior.module \bb2_read_settings()
  2. 6 badbehavior.module \bb2_read_settings()
  3. 7.2 badbehavior.module \bb2_read_settings()
1 call to bb2_read_settings()
badbehavior_init in ./badbehavior.module

File

./badbehavior.module, line 222

Code

function bb2_read_settings() {
  return array(
    'log_table' => db_prefix_tables('{bad_behavior_log}'),
    'strict' => variable_get('badbehavior_strict_checking_enable', 0),
    'verbose' => variable_get('badbehavior_verbose_logging_enable', 0),
  );
}