function node_cron
Same name and namespace in other branches
- 6.x drupal-6.x/modules/node/node.module \node_cron()
Implements hook_cron().
Archivo
- drupal-7.x/
modules/ node/ node.module, line 158 - The core that allows content to be submitted to the site. Modules and scripts may programmatically submit nodes using the usual form API pattern.
Código
function node_cron() {
db_delete('history')->condition('timestamp', NODE_NEW_LIMIT, '<')->execute();
}