You are here

function rules_test_rules_data_info in Rules 7.2

Implements hook_rules_data_info().

File

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

Code

function rules_test_rules_data_info() {
  return array(
    'rules_test_type' => array(
      'label' => t('test type'),
      'wrap' => TRUE,
      'wrapper class' => 'RulesTestTypeWrapper',
    ),
  );
}