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 