public function ConfigNamesMapper::getBaseRouteParameters in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::getBaseRouteParameters()
Returns the route parameters for the base route the mapper is attached to.
Return value
array
Overrides ConfigMapperInterface::getBaseRouteParameters
2 calls to ConfigNamesMapper::getBaseRouteParameters()
- ConfigNamesMapper::getAddRouteParameters in core/
modules/ config_translation/ src/ ConfigNamesMapper.php - Returns the route parameters for the translation add form route.
- ConfigNamesMapper::getOverviewRouteParameters in core/
modules/ config_translation/ src/ ConfigNamesMapper.php - Returns the route parameters for the translation overview route.
1 method overrides ConfigNamesMapper::getBaseRouteParameters()
- ConfigEntityMapper::getBaseRouteParameters in core/
modules/ config_translation/ src/ ConfigEntityMapper.php - Returns the route parameters for the base route the mapper is attached to.
File
- core/
modules/ config_translation/ src/ ConfigNamesMapper.php, line 186 - Contains \Drupal\config_translation\ConfigNamesMapper.
Class
- ConfigNamesMapper
- Configuration mapper base implementation.
Namespace
Drupal\config_translationCode
public function getBaseRouteParameters() {
return array();
}