public function PluginManagerBase::getDefinitions in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Plugin/PluginManagerBase.php \Drupal\Component\Plugin\PluginManagerBase::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/ Component/ Plugin/ PluginManagerBase.php, line 64
Class
- PluginManagerBase
- Base class for plugin managers.
Namespace
Drupal\Component\PluginCode
public function getDefinitions() {
return $this
->getDiscovery()
->getDefinitions();
}