root / drupal7 / sites / all / modules / ctools / includes / object-cache.cron.inc @ 1e39edcb
1 | 85ad3d82 | Assos Assos | <?php |
---|---|---|---|
2 | |||
3 | /** |
||
4 | * @file |
||
5 | * Contains cron hooks for the object cache tool. |
||
6 | * |
||
7 | * We use this to clean up old object caches. |
||
8 | */ |
||
9 | |||
10 | function ctools_object_cache_cron() { |
||
11 | if (variable_get('ctools_last_cron', 0) < time() - 86400) { |
||
12 | variable_set('ctools_last_cron', time()); |
||
13 | ctools_include('object-cache'); |
||
14 | ctools_object_cache_clean(); |
||
15 | } |
||
16 | } |