comment_node_insert

Versions
7
comment_node_insert($node)

Implement hook_node_insert().

Code

modules/comment/comment.module, line 1124

<?php
function comment_node_insert($node) {
  db_insert('node_comment_statistics')
    ->fields(array(
      'nid' => $node->nid,
      'cid' => 0,
      'last_comment_timestamp' => $node->changed,
      'last_comment_name' => NULL,
      'last_comment_uid' => $node->uid,
      'comment_count' => 0,
    ))
    ->execute();
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.