ConfigFieldMapper::getBaseRouteParameters

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

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;
}
doc_Drupal
2016-10-29 08:53:22
Comments
Leave a Comment

Please login to continue.