forum_comment_delete

forum_comment_delete(CommentInterface $comment)

Implements hook_ENTITY_TYPE_delete() for comment entities.

File

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

Code

1
2
3
4
5
function forum_comment_delete(CommentInterface $comment) {
  if ($comment->getCommentedEntityTypeId() == 'node') {
    \Drupal::service('forum.index_storage')->updateIndex($comment->getCommentedEntity());
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.