ConfigManager::__construct

public ConfigManager::__construct(EntityManagerInterface $entity_manager, ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typed_config_manager, TranslationInterface $string_translation, StorageInterface $active_storage, EventDispatcherInterface $event_dispatcher)

Creates ConfigManager objects.

Parameters

\Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager.

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

\Drupal\Core\Config\TypedConfigManagerInterface $typed_config_manager: The typed config manager.

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

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

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

File

core/lib/Drupal/Core/Config/ConfigManager.php, line 87

Class

ConfigManager
The ConfigManager provides helper functions for the configuration system.

Namespace

Drupal\Core\Config

Code

public function __construct(EntityManagerInterface $entity_manager, ConfigFactoryInterface $config_factory, TypedConfigManagerInterface $typed_config_manager, TranslationInterface $string_translation, StorageInterface $active_storage, EventDispatcherInterface $event_dispatcher) {
  $this->entityManager = $entity_manager;
  $this->configFactory = $config_factory;
  $this->typedConfigManager = $typed_config_manager;
  $this->stringTranslation = $string_translation;
  $this->activeStorage = $active_storage;
  $this->eventDispatcher = $event_dispatcher;
}
doc_Drupal
2016-10-29 08:54:01
Comments
Leave a Comment

Please login to continue.