You are here

function rules_test_rules_event_info in Rules 7.2

Implements hook_rules_event_info().

File

tests/rules_test.rules.inc, line 11
Includes any rules integration provided by the module.

Code

function rules_test_rules_event_info() {
  return array(
    'rules_test_event' => array(
      'label' => t('Test event'),
      'class' => 'RulesTestEventHandler',
    ),
  );
}