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 11.x for storage
  5. Other projects
Title Object type File name Summary
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.
RecipeConfigStorageWrapperTest::testDecode function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test that we only use storage A's decode method.
RecipeConfigStorageWrapperTest::testEncode function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test that we only use storage A's encode method.
RecipeConfigStorageWrapperTest::testGetAllCollectionNames function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test that we merge and return only unique collection names.
RecipeConfigStorageWrapperTest::testGetCollection function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test the collection name is stored properly.
RecipeConfigStorageWrapperTest::testLeftSideExists function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that the first storage checks existence first.
RecipeConfigStorageWrapperTest::testListAll function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test that list all merges values and makes them unique.
RecipeConfigStorageWrapperTest::testMultipleStorages function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that multiple storages return underlying values correctly.
RecipeConfigStorageWrapperTest::testNotExists function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate FALSE when neither storage contains a key.
RecipeConfigStorageWrapperTest::testNullStorage function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that an empty set of storage backends returns null storage.
RecipeConfigStorageWrapperTest::testReadFails function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate when neither storage can read a value.
RecipeConfigStorageWrapperTest::testReadFromA function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that we read from storage A first.
RecipeConfigStorageWrapperTest::testReadFromB function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that we read from storage B second.
RecipeConfigStorageWrapperTest::testReadMultiple function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test reading multiple values.
RecipeConfigStorageWrapperTest::testReadMultipleStorageA function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test that storage A has precedence over storage B.
RecipeConfigStorageWrapperTest::testRightSideExists function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that we fall back to the second storage.
RecipeConfigStorageWrapperTest::testSingleStorage function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Validate that a single storage returns exactly the same instance.
RecipeConfigStorageWrapperTest::testUnsupportedMethods function core/tests/Drupal/Tests/Core/Recipe/RecipeConfigStorageWrapperTest.php Test methods that are unsupported.
RecipeExtensionConfigStorage class core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Allows the recipe to select configuration from the module.
RecipeExtensionConfigStorage.php file core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php
RecipeExtensionConfigStorage::$storage property core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php
RecipeExtensionConfigStorage::createCollection function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Creates a collection on the storage.
RecipeExtensionConfigStorage::decode function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Decodes configuration data from the storage-specific format.
RecipeExtensionConfigStorage::delete function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Deletes a configuration object from the storage.
RecipeExtensionConfigStorage::deleteAll function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Deletes configuration objects whose names start with a given prefix.
RecipeExtensionConfigStorage::encode function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Encodes configuration data into the storage-specific format.
RecipeExtensionConfigStorage::exists function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Returns whether a configuration object exists.
RecipeExtensionConfigStorage::getAllCollectionNames function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Gets the existing collections.
RecipeExtensionConfigStorage::getCollectionName function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Gets the name of the current collection the storage is using.
RecipeExtensionConfigStorage::listAll function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Gets configuration object names starting with a given prefix.
RecipeExtensionConfigStorage::read function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Reads configuration data from the storage.
RecipeExtensionConfigStorage::readMultiple function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Reads configuration data from the storage.
RecipeExtensionConfigStorage::rename function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Renames a configuration object in the storage.
RecipeExtensionConfigStorage::write function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php Writes configuration data to the storage.
RecipeExtensionConfigStorage::__construct function core/lib/Drupal/Core/Recipe/RecipeExtensionConfigStorage.php
RecipeOverrideConfigStorage class core/lib/Drupal/Core/Recipe/RecipeOverrideConfigStorage.php Wraps a config storage to allow recipe provided configuration to override it.
RecipeOverrideConfigStorage.php file core/lib/Drupal/Core/Recipe/RecipeOverrideConfigStorage.php

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