function tracker_comment_insert
Same name in other branches
- 9 core/modules/tracker/tracker.module \tracker_comment_insert()
- 10 core/modules/tracker/tracker.module \tracker_comment_insert()
- 11.x core/modules/tracker/tracker.module \tracker_comment_insert()
Implements hook_ENTITY_TYPE_insert() for comment entities.
File
-
core/
modules/ tracker/ tracker.module, line 232
Code
function tracker_comment_insert(CommentInterface $comment) {
if ($comment->getCommentedEntityTypeId() == 'node' && $comment->isPublished()) {
_tracker_add($comment->getCommentedEntityId(), $comment->getOwnerId(), $comment->getChangedTime());
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.