public function LazyPluginCollection::set in Service Container 7.2
Same name and namespace in other branches
- 7 lib/Drupal/Component/Plugin/LazyPluginCollection.php \Drupal\Component\Plugin\LazyPluginCollection::set()
Stores an initialized plugin.
Parameters
string $instance_id: The ID of the plugin instance being stored.
mixed $value: An instantiated plugin.
File
- lib/
Drupal/ Component/ Plugin/ LazyPluginCollection.php, line 98 - Contains \Drupal\Component\Plugin\LazyPluginCollection.
Class
- LazyPluginCollection
- Defines an object which stores multiple plugin instances to lazy load them.
Namespace
Drupal\Component\PluginCode
public function set($instance_id, $value) {
$this->pluginInstances[$instance_id] = $value;
$this
->addInstanceId($instance_id);
}