public function RevisionableInterface::preSaveRevision in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Entity/RevisionableInterface.php \Drupal\Core\Entity\RevisionableInterface::preSaveRevision()
- 10 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.
1 method overrides RevisionableInterface::preSaveRevision()
- ContentEntityBase::preSaveRevision in core/
lib/ Drupal/ Core/ Entity/ ContentEntityBase.php - Acts on a revision before it gets saved.
File
- core/
lib/ Drupal/ Core/ Entity/ RevisionableInterface.php, line 114
Class
- RevisionableInterface
- Provides methods for an entity to support revisions.
Namespace
Drupal\Core\EntityCode
public function preSaveRevision(EntityStorageInterface $storage, \stdClass $record);