function ConfigNamesMapper::populateFromRouteMatch
Same name in other branches
- 9 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::populateFromRouteMatch()
- 10 core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::populateFromRouteMatch()
- 11.x core/modules/config_translation/src/ConfigNamesMapper.php \Drupal\config_translation\ConfigNamesMapper::populateFromRouteMatch()
Overrides ConfigMapperInterface::populateFromRouteMatch
1 call to ConfigNamesMapper::populateFromRouteMatch()
- ConfigEntityMapper::populateFromRouteMatch in core/
modules/ config_translation/ src/ ConfigEntityMapper.php - Populate the config mapper with route match data.
1 method overrides ConfigNamesMapper::populateFromRouteMatch()
- ConfigEntityMapper::populateFromRouteMatch in core/
modules/ config_translation/ src/ ConfigEntityMapper.php - Populate the config mapper with route match data.
File
-
core/
modules/ config_translation/ src/ ConfigNamesMapper.php, line 383
Class
- ConfigNamesMapper
- Configuration mapper base implementation.
Namespace
Drupal\config_translationCode
public function populateFromRouteMatch(RouteMatchInterface $route_match) {
$this->langcode = $route_match->getParameter('langcode');
$event = new ConfigMapperPopulateEvent($this, $route_match);
$this->eventDispatcher
->dispatch(ConfigTranslationEvents::POPULATE_MAPPER, $event);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.