function ContentEntityBase::preSave

Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::preSave()
  2. 10 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::preSave()
  3. 11.x core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::preSave()

Overrides EntityBase::preSave

3 calls to ContentEntityBase::preSave()
Comment::preSave in core/modules/comment/src/Entity/Comment.php
Acts on an entity before the presave hook is invoked.
Term::preSave in core/modules/taxonomy/src/Entity/Term.php
Acts on an entity before the presave hook is invoked.
User::preSave in core/modules/user/src/Entity/User.php
Acts on an entity before the presave hook is invoked.
3 methods override ContentEntityBase::preSave()
Comment::preSave in core/modules/comment/src/Entity/Comment.php
Acts on an entity before the presave hook is invoked.
Term::preSave in core/modules/taxonomy/src/Entity/Term.php
Acts on an entity before the presave hook is invoked.
User::preSave in core/modules/user/src/Entity/User.php
Acts on an entity before the presave hook is invoked.

File

core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 439

Class

ContentEntityBase
Implements Entity Field API specific enhancements to the Entity class.

Namespace

Drupal\Core\Entity

Code

public function preSave(EntityStorageInterface $storage) {
  // An entity requiring validation should not be saved if it has not been
  // actually validated.
  if ($this->validationRequired && !$this->validated) {
    // @todo Make this an assertion in https://www.drupal.org/node/2408013.
    throw new \LogicException('Entity validation was skipped.');
  }
  else {
    $this->validated = FALSE;
  }
  parent::preSave($storage);
}

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