public ConfigFieldMapper::getBaseRouteParameters()
Returns the route parameters for the base route the mapper is attached to.
Return value
array
Overrides ConfigEntityMapper::getBaseRouteParameters
File
- core/modules/config_translation/src/ConfigFieldMapper.php, line 27
Class
- ConfigFieldMapper
- Configuration mapper for fields.
Namespace
Drupal\config_translation
Code
1 2 3 4 5 6 7 | public function getBaseRouteParameters() { $parameters = parent::getBaseRouteParameters(); $base_entity_info = $this ->entityManager->getDefinition( $this ->pluginDefinition[ 'base_entity_type' ]); $bundle_parameter_key = $base_entity_info ->getBundleEntityType() ? : 'bundle' ; $parameters [ $bundle_parameter_key ] = $this ->entity->getTargetBundle(); return $parameters ; } |
Please login to continue.