You are here

function botcha_form_form in BOTCHA Spam Prevention 7.2

Same name and namespace in other branches
  1. 6.2 botcha.admin.inc \botcha_form_form()

Edit existent or add BOTCHA protection to another form.

Parameters

array $form: Form API form array.

array $form_state: Form API form state array.

BotchaForm $botcha_form: Botcha form object.

1 string reference to 'botcha_form_form'
botcha_menu in ./botcha.module
Implements hook_menu().

File

./botcha.admin.inc, line 257
Implementation of botcha administration forms.

Code

function botcha_form_form($form, $form_state, $botcha_form = NULL) {
  return Botcha::getAdminForm('form_edit', $form_state, $botcha_form);
}