forum_comment_delete(CommentInterface $comment)
Implements hook_ENTITY_TYPE_delete() for comment entities.
File
- core/modules/forum/forum.module, line 279
- Provides discussion forums.
Code
function forum_comment_delete(CommentInterface $comment) {
if ($comment->getCommentedEntityTypeId() == 'node') {
\Drupal::service('forum.index_storage')->updateIndex($comment->getCommentedEntity());
}
}
Please login to continue.