You are here

public function Multiple::__construct in Entityqueue 8

Constructs a Multiple queue handler object.

Parameters

array $configuration: A configuration array containing information about the plugin instance.

string $plugin_id: The plugin ID for the plugin instance.

mixed $plugin_definition: The plugin implementation definition.

\Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager: The entity type manager.

Overrides EntityQueueHandlerBase::__construct

1 call to Multiple::__construct()
SmartQueue::__construct in modules/entityqueue_smartqueue/src/Plugin/EntityQueueHandler/SmartQueue.php
Constructs a new SmartQueue object.
1 method overrides Multiple::__construct()
SmartQueue::__construct in modules/entityqueue_smartqueue/src/Plugin/EntityQueueHandler/SmartQueue.php
Constructs a new SmartQueue object.

File

src/Plugin/EntityQueueHandler/Multiple.php, line 42

Class

Multiple
Defines an entity queue handler that manages multiple subqueues.

Namespace

Drupal\entityqueue\Plugin\EntityQueueHandler

Code

public function __construct(array $configuration, $plugin_id, $plugin_definition, EntityTypeManagerInterface $entity_type_manager) {
  parent::__construct($configuration, $plugin_id, $plugin_definition);
  $this->entityTypeManager = $entity_type_manager;
}