Same name and namespace in other branches
  1. 8.9.x core/modules/forum/forum.module \forum_comment_insert()
  2. 9 core/modules/forum/forum.module \forum_comment_insert()

Implements hook_ENTITY_TYPE_insert() for comment entities.

File

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

Code

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