Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ContentEntityBase.php

function ContentEntityBase::preSave

Overrides EntityBase::preSave

16 calls to ContentEntityBase::preSave()
Comment::preSave in core/modules/comment/src/Entity/Comment.php
Acts on an entity before the presave hook is invoked.
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.
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.

... 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);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal