You are here

function workflow_rules_rules_event_info in Workflow 7.2

Same name and namespace in other branches
  1. 6.2 workflow_rules/workflow_rules.module \workflow_rules_rules_event_info()
  2. 6 workflow_rules/workflow_rules.module \workflow_rules_rules_event_info()
  3. 7 workflow_rules/workflow_rules.rules.inc \workflow_rules_rules_event_info()

Implements hook_rules_event_info().

@todo: add support for any entity type in hook_rules_event_info.

File

workflow_rules/workflow_rules.rules.inc, line 24
Rules integration for the Workflow module.

Code

function workflow_rules_rules_event_info() {
  $events = array();
  if (module_exists('workflownode')) {
    $events += _workflownode_rules_event_info();
  }
  return $events;
}