|
|
@ -56,12 +56,9 @@ class PresetReaction extends ContextReactionPluginBase implements ContainerFacto |
|
|
|
$action_ids = $config['actions']; |
|
|
|
$action_ids = $config['actions']; |
|
|
|
foreach ($action_ids as $action_id) { |
|
|
|
foreach ($action_ids as $action_id) { |
|
|
|
$action = $this->actionStorage->load($action_id); |
|
|
|
$action = $this->actionStorage->load($action_id); |
|
|
|
// Make sure that the action is appropriate for the entity. |
|
|
|
|
|
|
|
if ($entity->getEntityTypeId() === $action->getType()) { |
|
|
|
|
|
|
|
$action->execute([$entity]); |
|
|
|
$action->execute([$entity]); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* {@inheritdoc} |
|
|
|
* {@inheritdoc} |
|
|
|