You are here

public function EntityQueue::getHandlerPlugin in Entityqueue 8

Gets the EntityQueueHandler plugin object.

Return value

EntityQueueHandlerInterface

Overrides EntityQueueInterface::getHandlerPlugin

File

src/Entity/EntityQueue.php, line 195

Class

EntityQueue
Defines the EntityQueue entity class.

Namespace

Drupal\entityqueue\Entity

Code

public function getHandlerPlugin() {
  return $this
    ->getPluginCollection()
    ->get($this->handler);
}