function Comment::postSave
Overrides ContentEntityBase::postSave
File
-
core/
modules/ comment/ src/ Entity/ Comment.php, line 172
Class
- Comment
- Defines the comment entity class.
Namespace
Drupal\comment\EntityCode
public function postSave(EntityStorageInterface $storage, $update = TRUE) {
parent::postSave($storage, $update);
// Always invalidate the cache tag for the commented entity.
if ($commented_entity = $this->getCommentedEntity()) {
Cache::invalidateTags($commented_entity->getCacheTagsToInvalidate());
}
$this->releaseThreadLock();
// Update the {comment_entity_statistics} table prior to executing the hook.
\Drupal::service('comment.statistics')->update($this);
}