You are here

function recaptcha_theme in reCAPTCHA 6.2

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 recaptcha.module \recaptcha_theme()
  5. 7.2 recaptcha.module \recaptcha_theme()
  6. 7 recaptcha.module \recaptcha_theme()

Implementation of hook_theme().

4 string references to 'recaptcha_theme'
recaptcha_admin_settings in ./recaptcha.admin.inc
Form callback; administrative settings for Google No CAPTCHA.
recaptcha_captcha in ./recaptcha.module
Implementation of hook_captcha().
recaptcha_uninstall in ./recaptcha.install
Implements hook_uninstall().
recaptcha_update_6200 in ./recaptcha.install
Update variables from 6.x-1.x.

File

./recaptcha.module, line 27

Code

function recaptcha_theme() {
  return array(
    'recaptcha_widget_noscript' => array(
      'arguments' => array(
        'widget' => NULL,
      ),
      'template' => 'recaptcha-widget-noscript',
    ),
  );
}