You are here

protected function RulesReactionRule::exportChildren in Rules 7.2

File

includes/rules.plugins.inc, line 535
Contains plugin info and implementations not needed for rule evaluation.

Class

RulesReactionRule
Represents rules getting triggered by events.

Code

protected function exportChildren($key = 'ON') {
  $export = array();
  foreach ($this->events as $event_name) {
    $export[$key][$event_name] = (array) $this
      ->getEventSettings($event_name);
  }
  return $export + parent::exportChildren();
}