You are here

function workflow_rules_rules_action_info in Workflow 7.2

Same name and namespace in other branches
  1. 7 workflow_rules/workflow_rules.rules.inc \workflow_rules_rules_action_info()

Implements hook_rules_action_info().

File

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

Code

function workflow_rules_rules_action_info() {
  $actions = array();
  if (module_exists('workflownode')) {
    $actions += _workflownode_rules_action_info();
  }
  if (module_exists('workflowfield')) {
    $actions += _workflowfield_rules_action_info();
  }
  return $actions;
}