You are here

public function ConfigTranslationContextualLinks::getDerivativeDefinitions in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/Plugin/Derivative/ConfigTranslationContextualLinks.php \Drupal\config_translation\Plugin\Derivative\ConfigTranslationContextualLinks::getDerivativeDefinitions()

Gets the definition of all derivatives of a base plugin.

Parameters

array $base_plugin_definition: The definition array of the base plugin.

Return value

array An array of full derivative definitions keyed on derivative id.

Overrides DeriverBase::getDerivativeDefinitions

See also

getDerivativeDefinition()

File

core/modules/config_translation/src/Plugin/Derivative/ConfigTranslationContextualLinks.php, line 44

Class

ConfigTranslationContextualLinks
Provides dynamic contextual links for configuration translation.

Namespace

Drupal\config_translation\Plugin\Derivative

Code

public function getDerivativeDefinitions($base_plugin_definition) {

  // Create contextual links for all mappers.
  $mappers = $this->mapperManager
    ->getMappers();
  foreach ($mappers as $plugin_id => $mapper) {

    // @todo Contextual groups do not map to entity types in a predictable
    //   way. See https://www.drupal.org/node/2134841 to make them
    //   predictable.
    $group_name = $mapper
      ->getContextualLinkGroup();
    if (empty($group_name)) {
      continue;
    }

    /** @var \Drupal\config_translation\ConfigMapperInterface $mapper */
    $route_name = $mapper
      ->getOverviewRouteName();
    $this->derivatives[$route_name] = $base_plugin_definition;
    $this->derivatives[$route_name]['config_translation_plugin_id'] = $plugin_id;
    $this->derivatives[$route_name]['class'] = '\\Drupal\\config_translation\\Plugin\\Menu\\ContextualLink\\ConfigTranslationContextualLink';
    $this->derivatives[$route_name]['route_name'] = $route_name;
    $this->derivatives[$route_name]['group'] = $group_name;
  }
  return parent::getDerivativeDefinitions($base_plugin_definition);
}