public function EntityQueueHandlerBase::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.
Overrides EntityQueueHandlerInterface::onQueuePostSave
1 call to EntityQueueHandlerBase::onQueuePostSave()
- SmartQueue::onQueuePostSave in modules/
entityqueue_smartqueue/ src/ Plugin/ EntityQueueHandler/ SmartQueue.php - Acts on an entity queue before the insert or update hook is invoked.
2 methods override EntityQueueHandlerBase::onQueuePostSave()
- Simple::onQueuePostSave in src/
Plugin/ EntityQueueHandler/ Simple.php - Acts on an entity queue before the insert or update hook is invoked.
- SmartQueue::onQueuePostSave in modules/
entityqueue_smartqueue/ src/ Plugin/ EntityQueueHandler/ SmartQueue.php - Acts on an entity queue before the insert or update hook is invoked.
File
- src/
EntityQueueHandlerBase.php, line 115
Class
- EntityQueueHandlerBase
- Base class for EntityQueueHandler plugins.
Namespace
Drupal\entityqueueCode
public function onQueuePostSave(EntityQueueInterface $queue, EntityStorageInterface $storage, $update = TRUE) {
}