function statistics_nodeapi

Implementation of hook_nodeapi().

Archivo

drupal-6.x/modules/statistics/statistics.module, line 316
Logs access statistics for your site.

Código

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);
  }
}