protected function PluginDiscoveryDecorator::processDecoratedDefinitions in Plugin 8.2
Processes the definitions from the decorated discovery.
Any changes to the decorated definitions should be performed here.
Parameters
mixed[] $decorated_definitions: The decorated plugin definitions, keyed by plugin ID.
Return value
mixed[] The processed plugin definitions.
1 call to PluginDiscoveryDecorator::processDecoratedDefinitions()
- PluginDiscoveryDecorator::getDefinitions in src/
PluginDiscovery/ PluginDiscoveryDecorator.php - Gets the definition of all plugins for this type.
2 methods override PluginDiscoveryDecorator::processDecoratedDefinitions()
- LimitedPluginDiscoveryDecorator::processDecoratedDefinitions in src/
PluginDiscovery/ LimitedPluginDiscoveryDecorator.php - Processes the definitions from the decorated discovery.
- TypedDefinitionEnsuringPluginDiscoveryDecorator::processDecoratedDefinitions in src/
PluginDiscovery/ TypedDefinitionEnsuringPluginDiscoveryDecorator.php - Processes the definitions from the decorated discovery.
File
- src/
PluginDiscovery/ PluginDiscoveryDecorator.php, line 75
Class
- PluginDiscoveryDecorator
- Decorates plugin discovery.
Namespace
Drupal\plugin\PluginDiscoveryCode
protected function processDecoratedDefinitions(array $decorated_definitions) {
return $decorated_definitions;
}