function bb2_install in Bad Behavior 7.2
Same name and namespace in other branches
- 5.2 badbehavior.module \bb2_install()
- 6.2 badbehavior.module \bb2_install()
- 6 badbehavior.module \bb2_install()
Installation of Bad Behavior
1 call to bb2_install()
File
- ./
badbehavior.module, line 217 - 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);
}
}