You are here

function badbehavior_start_badbehavior in Bad Behavior 7.2

Same name and namespace in other branches
  1. 6.2 badbehavior.module \badbehavior_start_badbehavior()
  2. 6 badbehavior.module \badbehavior_start_badbehavior()
2 calls to badbehavior_start_badbehavior()
badbehavior_boot in ./badbehavior.module
Implements hook_boot().
badbehavior_init in ./badbehavior.module
Implements hook_init().

File

./badbehavior.module, line 91
Integrates Bad Behavior with Drupal

Code

function badbehavior_start_badbehavior() {
  if (function_exists('user_access') && user_access('bypass bad behavior protection')) {
    return;
  }
  elseif (badbehavior_load_includes()) {
    bb2_install();
    bb2_start(bb2_read_settings());
  }
}