public function ConfigNamesMapper::getEditRouteName in Drupal 9
Same name and namespace in other branches
- 8 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::getEditRouteName()
- 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_translationCode
public function getEditRouteName() {
return 'config_translation.item.edit.' . $this
->getBaseRouteName();
}