StorageComparer::$changelist

List of changes to between the source storage and the target storage. The list is keyed by storage collection name. Type: array File core/lib/Drupal/Core/Config/StorageComparer.php, line 57 Class StorageComparer Defines a config storage comparer. Namespace Drupal\Core\Config Code protected $changelist;

StorageComparer::$targetCacheStorage

A memory cache backend to statically cache target configuration data. Type: \Drupal\Core\Cache\MemoryBackend File core/lib/Drupal/Core/Config/StorageComparer.php, line 89 Class StorageComparer Defines a config storage comparer. Namespace Drupal\Core\Config Code protected $targetCacheStorage;

StorageComparer::$sourceCacheStorage

A memory cache backend to statically cache source configuration data. Type: \Drupal\Core\Cache\MemoryBackend File core/lib/Drupal/Core/Config/StorageComparer.php, line 82 Class StorageComparer Defines a config storage comparer. Namespace Drupal\Core\Config Code protected $sourceCacheStorage;

StorageComparer::$sourceStorages

The source storages keyed by collection. Type: \Drupal\Core\Config\StorageInterface[] File core/lib/Drupal/Core/Config/StorageComparer.php, line 27 Class StorageComparer Defines a config storage comparer. Namespace Drupal\Core\Config Code protected $sourceStorages;

StorageComparer::$sourceNames

Sorted list of all the configuration object names in the source storage. The list is keyed by storage collection name. Type: array File core/lib/Drupal/Core/Config/StorageComparer.php, line 66 Class StorageComparer Defines a config storage comparer. Namespace Drupal\Core\Config Code protected $sourceNames = array();

StorageComparer::$configManager

The configuration manager. Type: \Drupal\Core\Config\ConfigManagerInterface File core/lib/Drupal/Core/Config/StorageComparer.php, line 48 Class StorageComparer Defines a config storage comparer. Namespace Drupal\Core\Config Code protected $configManager;

StorageCacheInterface::resetListCache

public StorageCacheInterface::resetListCache() Reset the static cache of the listAll() cache. File core/lib/Drupal/Core/Config/StorageCacheInterface.php, line 13 Class StorageCacheInterface Defines an interface for cached configuration storage. Namespace Drupal\Core\Config Code public function resetListCache();

StorageComparer

Defines a config storage comparer. Hierarchy class \Drupal\Core\Config\StorageComparer implements StorageComparerInterface uses DependencySerializationTrait File core/lib/Drupal/Core/Config/StorageComparer.php, line 12 Namespace Drupal\Core\Config Members Name Modifiers Type Description DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization. DependencySerializationTrait::__sleep public fun

StorageBase::__construct

public StorageBase::__construct($collection) File core/lib/Drupal/Core/KeyValueStore/StorageBase.php, line 20 Class StorageBase Provides a base class for key/value storage implementations. Namespace Drupal\Core\KeyValueStore Code public function __construct($collection) { $this->collection = $collection; }

StorageBase::getCollectionName

public StorageBase::getCollectionName() Returns the name of this collection. Return value string The name of this collection. Overrides KeyValueStoreInterface::getCollectionName File core/lib/Drupal/Core/KeyValueStore/StorageBase.php, line 27 Class StorageBase Provides a base class for key/value storage implementations. Namespace Drupal\Core\KeyValueStore Code public function getCollectionName() { return $this->collection; }