protected function EntityQueueHandlerBase::__construct in Entityqueue 7
File
- plugins/
entityqueue/ handler/ base.inc, line 132 - Contains Entityqueue handler interface and base class.
Class
- EntityQueueHandlerBase
- An abstract implementation of EntityQueueHandlerInterface.
Code
protected function __construct(EntityQueue $queue) {
$this->queue = $queue;
ctools_include('plugins');
$plugin = ctools_get_plugins('entityqueue', 'handler', $this->queue->handler);
$this->plugin = $plugin;
}