protected SqlContentEntityStorage::deleteRevisionFromDedicatedTables(ContentEntityInterface $entity)
Deletes values of fields in dedicated tables for all revisions.
Parameters
\Drupal\Core\Entity\ContentEntityInterface $entity: The entity. It must have a revision ID.
File
- core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php, line 1319
Class
- SqlContentEntityStorage
- A content entity database storage implementation.
Namespace
Drupal\Core\Entity\Sql
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | protected function deleteRevisionFromDedicatedTables(ContentEntityInterface $entity ) { $vid = $entity ->getRevisionId(); if (isset( $vid )) { $table_mapping = $this ->getTableMapping(); foreach ( $this ->entityManager->getFieldDefinitions( $entity ->getEntityTypeId(), $entity ->bundle()) as $field_definition ) { $storage_definition = $field_definition ->getFieldStorageDefinition(); if (! $table_mapping ->requiresDedicatedTableStorage( $storage_definition )) { continue ; } $revision_name = $table_mapping ->getDedicatedRevisionTableName( $storage_definition ); $this ->database-> delete ( $revision_name ) ->condition( 'entity_id' , $entity ->id()) ->condition( 'revision_id' , $vid ) ->execute(); } } } |
Please login to continue.