You are here

public function ReactionRuleConfig::updateFromComponent in Rules 8.3

Updates the configuration based upon the given component.

Parameters

\Drupal\rules\Engine\RulesComponent $component: The component containing the configuration to set.

Return value

$this

Overrides RulesUiComponentProviderInterface::updateFromComponent

File

src/Entity/ReactionRuleConfig.php, line 168

Class

ReactionRuleConfig
Reaction rule configuration entity to persistently store configuration.

Namespace

Drupal\rules\Entity

Code

public function updateFromComponent(RulesComponent $component) {

  // Note that the available context definitions stem from the configured
  // events, which are handled separately.
  $this
    ->setExpression($component
    ->getExpression());
  return $this;
}