You are here

function honeypot_trigger_info in Honeypot 7

Implements hook_trigger_info().

File

./honeypot.module, line 104
Honeypot module, for deterring spam bots from completing Drupal forms.

Code

function honeypot_trigger_info() {
  return array(
    'honeypot' => array(
      'honeypot_reject' => array(
        'label' => t('Honeypot rejection'),
      ),
    ),
  );
}