You are here

function botcha_rules_action_info in BOTCHA Spam Prevention 6.2

Same name and namespace in other branches
  1. 6 botcha.rules.inc \botcha_rules_action_info()
  2. 6.3 botcha.rules.inc \botcha_rules_action_info()
  3. 7 botcha.rules.inc \botcha_rules_action_info()
  4. 7.2 botcha.rules.inc \botcha_rules_action_info()
  5. 7.3 botcha.rules.inc \botcha_rules_action_info()

Implementation of hook_rules_action_info().

File

./botcha.rules.inc, line 69
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'),
    ),
  );
}