function boost_captcha_init in Boost Captcha 7
Same name and namespace in other branches
- 6 boost_captcha.module \boost_captcha_init()
Implements hook_init().
File
- ./
boost_captcha.module, line 10
Code
function boost_captcha_init() {
drupal_add_js(drupal_get_path('module', 'boost_captcha') . '/boost_captcha.js', 'module');
if (module_exists('recaptcha')) {
$settings = array(
'recaptcha_public_key' => variable_get('recaptcha_public_key', ''),
);
drupal_add_js(array(
'boost_captcha' => $settings,
), 'setting');
}
}