public function LazyPluginCollection::getInstanceIds in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Component/Plugin/LazyPluginCollection.php \Drupal\Component\Plugin\LazyPluginCollection::getInstanceIds()
Gets all instance IDs.
Return value
array An array of all available instance IDs.
2 calls to LazyPluginCollection::getInstanceIds()
- DefaultLazyPluginCollection::setConfiguration in core/
lib/ Drupal/ Core/ Plugin/ DefaultLazyPluginCollection.php - Sets the configuration for all plugins in this collection.
- LazyPluginCollection::getIterator in core/
lib/ Drupal/ Component/ Plugin/ LazyPluginCollection.php
File
- core/
lib/ Drupal/ Component/ Plugin/ LazyPluginCollection.php, line 130
Class
- LazyPluginCollection
- Defines an object which stores multiple plugin instances to lazy load them.
Namespace
Drupal\Component\PluginCode
public function getInstanceIds() {
return $this->instanceIds;
}