function forum_comment_delete
Same name in other branches
- 7.x modules/forum/forum.module \forum_comment_delete()
- 8.9.x core/modules/forum/forum.module \forum_comment_delete()
- 10 core/modules/forum/forum.module \forum_comment_delete()
- 11.x core/modules/forum/forum.module \forum_comment_delete()
Implements hook_ENTITY_TYPE_delete() for comment entities.
File
-
core/
modules/ forum/ forum.module, line 280
Code
function forum_comment_delete(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.