function ContentEntityBase::preSave

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::preSave()
  2. 8.9.x 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

8 calls to ContentEntityBase::preSave()
Comment::preSave in core/modules/comment/src/Entity/Comment.php
Acts on an entity before the presave hook is invoked.
File::preSave in core/modules/file/src/Entity/File.php
Acts on an entity before the presave hook is invoked.
Media::preSave in core/modules/media/src/Entity/Media.php
Acts on an entity before the presave hook is invoked.
MenuLinkContent::preSave in core/modules/menu_link_content/src/Entity/MenuLinkContent.php
Acts on an entity before the presave hook is invoked.
Node::preSave in core/modules/node/src/Entity/Node.php
Acts on an entity before the presave hook is invoked.

... See full list

8 methods override ContentEntityBase::preSave()
Comment::preSave in core/modules/comment/src/Entity/Comment.php
Acts on an entity before the presave hook is invoked.
File::preSave in core/modules/file/src/Entity/File.php
Acts on an entity before the presave hook is invoked.
Media::preSave in core/modules/media/src/Entity/Media.php
Acts on an entity before the presave hook is invoked.
MenuLinkContent::preSave in core/modules/menu_link_content/src/Entity/MenuLinkContent.php
Acts on an entity before the presave hook is invoked.
Node::preSave in core/modules/node/src/Entity/Node.php
Acts on an entity before the presave hook is invoked.

... See full list

File

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

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) {
        throw new \LogicException('Entity validation is required, but 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.