public function CategorizingPluginManagerInterface::getGroupedDefinitions in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Component/Plugin/CategorizingPluginManagerInterface.php \Drupal\Component\Plugin\CategorizingPluginManagerInterface::getGroupedDefinitions()
Gets sorted plugin definitions grouped by category.
In addition to grouping, both categories and its entries are sorted, whereas plugin definitions are sorted by label.
Parameters
array[]|null $definitions: (optional) The plugin definitions to group. If omitted, all plugin definitions are used.
Return value
array[] Keys are category names, and values are arrays of which the keys are plugin IDs and the values are plugin definitions.
1 method overrides CategorizingPluginManagerInterface::getGroupedDefinitions()
- LayoutPluginManagerInterface::getGroupedDefinitions in core/
lib/ Drupal/ Core/ Layout/ LayoutPluginManagerInterface.php
File
- core/
lib/ Drupal/ Component/ Plugin/ CategorizingPluginManagerInterface.php, line 44
Class
- CategorizingPluginManagerInterface
- Defines an interface for plugin managers that categorize plugin definitions.
Namespace
Drupal\Component\PluginCode
public function getGroupedDefinitions(array $definitions = NULL);