You are here

function rb_batch_rules_plugin_info in Rules Bonus Pack 7

Implements hook_rules_rules_plugin_info().

Declares neccessary meta-data about the this plugin.

File

rb_batch/rb_batch.rules.inc, line 16
Provides a batched rule set component to rules.

Code

function rb_batch_rules_plugin_info() {
  return array(
    'batched rule set' => array(
      'label' => t('Batched rule set'),
      'module' => 'rb_batch',
      'class' => 'BatchedRuleSet',
      'component' => TRUE,
      'embeddable' => FALSE,
      'extenders' => array(
        'RulesPluginUIInterface' => array(
          'class' => 'BatchedRuleSetUI',
        ),
      ),
    ),
  );
}