statistics_node_delete

Versions
7
statistics_node_delete($node)

Implements hook_node_delete().

Code

modules/statistics/statistics.module, line 381

<?php
function statistics_node_delete($node) {
  // clean up statistics table when node is deleted
  db_delete('node_counter')
    ->condition('nid', $node->nid)
    ->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.