You are here

public function ConfigEntityMapper::getOverviewRouteName in Drupal 9

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

Returns route name for the translation overview route.

Return value

string Route name for the mapper.

Overrides ConfigNamesMapper::getOverviewRouteName

1 method overrides ConfigEntityMapper::getOverviewRouteName()
ConfigFieldMapper::getOverviewRouteName in core/modules/config_translation/src/ConfigFieldMapper.php
Returns route name for the translation overview route.

File

core/modules/config_translation/src/ConfigEntityMapper.php, line 259

Class

ConfigEntityMapper
Configuration mapper for configuration entities.

Namespace

Drupal\config_translation

Code

public function getOverviewRouteName() {
  return 'entity.' . $this->entityType . '.config_translation_overview';
}