You are here

function botcha_theme in BOTCHA Spam Prevention 6.3

Same name and namespace in other branches
  1. 6 botcha.module \botcha_theme()
  2. 6.2 botcha.module \botcha_theme()
  3. 7 botcha.module \botcha_theme()
  4. 7.2 botcha.module \botcha_theme()
  5. 7.3 botcha.module \botcha_theme()

Implementation of hook_theme(). @todo Move to an Application.

File

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

Code

function botcha_theme() {
  return array(
    'botcha_forms_form_botcha_forms' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
    'botcha_recipebooks_form' => array(
      'arguments' => array(
        'form' => NULL,
      ),
    ),
  );
}