You are here

function rules_test_rules_plugin_info in Rules 7.2

Implements hook_rules_plugin_info().

File

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

Code

function rules_test_rules_plugin_info() {
  return array(
    'rules test container' => array(
      'label' => t('Test container'),
      'class' => 'RulesTestContainer',
      'embeddable' => 'RulesActionContainer',
    ),
  );
}