public function InfoHookDecorator::getDefinitions in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php \Drupal\Core\Plugin\Discovery\InfoHookDecorator::getDefinitions()
- 9 core/lib/Drupal/Core/Plugin/Discovery/InfoHookDecorator.php \Drupal\Core\Plugin\Discovery\InfoHookDecorator::getDefinitions()
Gets the definition of all plugins for this type.
Return value
mixed[] An array of plugin definitions (empty array if no definitions were found). Keys are plugin IDs.
Overrides DiscoveryTrait::getDefinitions
See also
\Drupal\Core\Plugin\FilteredPluginManagerInterface::getFilteredDefinitions()
File
- core/
lib/ Drupal/ Core/ Plugin/ Discovery/ InfoHookDecorator.php, line 45
Class
- InfoHookDecorator
- Allows info hook implementations to enhance discovered plugin definitions.
Namespace
Drupal\Core\Plugin\DiscoveryCode
public function getDefinitions() {
$definitions = $this->decorated
->getDefinitions();
\Drupal::moduleHandler()
->invokeAllWith($this->hook, function (callable $hook, string $module) use (&$definitions) {
$hook($definitions);
});
return $definitions;
}