public function Entity::postSave in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Entity/Entity.php \Drupal\Core\Entity\Entity::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
17 calls to Entity::postSave()
- Block::postSave in core/
modules/ block/ src/ Entity/ Block.php - Acts on a saved entity before the insert or update hook is invoked.
- BlockContent::postSave in core/
modules/ block_content/ src/ Entity/ BlockContent.php - Acts on a saved entity before the insert or update hook is invoked.
- Comment::postSave in core/
modules/ comment/ src/ Entity/ Comment.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.
20 methods override Entity::postSave()
- Block::postSave in core/
modules/ block/ src/ Entity/ Block.php - Acts on a saved entity before the insert or update hook is invoked.
- BlockContent::postSave in core/
modules/ block_content/ src/ Entity/ BlockContent.php - Acts on a saved entity before the insert or update hook is invoked.
- Comment::postSave in core/
modules/ comment/ src/ Entity/ Comment.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.
File
- core/
lib/ Drupal/ Core/ Entity/ Entity.php, line 420 - Contains \Drupal\Core\Entity\Entity.
Class
- Entity
- Defines a base entity class.
Namespace
Drupal\Core\EntityCode
public function postSave(EntityStorageInterface $storage, $update = TRUE) {
$this
->invalidateTagsOnSave($update);
}