You are here

public function WebformHandlerManager::getGroupedDefinitions in Webform 6.x

Same name and namespace in other branches
  1. 8.5 src/Plugin/WebformHandlerManager.php \Drupal\webform\Plugin\WebformHandlerManager::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.

Overrides CategorizingPluginManagerInterface::getGroupedDefinitions

File

src/Plugin/WebformHandlerManager.php, line 67

Class

WebformHandlerManager
Manages webform handler plugins.

Namespace

Drupal\webform\Plugin

Code

public function getGroupedDefinitions(array $definitions = NULL) {
  $definitions = $this
    ->traitGetGroupedDefinitions($definitions);

  // Do not display the 'broken' plugin in the UI.
  unset($definitions[$this
    ->t('Broken')]['broken']);
  return $definitions;
}