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