You are here

public function EntityQueueHandlerInterface::onQueuePostSave in Entityqueue 8

Acts on an entity queue before the insert or update hook is invoked.

Parameters

\Drupal\entityqueue\EntityQueueInterface $queue: The entity queue object.

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

bool $update: TRUE if the queue has been updated, or FALSE if it has been inserted.

1 method overrides EntityQueueHandlerInterface::onQueuePostSave()
EntityQueueHandlerBase::onQueuePostSave in src/EntityQueueHandlerBase.php
Acts on an entity queue before the insert or update hook is invoked.

File

src/EntityQueueHandlerInterface.php, line 78

Class

EntityQueueHandlerInterface
Provides an interface for an EntityQueueHandler plugin.

Namespace

Drupal\entityqueue

Code

public function onQueuePostSave(EntityQueueInterface $queue, EntityStorageInterface $storage, $update = TRUE);