You are here

function views_plugin_cache_time::cache_expire in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 plugins/views_plugin_cache_time.inc \views_plugin_cache_time::cache_expire()
  2. 7.3 plugins/views_plugin_cache_time.inc \views_plugin_cache_time::cache_expire()

Determine the expiration time of the cache type, or NULL if no expire.

Plugins must override this to implement expiration.

Parameters

$type: The cache type, either 'query', 'result' or 'output'.

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;
  }
}