function antibot_theme in Antibot 7
Same name and namespace in other branches
- 8 antibot.module \antibot_theme()
Implements hook_theme().
File
- ./
antibot.module, line 34 - Attempt to prevent robotic form submissions and spam.
Code
function antibot_theme() {
$theme = array();
$theme['antibot_no_js'] = array(
'variables' => array(
'message' => NULL,
),
'template' => 'templates/antibot-no-js',
);
return $theme;
}