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
ContentEntityNullStorage::countFieldData function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php
ContentEntityNullStorage::delete function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Deletes permanently saved entities.
ContentEntityNullStorage::deleteRevision function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Deletes a specific entity revision.
ContentEntityNullStorage::doDelete function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Performs storage-specific entity deletion.
ContentEntityNullStorage::doDeleteFieldItems function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Deletes entity field values from the storage.
ContentEntityNullStorage::doDeleteRevisionFieldItems function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Deletes field values of an entity revision from the storage.
ContentEntityNullStorage::doLoadMultiple function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Performs storage-specific loading of entities.
ContentEntityNullStorage::doLoadMultipleRevisionsFieldItems function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Actually loads revision field item values from the storage.
ContentEntityNullStorage::doSave function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Performs storage-specific saving of the entity.
ContentEntityNullStorage::doSaveFieldItems function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Writes entity field values to the storage.
ContentEntityNullStorage::getQueryServiceName function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Gets the name of the service for the query for this entity storage.
ContentEntityNullStorage::has function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Determines if this entity already exists in storage.
ContentEntityNullStorage::hasData function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Determines if the storage contains any data.
ContentEntityNullStorage::load function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Loads one entity.
ContentEntityNullStorage::loadByProperties function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Load entities by their property values without any access checks.
ContentEntityNullStorage::loadMultiple function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Loads one or more entities.
ContentEntityNullStorage::loadMultipleRevisions function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Loads multiple entity revisions.
ContentEntityNullStorage::loadRevision function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Loads a specific entity revision.
ContentEntityNullStorage::purgeFieldItems function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Removes field items from storage per entity during purge.
ContentEntityNullStorage::readFieldItemsToPurge function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Reads values to be purged for a single field.
ContentEntityNullStorage::save function core/lib/Drupal/Core/Entity/ContentEntityNullStorage.php Saves the entity permanently.
ContentEntityNullStorageTest class core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php Tests ContentEntityNullStorage entity query support.
ContentEntityNullStorageTest.php file core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php
ContentEntityNullStorageTest::$modules property core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php Modules to install.
ContentEntityNullStorageTest::testDeleteThroughImport function core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php Tests deleting a contact form entity via a configuration import.
ContentEntityNullStorageTest::testEntityQuery function core/tests/Drupal/KernelTests/Core/Entity/ContentEntityNullStorageTest.php Tests using entity query with ContentEntityNullStorage.
ContentEntityStorageBase class core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Base class for content entity storage handlers.
ContentEntityStorageBase.php file core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php
ContentEntityStorageBase::$bundleKey property core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php The entity bundle key.
ContentEntityStorageBase::$cacheBackend property core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Cache backend.
ContentEntityStorageBase::$entityFieldManager property core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php The entity field manager service.
ContentEntityStorageBase::$entityTypeBundleInfo property core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php The entity bundle info.
ContentEntityStorageBase::$latestRevisionIds property core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Stores the latest revision IDs for entities.
ContentEntityStorageBase::cleanIds function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Ensures integer entity key values are valid.
ContentEntityStorageBase::create function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Constructs a new entity object, without permanently saving it.
ContentEntityStorageBase::createInstance function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Instantiates a new instance of this entity handler.
ContentEntityStorageBase::createRevision function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Creates a new revision starting off from the specified entity object.
ContentEntityStorageBase::createTranslation function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Constructs a new entity translation object, without permanently saving it.
ContentEntityStorageBase::createWithSampleValues function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Creates an entity with sample field values.
ContentEntityStorageBase::deleteRevision function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Deletes a specific entity revision.
ContentEntityStorageBase::doCreate function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Performs storage-specific creation of entities.
ContentEntityStorageBase::doDelete function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Performs storage-specific entity deletion.
ContentEntityStorageBase::doDeleteFieldItems function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Deletes entity field values from the storage.
ContentEntityStorageBase::doDeleteRevisionFieldItems function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Deletes field values of an entity revision from the storage.
ContentEntityStorageBase::doLoadMultipleRevisionsFieldItems function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Actually loads revision field item values from the storage.
ContentEntityStorageBase::doPostSave function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Performs post save entity processing.
ContentEntityStorageBase::doPreSave function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Performs presave entity processing.
ContentEntityStorageBase::doSave function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Performs storage-specific saving of the entity.
ContentEntityStorageBase::doSaveFieldItems function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php Writes entity field values to the storage.
ContentEntityStorageBase::finalizePurge function core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php

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