You are here

public function ContentEntityBase::preSave in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Entity/ContentEntityBase.php \Drupal\Core\Entity\ContentEntityBase::preSave()

Acts on an entity before the presave hook is invoked.

Used before the entity is saved and before invoking the presave hook. Note that in case of translatable content entities this callback is only fired on their current translation. It is up to the developer to iterate over all translations if needed. This is different from its counterpart in the Field API, FieldItemListInterface::preSave(), which is fired on all field translations automatically. @todo Adjust existing implementations and the documentation according to https://www.drupal.org/node/2577609 to have a consistent API.

Parameters

\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.

Overrides Entity::preSave

See also

\Drupal\Core\Field\FieldItemListInterface::preSave()

5 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.
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.
User::preSave in core/modules/user/src/Entity/User.php
Acts on an entity before the presave hook is invoked.
5 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.
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.
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 351
Contains \Drupal\Core\Entity\ContentEntityBase.

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