You are here

function recaptcha_theme in reCAPTCHA 7

Same name and namespace in other branches
  1. 8.3 recaptcha.module \recaptcha_theme()
  2. 8 recaptcha.module \recaptcha_theme()
  3. 8.2 recaptcha.module \recaptcha_theme()
  4. 6.2 recaptcha.module \recaptcha_theme()
  5. 6 recaptcha.module \recaptcha_theme()
  6. 7.2 recaptcha.module \recaptcha_theme()

Implements hook_theme().

2 string references to 'recaptcha_theme'
recaptcha_admin_settings in ./recaptcha.admin.inc
Form callback; administrative settings for reCaptcha.
recaptcha_captcha in ./recaptcha.module
Implements hook_captcha().

File

./recaptcha.module, line 244
Uses the reCAPTCHA web service to improve the CAPTCHA system.

Code

function recaptcha_theme() {
  return array(
    'recaptcha_custom_widget' => array(
      'arguments' => array(),
    ),
  );
}