forum_comment_insert

forum_comment_insert(CommentInterface $comment)

Implements hook_ENTITY_TYPE_insert() for comment entities.

File

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

Code

function forum_comment_insert(CommentInterface $comment) {
  if ($comment->getCommentedEntityTypeId() == 'node') {
    \Drupal::service('forum.index_storage')->updateIndex($comment->getCommentedEntity());
  }
}
doc_Drupal
2016-10-29 09:17:16
Comments
Leave a Comment

Please login to continue.