class EncryptionMethodPluginCollection in Encrypt 8.3
Provides a container for lazily loading EncryptionMethod 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\encrypt\EncryptionMethodPluginCollection
- class \Drupal\Core\Plugin\DefaultSingleLazyPluginCollection uses DependencySerializationTrait
Expanded class hierarchy of EncryptionMethodPluginCollection
1 file declares its use of EncryptionMethodPluginCollection
- EncryptionProfile.php in src/
Entity/ EncryptionProfile.php
File
- src/
EncryptionMethodPluginCollection.php, line 10
Namespace
Drupal\encryptView source
class EncryptionMethodPluginCollection extends DefaultSingleLazyPluginCollection {
/**
* {@inheritdoc}
*/
public function addInstanceId($id, $configuration = NULL) {
$this->instanceId = $id;
parent::addInstanceId($id, $configuration);
if ($configuration !== NULL) {
$this
->setConfiguration($configuration);
}
}
}
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 |
Gets the current configuration of all plugins in this collection. Overrides LazyPluginCollection:: |
|
DefaultSingleLazyPluginCollection:: |
protected | function |
Initializes and stores a plugin. Overrides LazyPluginCollection:: |
1 |
DefaultSingleLazyPluginCollection:: |
public | function |
Sets the configuration for all plugins in this collection. Overrides LazyPluginCollection:: |
|
DefaultSingleLazyPluginCollection:: |
public | function | Constructs a new DefaultSingleLazyPluginCollection object. | 1 |
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 | |
EncryptionMethodPluginCollection:: |
public | function |
Adds an instance ID to the available instance IDs. 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 a plugin instance, initializing it if necessary. | 4 |
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. |