function comment_node_delete

Implements hook_node_delete().

Archivo

drupal-7.x/modules/comment/comment.module, line 1321
Enables users to comment on published content.

Código

function comment_node_delete($node) {
  $cids = db_query('SELECT cid FROM {comment} WHERE nid = :nid', array(':nid' => $node->nid))->fetchCol();
  comment_delete_multiple($cids);
  db_delete('node_comment_statistics')->condition('nid', $node->nid)->execute();
}