You are here

public function views_plugin_cache_time::cache_set_expire in Views (for Drupal 7) 7.3

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

Determine expiration time in the cache table of the cache type.

Or CACHE_PERMANENT if item shouldn't be removed automatically from cache.

Plugins must override this to implement expiration in the cache table.

Parameters

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

Overrides views_plugin_cache::cache_set_expire

File

plugins/views_plugin_cache_time.inc, line 123
Definition of views_plugin_cache_time.

Class

views_plugin_cache_time
Simple caching of query results for Views displays.

Code

public function cache_set_expire($type) {
  $lifespan = $this
    ->get_lifespan($type);
  if ($lifespan) {
    return time() + $lifespan;
  }
  else {
    return CACHE_PERMANENT;
  }
}