You are here

public function ConfigSync::__construct in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/config/src/Form/ConfigSync.php \Drupal\config\Form\ConfigSync::__construct()

Constructs the object.

Parameters

\Drupal\Core\Config\StorageInterface $sync_storage: The source storage.

\Drupal\Core\Config\StorageInterface $active_storage: The target storage.

\Drupal\Core\Config\StorageInterface $snapshot_storage: The snapshot storage.

\Drupal\Core\Lock\LockBackendInterface $lock: The lock object.

\Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher: Event dispatcher.

\Drupal\Core\Config\ConfigManagerInterface $config_manager: Configuration manager.

\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\Render\RendererInterface $renderer: The renderer.

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

\Drupal\Core\Config\ImportStorageTransformer $import_transformer: The import transformer service.

File

core/modules/config/src/Form/ConfigSync.php, line 153

Class

ConfigSync
Construct the storage changes in a configuration synchronization form.

Namespace

Drupal\config\Form

Code

public function __construct(StorageInterface $sync_storage, StorageInterface $active_storage, StorageInterface $snapshot_storage, LockBackendInterface $lock, EventDispatcherInterface $event_dispatcher, ConfigManagerInterface $config_manager, TypedConfigManagerInterface $typed_config, ModuleHandlerInterface $module_handler, ModuleInstallerInterface $module_installer, ThemeHandlerInterface $theme_handler, RendererInterface $renderer, ModuleExtensionList $extension_list_module, ImportStorageTransformer $import_transformer = NULL) {
  $this->syncStorage = $sync_storage;
  $this->activeStorage = $active_storage;
  $this->snapshotStorage = $snapshot_storage;
  $this->lock = $lock;
  $this->eventDispatcher = $event_dispatcher;
  $this->configManager = $config_manager;
  $this->typedConfigManager = $typed_config;
  $this->moduleHandler = $module_handler;
  $this->moduleInstaller = $module_installer;
  $this->themeHandler = $theme_handler;
  $this->renderer = $renderer;
  $this->moduleExtensionList = $extension_list_module;
  if (is_null($import_transformer)) {
    @trigger_error('The config.import_transformer service must be passed to ConfigSync::__construct(), it is required before Drupal 9.0.0. See https://www.drupal.org/node/3066005.', E_USER_DEPRECATED);
    $import_transformer = \Drupal::service('config.import_transformer');
  }
  $this->importTransformer = $import_transformer;
}