function botcha_enable in BOTCHA Spam Prevention 6.4
Same name and namespace in other branches
- 6.3 botcha.install \botcha_enable()
- 7.3 botcha.install \botcha_enable()
File
- ./
botcha.install, line 12 - Install, update and uninstall functions for the BOTCHA module.
Code
function botcha_enable() {
// To turn on DBTNG autoload.
dbtng_boot();
// Installing here to avoid missing dependencies.
drupal_install_modules(array(
'botcha_base',
));
module_enable(array(
'botcha_base',
));
cache_clear_all();
}