function forum_comment_insert
Implements hook_ENTITY_TYPE_insert() for comment entities.
File
- 
              core/
modules/ forum/ forum.module, line 285  
Code
function forum_comment_insert(CommentInterface $comment) {
  if ($comment->getCommentedEntityTypeId() == 'node') {
    \Drupal::service('forum.index_storage')->updateIndex($comment->getCommentedEntity());
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.