function botcha_rules_action_info in BOTCHA Spam Prevention 7.3
Same name and namespace in other branches
- 6 botcha.rules.inc \botcha_rules_action_info()
- 6.2 botcha.rules.inc \botcha_rules_action_info()
- 6.3 botcha.rules.inc \botcha_rules_action_info()
- 7 botcha.rules.inc \botcha_rules_action_info()
- 7.2 botcha.rules.inc \botcha_rules_action_info()
Implements hook_rules_action_info().
File
- ./
botcha.rules.inc, line 70 - Rules integration for the BOTCHA module.
Code
function botcha_rules_action_info() {
return array(
'botcha_rules_action_regenerate_seed' => array(
'label' => t('Regenerate seed (invalidates all prepared forms that have not yet been submitted)'),
'arguments' => array(),
'group' => t('BOTCHA'),
),
);
}