function tracker_comment_publish
Implements hook_comment_publish().
This actually handles the insert and update of published nodes since comment_save() calls hook_comment_publish() for all published comments.
Archivo
- drupal-7.x/
modules/ tracker/ tracker.module, line 222 - Tracks recent content posted by a user or users.
Código
function tracker_comment_publish($comment) {
_tracker_add($comment->nid, $comment->uid, $comment->changed);
}