You are here

public function ConfigNamesMapper::getEditRouteName in Drupal 9

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

Returns route name for the translation edit form route.

Return value

string Route name for the mapper.

Overrides ConfigMapperInterface::getEditRouteName

File

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

Class

ConfigNamesMapper
Configuration mapper base implementation.

Namespace

Drupal\config_translation

Code

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