You are here

public function LogActionBase::executeMultiple in Log entity 2.x

Executes the plugin for an array of objects.

Parameters

array $objects: An array of entities.

Overrides ActionBase::executeMultiple

1 call to LogActionBase::executeMultiple()
LogActionBase::execute in src/Plugin/Action/LogActionBase.php
Executes the plugin.

File

src/Plugin/Action/LogActionBase.php, line 69

Class

LogActionBase
Base class for the configurable actions for logs.

Namespace

Drupal\log\Plugin\Action

Code

public function executeMultiple(array $entities) {
  $this->tempStore
    ->set($this->user
    ->id(), $entities);
}