You are here

protected function RuleConditionSet::exportChildren in Conditional Rules 8

Same name and namespace in other branches
  1. 7 includes/rules_conditional.plugin.inc \RuleConditionSet::exportChildren()

File

includes/rules_conditional.plugin.inc, line 575
Rules plugin implementation.

Class

RuleConditionSet
Rule as condition set.

Code

protected function exportChildren($key = NULL) {
  $export = array();
  if ($this->actions->children) {
    $export += $this->actions
      ->exportChildren('DO');
  }
  $export += parent::exportChildren('RESULT');
  return $export;
}