function EntityBase::postSave
Overrides EntityInterface::postSave
20 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.
- 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.
- 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.
12 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.
- 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.
File
-
core/
lib/ Drupal/ Core/ Entity/ EntityBase.php, line 406
Class
- EntityBase
- Defines a base entity class.
Namespace
Drupal\Core\EntityCode
public function postSave(EntityStorageInterface $storage, $update = TRUE) {
$this->invalidateTagsOnSave($update);
}