class ConfigSnapshotSubscriber in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/EventSubscriber/ConfigSnapshotSubscriber.php \Drupal\Core\EventSubscriber\ConfigSnapshotSubscriber
Create a snapshot when config is imported.
Hierarchy
- class \Drupal\Core\EventSubscriber\ConfigSnapshotSubscriber implements EventSubscriberInterface
Expanded class hierarchy of ConfigSnapshotSubscriber
1 string reference to 'ConfigSnapshotSubscriber'
- core.services.yml in core/
core.services.yml - core/core.services.yml
1 service uses ConfigSnapshotSubscriber
File
- core/
lib/ Drupal/ Core/ EventSubscriber/ ConfigSnapshotSubscriber.php, line 19 - Contains \Drupal\Core\EventSubscriber\ConfigSnapshotSubscriber.
Namespace
Drupal\Core\EventSubscriberView source
class ConfigSnapshotSubscriber implements EventSubscriberInterface {
/**
* The configuration manager.
*
* @var \Drupal\Core\Config\ConfigManagerInterface
*/
protected $configManager;
/**
* The source storage used to discover configuration changes.
*
* @var \Drupal\Core\Config\StorageInterface
*/
protected $sourceStorage;
/**
* The snapshot storage used to write configuration changes.
*
* @var \Drupal\Core\Config\StorageInterface
*/
protected $snapshotStorage;
/**
* Constructs the ConfigSnapshotSubscriber object.
*
* @param StorageInterface $source_storage
* The source storage used to discover configuration changes.
* @param StorageInterface $snapshot_storage
* The snapshot storage used to write configuration changes.
*/
public function __construct(ConfigManagerInterface $config_manager, StorageInterface $source_storage, StorageInterface $snapshot_storage) {
$this->configManager = $config_manager;
$this->sourceStorage = $source_storage;
$this->snapshotStorage = $snapshot_storage;
}
/**
* Creates a config snapshot.
*
* @param \Drupal\Core\Config\ConfigImporterEvent $event
* The Event to process.
*/
public function onConfigImporterImport(ConfigImporterEvent $event) {
$this->configManager
->createSnapshot($this->sourceStorage, $this->snapshotStorage);
}
/**
* Registers the methods in this class that should be listeners.
*
* @return array
* An array of event listener definitions.
*/
static function getSubscribedEvents() {
$events[ConfigEvents::IMPORT][] = array(
'onConfigImporterImport',
40,
);
return $events;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ConfigSnapshotSubscriber:: |
protected | property | The configuration manager. | |
ConfigSnapshotSubscriber:: |
protected | property | The snapshot storage used to write configuration changes. | |
ConfigSnapshotSubscriber:: |
protected | property | The source storage used to discover configuration changes. | |
ConfigSnapshotSubscriber:: |
static | function |
Registers the methods in this class that should be listeners. Overrides EventSubscriberInterface:: |
|
ConfigSnapshotSubscriber:: |
public | function | Creates a config snapshot. | |
ConfigSnapshotSubscriber:: |
public | function | Constructs the ConfigSnapshotSubscriber object. |