You are here

public function LanguageConfigFactoryOverride::addCollections in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/language/src/Config/LanguageConfigFactoryOverride.php \Drupal\language\Config\LanguageConfigFactoryOverride::addCollections()

Reacts to the ConfigEvents::COLLECTION_INFO event.

Parameters

\Drupal\Core\Config\ConfigCollectionInfo $collection_info: The configuration collection names event.

Overrides ConfigFactoryOverrideBase::addCollections

File

core/modules/language/src/Config/LanguageConfigFactoryOverride.php, line 174
Contains \Drupal\language\Config\LanguageConfigFactoryOverride.

Class

LanguageConfigFactoryOverride
Provides language overrides for the configuration factory.

Namespace

Drupal\language\Config

Code

public function addCollections(ConfigCollectionInfo $collection_info) {
  foreach (\Drupal::languageManager()
    ->getLanguages() as $language) {
    $collection_info
      ->addCollection($this
      ->createConfigCollectionName($language
      ->getId()), $this);
  }
}