Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/RevisionableInterface.php \Drupal\Core\Entity\RevisionableInterface::preSaveRevision()
  2. 9 core/lib/Drupal/Core/Entity/RevisionableInterface.php \Drupal\Core\Entity\RevisionableInterface::preSaveRevision()

Acts on a revision before it gets saved.

Parameters

EntityStorageInterface $storage: The entity storage object.

object $record: The revision object.

3 calls to RevisionableInterface::preSaveRevision()
BlockContent::preSaveRevision in core/modules/block_content/src/Entity/BlockContent.php
Acts on a revision before it gets saved.
Media::preSaveRevision in core/modules/media/src/Entity/Media.php
Acts on a revision before it gets saved.
Node::preSaveRevision in core/modules/node/src/Entity/Node.php
Acts on a revision before it gets saved.
3 methods override RevisionableInterface::preSaveRevision()
BlockContent::preSaveRevision in core/modules/block_content/src/Entity/BlockContent.php
Acts on a revision before it gets saved.
Media::preSaveRevision in core/modules/media/src/Entity/Media.php
Acts on a revision before it gets saved.
Node::preSaveRevision in core/modules/node/src/Entity/Node.php
Acts on a revision before it gets saved.

File

core/lib/Drupal/Core/Entity/RevisionableInterface.php, line 116

Class

RevisionableInterface
Provides methods for an entity to support revisions.

Namespace

Drupal\Core\Entity

Code

public function preSaveRevision(EntityStorageInterface $storage, \stdClass $record);