hook_comment_insert

  1. drupal
    1. 7
Versions
7 hook_comment_insert($comment)

The comment is being inserted.

Parameters

$comment The comment object.

Related topics

Code

drupal/modules/comment/comment.api.php, line 33

<?php
function hook_comment_insert($comment) {
  // Reindex the node when comments are added.
  search_touch_node($comment->nid);
}
?>