Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ConfigSnapshotSubscriber.php

function ConfigSnapshotSubscriber::__construct

Constructs the ConfigSnapshotSubscriber object.

Parameters

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

\Drupal\Core\Config\StorageInterface $source_storage: The source storage used to discover configuration changes.

\Drupal\Core\Config\StorageInterface $snapshot_storage: The snapshot storage used to write configuration changes.

File

core/lib/Drupal/Core/EventSubscriber/ConfigSnapshotSubscriber.php, line 47

Class

ConfigSnapshotSubscriber
Create a snapshot when config is imported.

Namespace

Drupal\Core\EventSubscriber

Code

public function __construct(ConfigManagerInterface $config_manager, StorageInterface $source_storage, StorageInterface $snapshot_storage) {
    $this->configManager = $config_manager;
    $this->sourceStorage = $source_storage;
    $this->snapshotStorage = $snapshot_storage;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal