Search for storage

  1. Search 7.x for storage
  2. Search 9.5.x for storage
  3. Search 8.9.x for storage
  4. Search 10.3.x for storage
  5. Other projects
Title Object type File name Summary
ReadOnlyStorage class core/lib/Drupal/Core/Config/ReadOnlyStorage.php A ReadOnlyStorage decorates a storage and does not allow writing to it.
ReadOnlyStorage.php file core/lib/Drupal/Core/Config/ReadOnlyStorage.php
ReadOnlyStorage::$storage property core/lib/Drupal/Core/Config/ReadOnlyStorage.php The config storage that we are decorating.
ReadOnlyStorage::createCollection function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Creates a collection on the storage.
ReadOnlyStorage::decode function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Decodes configuration data from the storage-specific format.
ReadOnlyStorage::delete function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Deletes a configuration object from the storage.
ReadOnlyStorage::deleteAll function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Deletes configuration objects whose names start with a given prefix.
ReadOnlyStorage::encode function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Encodes configuration data into the storage-specific format.
ReadOnlyStorage::exists function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Returns whether a configuration object exists.
ReadOnlyStorage::getAllCollectionNames function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Gets the existing collections.
ReadOnlyStorage::getCollectionName function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Gets the name of the current collection the storage is using.
ReadOnlyStorage::listAll function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Gets configuration object names starting with a given prefix.
ReadOnlyStorage::read function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Reads configuration data from the storage.
ReadOnlyStorage::readMultiple function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Reads configuration data from the storage.
ReadOnlyStorage::rename function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Renames a configuration object in the storage.
ReadOnlyStorage::write function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Writes configuration data to the storage.
ReadOnlyStorage::__construct function core/lib/Drupal/Core/Config/ReadOnlyStorage.php Create a ReadOnlyStorage decorating another storage.
ReadOnlyStorageTest class core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php @coversDefaultClass \Drupal\Core\Config\ReadOnlyStorage
@group Config
ReadOnlyStorageTest.php file core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php
ReadOnlyStorageTest::$memory property core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php The memory storage containing the data.
ReadOnlyStorageTest::$storage property core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php The read-only storage under test.
ReadOnlyStorageTest::readMethodsProvider function core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php Provide the methods that work transparently.
ReadOnlyStorageTest::setRandomFixtureConfig function core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php Generate random config in the memory storage.
ReadOnlyStorageTest::setUp function core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php
ReadOnlyStorageTest::testCollections function core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php @covers ::getAllCollectionNames
@covers ::getCollectionName
@covers ::createCollection
ReadOnlyStorageTest::testEncodeDecode function core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php @covers ::encode
@covers ::decode
ReadOnlyStorageTest::testReadOperations function core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php @covers ::exists
@covers ::read
@covers ::readMultiple
@covers ::listAll
ReadOnlyStorageTest::testWriteOperations function core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php @covers ::write
@covers ::delete
@covers ::rename
@covers ::deleteAll
ReadOnlyStorageTest::writeMethodsProvider function core/tests/Drupal/Tests/Core/Config/ReadOnlyStorageTest.php Provide the methods that throw an exception.
RecipeConfigStorageWrapper class core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Merges two storages together.
RecipeConfigStorageWrapper.php file core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php
RecipeConfigStorageWrapper::createCollection function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Creates a collection on the storage.
RecipeConfigStorageWrapper::createStorageFromArray function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Creates a single config storage for an array of storages.
RecipeConfigStorageWrapper::decode function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Decodes configuration data from the storage-specific format.
RecipeConfigStorageWrapper::delete function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Deletes a configuration object from the storage.
RecipeConfigStorageWrapper::deleteAll function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Deletes configuration objects whose names start with a given prefix.
RecipeConfigStorageWrapper::encode function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Encodes configuration data into the storage-specific format.
RecipeConfigStorageWrapper::exists function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Returns whether a configuration object exists.
RecipeConfigStorageWrapper::getAllCollectionNames function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Gets the existing collections.
RecipeConfigStorageWrapper::getCollectionName function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Gets the name of the current collection the storage is using.
RecipeConfigStorageWrapper::listAll function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Gets configuration object names starting with a given prefix.
RecipeConfigStorageWrapper::read function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Reads configuration data from the storage.
RecipeConfigStorageWrapper::readMultiple function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Reads configuration data from the storage.
RecipeConfigStorageWrapper::rename function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Renames a configuration object in the storage.
RecipeConfigStorageWrapper::write function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php Writes configuration data to the storage.
RecipeConfigStorageWrapper::__construct function core/lib/Drupal/Core/Recipe/RecipeConfigStorageWrapper.php
RecipeConfigStorageWrapperTest class core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php @coversDefaultClass \Drupal\Core\Recipe\RecipeConfigStorageWrapper
@group Recipe
RecipeConfigStorageWrapperTest.php file core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php
RecipeConfigStorageWrapperTest::generateStorages function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Generate two storages where the second storage should return a value.
RecipeConfigStorageWrapperTest::testCreateCollection function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test creating a collection passes the name through to the child storages.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.