public ConfigImporter::__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)
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\Component\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.
File
- core/lib/Drupal/Core/Config/ConfigImporter.php, line 184
Class
- ConfigImporter
- Defines a configuration importer.
Namespace
Drupal\Core\Config
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 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 ) { $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 ; foreach ( $this ->storageComparer->getAllCollectionNames() as $collection ) { $this ->processedConfiguration[ $collection ] = $this ->storageComparer->getEmptyChangelist(); } $this ->processedExtensions = $this ->getEmptyExtensionsProcessedList(); } |
Please login to continue.