function ConfigImporter::__construct

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::__construct()
  2. 8.9.x core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::__construct()
  3. 11.x core/lib/Drupal/Core/Config/ConfigImporter.php \Drupal\Core\Config\ConfigImporter::__construct()

Constructs a configuration import object.

Parameters

\Drupal\Core\Config\StorageComparerInterface $storage_comparer: A storage comparer object used to determine configuration changes and access the source and target storage objects.

\Symfony\Contracts\EventDispatcher\EventDispatcherInterface $event_dispatcher: The event dispatcher used to notify subscribers of config import events.

\Drupal\Core\Config\ConfigManagerInterface $config_manager: The configuration manager.

\Drupal\Core\Lock\LockBackendInterface $lock: The lock backend to ensure multiple imports do not occur at the same time.

\Drupal\Core\Config\TypedConfigManagerInterface $typed_config: The typed configuration manager.

\Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler

\Drupal\Core\Extension\ModuleInstallerInterface $module_installer: The module installer.

\Drupal\Core\Extension\ThemeHandlerInterface $theme_handler: The theme handler

\Drupal\Core\StringTranslation\TranslationInterface $string_translation: The string translation service.

\Drupal\Core\Extension\ModuleExtensionList $extension_list_module: The module extension list.

\Drupal\Core\Extension\ThemeExtensionList $extension_list_theme: The theme extension list.

File

core/lib/Drupal/Core/Config/ConfigImporter.php, line 204

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

public function __construct(StorageComparerInterface $storage_comparer, EventDispatcherInterface $event_dispatcher, ConfigManagerInterface $config_manager, LockBackendInterface $lock, TypedConfigManagerInterface $typed_config, ModuleHandlerInterface $module_handler, ModuleInstallerInterface $module_installer, ThemeHandlerInterface $theme_handler, TranslationInterface $string_translation, ModuleExtensionList $extension_list_module, ?ThemeExtensionList $extension_list_theme = NULL) {
  $this->moduleExtensionList = $extension_list_module;
  $this->storageComparer = $storage_comparer;
  $this->eventDispatcher = $event_dispatcher;
  $this->configManager = $config_manager;
  $this->lock = $lock;
  $this->typedConfigManager = $typed_config;
  $this->moduleHandler = $module_handler;
  $this->moduleInstaller = $module_installer;
  $this->themeHandler = $theme_handler;
  $this->stringTranslation = $string_translation;
  if ($extension_list_theme === NULL) {
    @trigger_error('Calling ' . __METHOD__ . ' without the $extension_list_theme argument is deprecated in drupal:10.1.0 and will be required in drupal:11.0.0. See https://www.drupal.org/node/3284397', E_USER_DEPRECATED);
    $extension_list_theme = \Drupal::service('extension.list.theme');
  }
  $this->themeExtensionList = $extension_list_theme;
  foreach ($this->storageComparer
    ->getAllCollectionNames() as $collection) {
    $this->processedConfiguration[$collection] = $this->storageComparer
      ->getEmptyChangelist();
  }
  $this->processedExtensions = $this->getEmptyExtensionsProcessedList();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.