You are here

public function ConfigNamesMapper::getOverviewRouteName in Drupal 9

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

Returns route name for the translation overview route.

Return value

string Route name for the mapper.

Overrides ConfigMapperInterface::getOverviewRouteName

1 call to ConfigNamesMapper::getOverviewRouteName()
ConfigNamesMapper::getOperations in core/modules/config_translation/src/ConfigNamesMapper.php
Provides an array of information to build a list of operation links.
1 method overrides ConfigNamesMapper::getOverviewRouteName()
ConfigEntityMapper::getOverviewRouteName in core/modules/config_translation/src/ConfigEntityMapper.php
Returns route name for the translation overview route.

File

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

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

public function getOverviewRouteName() {
  return 'config_translation.item.overview.' . $this
    ->getBaseRouteName();
}