You are here

function modr8_cron in modr8 5

Same name and namespace in other branches
  1. 6 modr8.module \modr8_cron()
  2. 7 modr8.module \modr8_cron()

Implementation of hook_cron()

.Remove expired moderation log events.

File

./modr8.module, line 306
Easy dedicated content moderation

Code

function modr8_cron() {
  if ($log_clear = variable_get('modr8_log_clear', 0)) {
    db_query('DELETE FROM {modr8_log} WHERE timestamp < %d', time() - $log_clear);
  }
}