function forum_comment_update in Drupal 10
Same name and namespace in other branches
- 8 core/modules/forum/forum.module \forum_comment_update()
 - 7 modules/forum/forum.module \forum_comment_update()
 - 9 core/modules/forum/forum.module \forum_comment_update()
 
Implements hook_ENTITY_TYPE_update() for comment entities.
File
- core/
modules/ forum/ forum.module, line 262  - Provides discussion forums.
 
Code
function forum_comment_update(CommentInterface $comment) {
  if ($comment
    ->getCommentedEntityTypeId() == 'node') {
    \Drupal::service('forum.index_storage')
      ->updateIndex($comment
      ->getCommentedEntity());
  }
}