You are here

function bb2_install in Bad Behavior 6.2

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

Installation of Bad Behavior

1 call to bb2_install()
badbehavior_start_badbehavior in ./badbehavior.module

File

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

Code

function bb2_install() {
  if (variable_get('badbehavior_db_installed', 0) != BB2_VERSION) {
    bb2_db_query(bb2_table_structure('{bad_behavior_log}'));
    variable_set('badbehavior_db_installed', BB2_VERSION);
  }
}