You are here

function node_cron in Drupal 6

Same name and namespace in other branches
  1. 8 core/modules/node/node.module \node_cron()
  2. 4 modules/node.module \node_cron()
  3. 5 modules/node/node.module \node_cron()
  4. 7 modules/node/node.module \node_cron()
  5. 9 core/modules/node/node.module \node_cron()

Implementation of hook_cron().

File

modules/node/node.module, line 120
The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.

Code

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