You are here

public function ConfigNamesMapper::getBaseRouteName in Drupal 9

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

Returns the name of the base route the mapper is attached to.

Return value

string The name of the base route the mapper is attached to.

Overrides ConfigMapperInterface::getBaseRouteName

5 calls to ConfigNamesMapper::getBaseRouteName()
ConfigNamesMapper::getAddRouteName in core/modules/config_translation/src/ConfigNamesMapper.php
Returns route name for the translation add form route.
ConfigNamesMapper::getBaseRoute in core/modules/config_translation/src/ConfigNamesMapper.php
Returns the base route object the mapper is attached to.
ConfigNamesMapper::getDeleteRouteName in core/modules/config_translation/src/ConfigNamesMapper.php
Returns route name for the translation deletion route.
ConfigNamesMapper::getEditRouteName in core/modules/config_translation/src/ConfigNamesMapper.php
Returns route name for the translation edit form route.
ConfigNamesMapper::getOverviewRouteName in core/modules/config_translation/src/ConfigNamesMapper.php
Returns route name for the translation overview route.

File

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

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

public function getBaseRouteName() {
  return $this->pluginDefinition['base_route_name'];
}