You are here

public function Comment::postSave in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::postSave()
  2. 9 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::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);
}