You are here

object-cache.cron.inc in Chaos Tool Suite (ctools) 7

Same filename and directory in other branches
  1. 6 includes/object-cache.cron.inc

Contains cron hooks for the object cache tool.

We use this to clean up old object caches.

File

includes/object-cache.cron.inc
View source
<?php

/**
 * @file
 * Contains cron hooks for the object cache tool.
 *
 * We use this to clean up old object caches.
 */
function ctools_object_cache_cron() {
  if (variable_get('ctools_last_cron', 0) < time() - 86400) {
    variable_set('ctools_last_cron', time());
    ctools_include('object-cache');
    ctools_object_cache_clean();
  }
}

Functions

Namesort descending Description
ctools_object_cache_cron @file Contains cron hooks for the object cache tool.