You are here

function _botcha_variables in BOTCHA Spam Prevention 7.3

Same name and namespace in other branches
  1. 6 botcha.module \_botcha_variables()
  2. 6.2 botcha.module \_botcha_variables()
  3. 6.3 botcha.module \_botcha_variables()
  4. 7 botcha.module \_botcha_variables()
  5. 7.2 botcha.module \_botcha_variables()
3 calls to _botcha_variables()
botcha_install in ./botcha.install
Implements of hook_install().
botcha_uninstall in ./botcha.install
Implements hook_uninstall().
_botcha_i18n in ./botcha.module

File

./botcha.module, line 319
BOTCHA - Spam Prevention It modifies forms by adding various botcha's.

Code

function _botcha_variables($i18n = FALSE) {
  $ret = array();
  if (!$i18n) {
    $ret += array(
      'botcha_secret',
      'botcha_loglevel',
      'botcha_form_passed_counter',
      'botcha_form_blocked_counter',
    );
  }
  return $ret;
}