You are here

function forum_comment_delete in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/forum/forum.module \forum_comment_delete()
  2. 7 modules/forum/forum.module \forum_comment_delete()
  3. 9 core/modules/forum/forum.module \forum_comment_delete()

Implements hook_ENTITY_TYPE_delete() for comment entities.

File

core/modules/forum/forum.module, line 280
Provides discussion forums.

Code

function forum_comment_delete(CommentInterface $comment) {
  if ($comment
    ->getCommentedEntityTypeId() == 'node') {
    \Drupal::service('forum.index_storage')
      ->updateIndex($comment
      ->getCommentedEntity());
  }
}