class EntityQueueHandlerPluginCollection in Entityqueue 8
Provides a container for lazily loading EntityQueueHandler plugins.
Hierarchy
- class \Drupal\Component\Plugin\LazyPluginCollection implements \Drupal\Component\Plugin\IteratorAggregate, \Drupal\Component\Plugin\Countable
- class \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection uses DependencySerializationTrait
- class \Drupal\entityqueue\EntityQueueHandlerPluginCollection
- class \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection uses DependencySerializationTrait
Expanded class hierarchy of EntityQueueHandlerPluginCollection
1 file declares its use of EntityQueueHandlerPluginCollection
- EntityQueue.php in src/
Entity/ EntityQueue.php
File
- src/
EntityQueueHandlerPluginCollection.php, line 11
Namespace
Drupal\entityqueueView source
class EntityQueueHandlerPluginCollection extends DefaultSingleLazyPluginCollection {
/**
* The entity queue that is using this plugin collection.
*
* @var \Drupal\entityqueue\Entity\EntityQueue
*/
protected $queue;
/**
* Constructs a new EntityQueueHandlerPluginCollection.
*
* @param \Drupal\Component\Plugin\PluginManagerInterface $manager
* The manager to be used for instantiating plugins.
* @param string $instance_id
* The ID of the plugin instance.
* @param array $configuration
* An array of configuration.
* @param \Drupal\entityqueue\EntityQueueInterface $queue
* The entity queue using this plugin.
*/
public function __construct(PluginManagerInterface $manager, $instance_id, array $configuration, EntityQueueInterface $queue) {
$this->queue = $queue;
parent::__construct($manager, $instance_id, $configuration);
}
/**
* {@inheritdoc}
*
* @return \Drupal\entityqueue\EntityQueueHandlerInterface
*/
public function &get($instance_id) {
return parent::get($instance_id);
}
/**
* {@inheritdoc}
*/
protected function initializePlugin($instance_id) {
parent::initializePlugin($instance_id);
$this->pluginInstances[$instance_id]
->setQueue($this->queue);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DefaultSingleLazyPluginCollection:: |
protected | property | An array of configuration to instantiate the plugin with. | |
DefaultSingleLazyPluginCollection:: |
protected | property | The instance ID used for this plugin collection. | |
DefaultSingleLazyPluginCollection:: |
protected | property | The manager used to instantiate the plugins. | |
DefaultSingleLazyPluginCollection:: |
public | function |
Adds an instance ID to the available instance IDs. Overrides LazyPluginCollection:: |
|
DefaultSingleLazyPluginCollection:: |
public | function |
Gets the current configuration of all plugins in this collection. Overrides LazyPluginCollection:: |
|
DefaultSingleLazyPluginCollection:: |
public | function |
Sets the configuration for all plugins in this collection. Overrides LazyPluginCollection:: |
|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
EntityQueueHandlerPluginCollection:: |
protected | property | The entity queue that is using this plugin collection. | |
EntityQueueHandlerPluginCollection:: |
public | function |
Overrides LazyPluginCollection:: |
|
EntityQueueHandlerPluginCollection:: |
protected | function |
Initializes and stores a plugin. Overrides DefaultSingleLazyPluginCollection:: |
|
EntityQueueHandlerPluginCollection:: |
public | function |
Constructs a new EntityQueueHandlerPluginCollection. Overrides DefaultSingleLazyPluginCollection:: |
|
LazyPluginCollection:: |
protected | property | Stores the IDs of all potential plugin instances. | |
LazyPluginCollection:: |
protected | property | Stores all instantiated plugins. | |
LazyPluginCollection:: |
public | function | Clears all instantiated plugins. | |
LazyPluginCollection:: |
public | function | ||
LazyPluginCollection:: |
public | function | Gets all instance IDs. | |
LazyPluginCollection:: |
public | function | ||
LazyPluginCollection:: |
public | function | Determines if a plugin instance exists. | |
LazyPluginCollection:: |
public | function | Removes an initialized plugin. | |
LazyPluginCollection:: |
public | function | Removes an instance ID. | |
LazyPluginCollection:: |
public | function | Stores an initialized plugin. |