You are here

protected function RuleConditionSet::exportChildren in Conditional Rules 7

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

Overrides RulesConditionContainer::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;
}