node_cron

Definition

node_cron()
modules/node/node.module, line 146

Description

Implementation of hook_cron().

Code

<?php
function node_cron() {
  db_query('DELETE FROM {history} WHERE timestamp < %d', NODE_NEW_LIMIT);
}
?>
 
 

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.