function captcha_theme in CAPTCHA 6
Same name and namespace in other branches
- 8 captcha.module \captcha_theme()
- 6.2 captcha.module \captcha_theme()
- 7 captcha.module \captcha_theme()
Implementation of hook_theme().
File
- ./
captcha.module, line 132 - This module enables basic CAPTCHA functionality: administrators can add a CAPTCHA to desired forms that users without the 'skip CAPTCHA' permission (typically anonymous visitors) have to solve.
Code
function captcha_theme() {
return array(
'captcha_admin_settings_captcha_points' => array(
'arguments' => array(
'form' => NULL,
),
),
);
}