function Comment::postSave

Same name and namespace in other branches
  1. 9 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::postSave()
  2. 10 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::postSave()
  3. 11.x core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::postSave()

Overrides ContentEntityBase::postSave

File

core/modules/comment/src/Entity/Comment.php, line 162

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.