statistics_nodeapi

  1. drupal
    1. 4.7
    2. 5 statistics.module
    3. 6 statistics.module
Versions
4.7 – 6 statistics_nodeapi(&$node, $op, $arg = 0)

Implementation of hook_nodeapi().

Code

modules/statistics.module, line 488

<?php
function statistics_nodeapi(&$node, $op, $arg = 0) {
  switch ($op) {
    case 'delete':
      // clean up statistics table when node is deleted
      db_query('DELETE FROM {node_counter} WHERE nid = %d', $node->nid);
  }
}
?>