W3cubDocs

/Drupal 8

public function ConfigInstaller::__construct

public ConfigInstaller::__construct(ConfigFactoryInterface $config_factory, StorageInterface $active_storage, TypedConfigManagerInterface $typed_config, ConfigManagerInterface $config_manager, EventDispatcherInterface $event_dispatcher)

Constructs the configuration installer.

Parameters

\Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration factory.

\Drupal\Core\Config\StorageInterface $active_storage: The active configuration storage.

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

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

\Symfony\Component\EventDispatcher\EventDispatcherInterface $event_dispatcher: The event dispatcher.

File

core/lib/Drupal/Core/Config/ConfigInstaller.php, line 77

Class

ConfigInstaller

Namespace

Drupal\Core\Config

Code

public function __construct(ConfigFactoryInterface $config_factory, StorageInterface $active_storage, TypedConfigManagerInterface $typed_config, ConfigManagerInterface $config_manager, EventDispatcherInterface $event_dispatcher) {
  $this->configFactory = $config_factory;
  $this->activeStorages[$active_storage->getCollectionName()] = $active_storage;
  $this->typedConfig = $typed_config;
  $this->configManager = $config_manager;
  $this->eventDispatcher = $event_dispatcher;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!ConfigInstaller.php/function/ConfigInstaller::__construct/8.1.x