You are here

public function RulesReactionRule::getEventSettings in Rules 7.2

Implements RulesTriggerableInterface::getEventSettings().

Overrides RulesTriggerableInterface::getEventSettings

3 calls to RulesReactionRule::getEventSettings()
RulesReactionRule::availableVariables in includes/rules.plugins.inc
RulesReactionRule::exportChildren in includes/rules.plugins.inc
RulesReactionRule::integrityCheck in includes/rules.plugins.inc

File

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

Class

RulesReactionRule
Represents rules getting triggered by events.

Code

public function getEventSettings($event_name) {
  if (isset($this->eventSettings[$event_name])) {
    return $this->eventSettings[$event_name];
  }
}