function _math_captcha_enabled_challenges in CAPTCHA Pack 6
Same name and namespace in other branches
- 8 math_captcha/math_captcha.module \_math_captcha_enabled_challenges()
- 5 math_captcha/math_captcha.module \_math_captcha_enabled_challenges()
- 7 math_captcha/math_captcha.module \_math_captcha_enabled_challenges()
Function for getting the enabled challenges (e.g. for use as checkboxes default_value)
2 calls to _math_captcha_enabled_challenges()
- math_captcha_captcha in math_captcha/
math_captcha.module - Implementation of hook_captcha().
- math_captcha_settings_form in math_captcha/
math_captcha.admin.inc - Math CAPTCHA settings form
File
- math_captcha/
math_captcha.module, line 26
Code
function _math_captcha_enabled_challenges() {
$enabled = variable_get('math_captcha_enabled_challenges', array(
'addition' => 'addition',
'subtraction' => 'subtraction',
'multiplication' => 'multiplication',
));
return $enabled;
}