You are here

public function EntityQueueHandlerBase::getHandlerLabel in Entityqueue 7

Returns the label of the queue's handler.

Overrides EntityQueueHandlerInterface::getHandlerLabel

1 method overrides EntityQueueHandlerBase::getHandlerLabel()
BrokenEntityQueueHandler::getHandlerLabel in plugins/entityqueue/handler/base.inc
Returns the label of the queue's handler.

File

plugins/entityqueue/handler/base.inc, line 157
Contains Entityqueue handler interface and base class.

Class

EntityQueueHandlerBase
An abstract implementation of EntityQueueHandlerInterface.

Code

public function getHandlerLabel() {
  return $this->plugin['title'];
}