| 5 node.module | node_cron() |
| 6 node.module | node_cron() |
| 7 node.module | node_cron() |
| 8 node.module | node_cron() |
Implements hook_cron().
File
- modules/
node/ node.module, line 157 - 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_delete('history')
->condition('timestamp', NODE_NEW_LIMIT, '<')
->execute();
}
Login or register to post comments