You are here

protected function RuleConditionSet::importChildren in Conditional Rules 8

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

File

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

Class

RuleConditionSet
Rule as condition set.

Code

protected function importChildren($export, $key = NULL) {
  if (!empty($export['DO'])) {
    $this->actions
      ->importChildren($export, 'DO');
  }
  parent::importChildren($export, 'RESULT');
}