node_cron
- Versions
- 4.6 – 7
node_cron()
Implement hook_cron().
Code
modules/node/node.module, line 178
<?php
function node_cron() {
db_delete('history')
->condition('timestamp', NODE_NEW_LIMIT, '<')
->execute();
}
?>Login or register to post comments 