You are here

function workflow_rules_rules_action_info in Workflow 7

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

Implements hook_rules_action_info().

File

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

Code

function workflow_rules_rules_action_info() {
  $actions = array();
  if (TRUE || module_exists('workflownode')) {
    $actions += _workflow_rules_rules_node_action_info();
  }
  if (module_exists('workflowfield')) {
    $actions += _workflow_rules_rules_field_action_info();
  }
  return $actions;
}