function tracker_comment_update

Same name and namespace in other branches
  1. 7.x modules/tracker/tracker.module \tracker_comment_update()
  2. 9 core/modules/tracker/tracker.module \tracker_comment_update()
  3. 8.9.x core/modules/tracker/tracker.module \tracker_comment_update()
  4. 11.x core/modules/tracker/tracker.module \tracker_comment_update()

Implements hook_ENTITY_TYPE_update() for comment entities.

File

core/modules/tracker/tracker.module, line 174

Code

function tracker_comment_update(CommentInterface $comment) {
  if ($comment->getCommentedEntityTypeId() == 'node') {
    if ($comment->isPublished()) {
      _tracker_add($comment->getCommentedEntityId(), $comment->getOwnerId(), $comment->getChangedTime());
    }
    else {
      _tracker_remove($comment->getCommentedEntityId(), $comment->getOwnerId(), $comment->getChangedTime());
    }
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.