You are here

public function ConfigNamesMapper::getBaseRouteParameters in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::getBaseRouteParameters()
  2. 10 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::getBaseRouteParameters()

Returns the route parameters for the base route the mapper is attached to.

Return value

array

Overrides ConfigMapperInterface::getBaseRouteParameters

2 calls to ConfigNamesMapper::getBaseRouteParameters()
ConfigNamesMapper::getAddRouteParameters in core/modules/config_translation/src/ConfigNamesMapper.php
Returns the route parameters for the translation add form route.
ConfigNamesMapper::getOverviewRouteParameters in core/modules/config_translation/src/ConfigNamesMapper.php
Returns the route parameters for the translation overview route.
1 method overrides ConfigNamesMapper::getBaseRouteParameters()
ConfigEntityMapper::getBaseRouteParameters in core/modules/config_translation/src/ConfigEntityMapper.php
Returns the route parameters for the base route the mapper is attached to.

File

core/modules/config_translation/src/ConfigNamesMapper.php, line 196

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

public function getBaseRouteParameters() {
  return [];
}