You are here

public function EntityBase::postSave in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/EntityBase.php \Drupal\Core\Entity\EntityBase::postSave()

Acts on a saved entity before the insert or update hook is invoked.

Used after the entity is saved, but before invoking the insert or update 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.

Parameters

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

bool $update: TRUE if the entity has been updated, or FALSE if it has been inserted.

Overrides EntityInterface::postSave

11 calls to EntityBase::postSave()
Block::postSave in core/modules/block/src/Entity/Block.php
Acts on a saved entity before the insert or update hook is invoked.
ConfigEntityBundleBase::postSave in core/lib/Drupal/Core/Config/Entity/ConfigEntityBundleBase.php
Acts on a saved entity before the insert or update hook is invoked.
ConfigurableLanguage::postSave in core/modules/language/src/Entity/ConfigurableLanguage.php
Acts on a saved entity before the insert or update hook is invoked.
ContentEntityBase::postSave in core/lib/Drupal/Core/Entity/ContentEntityBase.php
Acts on a saved entity before the insert or update hook is invoked.
EntityViewDisplay::postSave in core/lib/Drupal/Core/Entity/Entity/EntityViewDisplay.php
Acts on a saved entity before the insert or update hook is invoked.

... See full list

14 methods override EntityBase::postSave()
Block::postSave in core/modules/block/src/Entity/Block.php
Acts on a saved entity before the insert or update hook is invoked.
ConfigEntityBundleBase::postSave in core/lib/Drupal/Core/Config/Entity/ConfigEntityBundleBase.php
Acts on a saved entity before the insert or update hook is invoked.
ConfigTest::postSave in core/modules/config/tests/config_test/src/Entity/ConfigTest.php
Acts on a saved entity before the insert or update hook is invoked.
ConfigurableLanguage::postSave in core/modules/language/src/Entity/ConfigurableLanguage.php
Acts on a saved entity before the insert or update hook is invoked.
ContentEntityBase::postSave in core/lib/Drupal/Core/Entity/ContentEntityBase.php
Acts on a saved entity before the insert or update hook is invoked.

... See full list

File

core/lib/Drupal/Core/Entity/EntityBase.php, line 447

Class

EntityBase
Defines a base entity class.

Namespace

Drupal\Core\Entity

Code

public function postSave(EntityStorageInterface $storage, $update = TRUE) {
  $this
    ->invalidateTagsOnSave($update);
}