You are here

function None::cache_get in Views (for Drupal 7) 8.3

Retrieve data from the cache.

A plugin should override this to provide specialized caching behavior.

Overrides CachePluginBase::cache_get

File

lib/Drupal/views/Plugin/views/cache/None.php, line 32
Definition of Drupal\views\Plugin\views\cache\None.

Class

None
Caching plugin that provides no caching at all.

Namespace

Drupal\views\Plugin\views\cache

Code

function cache_get($type) {
  return FALSE;
}