You are here

public function EntityQueueHandlerBase::onQueuePostDelete in Entityqueue 8

Acts on deleted entity queues before the delete hook is invoked.

Parameters

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

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

Overrides EntityQueueHandlerInterface::onQueuePostDelete

2 methods override EntityQueueHandlerBase::onQueuePostDelete()
Multiple::onQueuePostDelete in src/Plugin/EntityQueueHandler/Multiple.php
Acts on deleted entity queues before the delete hook is invoked.
Simple::onQueuePostDelete in src/Plugin/EntityQueueHandler/Simple.php
Acts on deleted entity queues before the delete hook is invoked.

File

src/EntityQueueHandlerBase.php, line 125

Class

EntityQueueHandlerBase
Base class for EntityQueueHandler plugins.

Namespace

Drupal\entityqueue

Code

public function onQueuePostDelete(EntityQueueInterface $queue, EntityStorageInterface $storage) {
}