protected function DefaultPluginManager::getDiscovery in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Plugin/DefaultPluginManager.php \Drupal\Core\Plugin\DefaultPluginManager::getDiscovery()
Gets the plugin discovery.
Return value
\Drupal\Component\Plugin\Discovery\DiscoveryInterface
Overrides PluginManagerBase::getDiscovery
1 call to DefaultPluginManager::getDiscovery()
- ConstraintManager::getDiscovery in core/
lib/ Drupal/ Core/ Validation/ ConstraintManager.php - Gets the plugin discovery.
7 methods override DefaultPluginManager::getDiscovery()
- BreakpointManager::getDiscovery in core/
modules/ breakpoint/ src/ BreakpointManager.php - Gets the plugin discovery.
- ConfigMapperManager::getDiscovery in core/
modules/ config_translation/ src/ ConfigMapperManager.php - Gets the plugin discovery.
- ConstraintManager::getDiscovery in core/
lib/ Drupal/ Core/ Validation/ ConstraintManager.php - Gets the plugin discovery.
- ContextualLinkManager::getDiscovery in core/
lib/ Drupal/ Core/ Menu/ ContextualLinkManager.php - Gets the plugin discovery.
- LocalActionManager::getDiscovery in core/
lib/ Drupal/ Core/ Menu/ LocalActionManager.php - Gets the plugin discovery.
File
- core/
lib/ Drupal/ Core/ Plugin/ DefaultPluginManager.php, line 243 - Contains \Drupal\Core\Plugin\DefaultPluginManager.
Class
- DefaultPluginManager
- Base class for plugin managers.
Namespace
Drupal\Core\PluginCode
protected function getDiscovery() {
if (!$this->discovery) {
$discovery = new AnnotatedClassDiscovery($this->subdir, $this->namespaces, $this->pluginDefinitionAnnotationName);
$this->discovery = new ContainerDerivativeDiscoveryDecorator($discovery);
}
return $this->discovery;
}