function history_cron in Drupal 9
Same name and namespace in other branches
- 8 core/modules/history/history.module \history_cron()
Implements hook_cron().
File
- core/
modules/ history/ history.module, line 128 - Records which users have read which content.
Code
function history_cron() {
\Drupal::database()
->delete('history')
->condition('timestamp', HISTORY_READ_LIMIT, '<')
->execute();
}