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
CheckpointStorage::__construct function core/lib/Drupal/Core/Config/Checkpoint/CheckpointStorage.php Constructs a CheckpointStorage object.
CheckpointStorageInterface interface core/lib/Drupal/Core/Config/Checkpoint/CheckpointStorageInterface.php Provides an interface for checkpoint storages.
CheckpointStorageInterface.php file core/lib/Drupal/Core/Config/Checkpoint/CheckpointStorageInterface.php
CheckpointStorageInterface::checkpoint function core/lib/Drupal/Core/Config/Checkpoint/CheckpointStorageInterface.php Creates a checkpoint, if required, and returns the active checkpoint.
CheckpointStorageInterface::setCheckpointToReadFrom function core/lib/Drupal/Core/Config/Checkpoint/CheckpointStorageInterface.php Sets the checkpoint to read from.
CheckpointStorageTest class core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php @coversDefaultClass \Drupal\Core\Config\Checkpoint\CheckpointStorage
@group Config
CheckpointStorageTest class core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php Tests CheckpointStorage operations.
CheckpointStorageTest.php file core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest.php file core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::$memory property core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php The memory storage containing the data.
CheckpointStorageTest::$modules property core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php Modules to install.
CheckpointStorageTest::$storage property core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php The checkpoint storage under test.
CheckpointStorageTest::getConfigImporter function core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::readMethodsProvider function core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php Provide the methods that work transparently.
CheckpointStorageTest::setRandomFixtureConfig function core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php Generate random config in the memory storage.
CheckpointStorageTest::setUp function core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::setUp function core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::testCheckpointCreation function core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php @covers ::checkpoint
@covers \Drupal\Core\Config\Checkpoint\Checkpoint
CheckpointStorageTest::testCollections function core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php @covers ::getAllCollectionNames
@covers ::getCollectionName
@covers ::createCollection
CheckpointStorageTest::testConfigCreate function core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::testConfigDelete function core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::testConfigRename function core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::testConfigSaveAndRead function core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::testEncodeDecode function core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php @covers ::encode
@covers ::decode
CheckpointStorageTest::testReadOperations function core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php @covers ::exists
@covers ::read
@covers ::readMultiple
@covers ::listAll
CheckpointStorageTest::testRevert function core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::testRevertWithCollections function core/tests/Drupal/KernelTests/Core/Config/Storage/Checkpoint/CheckpointStorageTest.php
CheckpointStorageTest::testWriteOperations function core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php @covers ::write
@covers ::delete
@covers ::rename
@covers ::deleteAll
CheckpointStorageTest::writeMethodsProvider function core/tests/Drupal/Tests/Core/Config/Checkpoint/CheckpointStorageTest.php Provide the methods that throw an exception.
CommentAdminOverview::$commentStorage property core/modules/comment/src/Form/CommentAdminOverview.php The comment storage.
CommentDefaultFormatter::$storage property core/modules/comment/src/Plugin/Field/FieldFormatter/CommentDefaultFormatter.php The comment storage.
CommentItem::defaultStorageSettings function core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php Defines the storage-level settings for this plugin.
CommentItem::storageSettingsForm function core/modules/comment/src/Plugin/Field/FieldType/CommentItem.php Returns a form for the storage-level settings.
CommentNameConstraintValidator::$userStorage property core/modules/comment/src/Plugin/Validation/Constraint/CommentNameConstraintValidator.php User storage handler.
CommentStorage class core/modules/comment/src/CommentStorage.php Defines the storage handler class for comments.
CommentStorage.php file core/modules/comment/src/CommentStorage.php
CommentStorage::$currentUser property core/modules/comment/src/CommentStorage.php The current user.
CommentStorage::createInstance function core/modules/comment/src/CommentStorage.php Instantiates a new instance of this entity handler.
CommentStorage::getChildCids function core/modules/comment/src/CommentStorage.php Gets the comment ids of the passed comment entities' children.
CommentStorage::getDisplayOrdinal function core/modules/comment/src/CommentStorage.php Gets the display ordinal or page number for a comment.
CommentStorage::getMaxThread function core/modules/comment/src/CommentStorage.php Gets the maximum encoded thread value for the top level comments.
CommentStorage::getMaxThreadPerThread function core/modules/comment/src/CommentStorage.php Gets the maximum encoded thread value for the children of this comment.
CommentStorage::getNewCommentPageNumber function core/modules/comment/src/CommentStorage.php Calculates the page number for the first new comment.
CommentStorage::getUnapprovedCount function core/modules/comment/src/CommentStorage.php Returns the number of unapproved comments.
CommentStorage::loadThread function core/modules/comment/src/CommentStorage.php To display threaded comments in the correct order we keep a 'thread' field
and order by that value. This field keeps this data in
a way which is easy to update and convenient to use.
CommentStorage::__construct function core/modules/comment/src/CommentStorage.php Constructs a CommentStorage object.
CommentStorageInterface interface core/modules/comment/src/CommentStorageInterface.php Defines an interface for comment entity storage classes.
CommentStorageInterface.php file core/modules/comment/src/CommentStorageInterface.php
CommentStorageInterface::getChildCids function core/modules/comment/src/CommentStorageInterface.php Gets the comment ids of the passed comment entities' children.
CommentStorageInterface::getDisplayOrdinal function core/modules/comment/src/CommentStorageInterface.php Gets the display ordinal or page number for a comment.

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