You are here

function badbehavior_init in Bad Behavior 5.2

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

File

./badbehavior.module, line 243

Code

function badbehavior_init() {
  if (file_exists(BB2_CWD . '/bad-behavior/core.inc.php') && file_exists(BB2_CWD . '/bad-behavior/version.inc.php')) {
    require_once BB2_CWD . '/bad-behavior/version.inc.php';
    require_once BB2_CWD . '/bad-behavior/core.inc.php';
    bb2_install();
    bb2_start(bb2_read_settings());
  }
}