function views_plugin_cache_time::cache_expire
Same name in other branches
- 7.x-3.x plugins/views_plugin_cache_time.inc \views_plugin_cache_time::cache_expire()
Overrides views_plugin_cache::cache_expire
File
-
plugins/
views_plugin_cache_time.inc, line 40
Class
- views_plugin_cache_time
- Simple caching of query results for Views displays.
Code
function cache_expire($type) {
if ($lifespan = $this->options[$type . '_lifespan']) {
$cutoff = time() - $lifespan;
return $cutoff;
}
else {
return FALSE;
}
}