You are here

public function views_plugin_cache_none::cache_get in Views (for Drupal 7) 7.3

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

Retrieve data from the cache.

A plugin should override this to provide specialized caching behavior.

Overrides views_plugin_cache::cache_get

File

plugins/views_plugin_cache_none.inc, line 32
Definition of views_plugin_cache_none.

Class

views_plugin_cache_none
Caching plugin that provides no caching at all.

Code

public function cache_get($type) {
  return FALSE;
}