popsu-d7/sites/all/modules/ctools/includes/object-cache.cron.inc
Bachir Soussi Chiadmi 1bc61b12ad first import
2015-04-08 11:40:19 +02:00

17 lines
345 B
PHP

<?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();
}
}