function LanguageConfigFactoryOverride::onConfigSave
Actions to be performed to configuration override on configuration save.
Parameters
\Drupal\Core\Config\ConfigCrudEvent $event: The config CRUD event.
Overrides ConfigFactoryOverrideBase::onConfigSave
File
- 
              core/modules/ language/ src/ Config/ LanguageConfigFactoryOverride.php, line 175 
Class
- LanguageConfigFactoryOverride
- Provides language overrides for the configuration factory.
Namespace
Drupal\language\ConfigCode
public function onConfigSave(ConfigCrudEvent $event) {
  $config = $event->getConfig();
  $name = $config->getName();
  foreach (\Drupal::languageManager()->getLanguages() as $language) {
    $config_translation = $this->getOverride($language->getId(), $name);
    if (!$config_translation->isNew()) {
      $this->filterOverride($config, $config_translation);
    }
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
