You are here

views_plugin_cache_none.inc in Views (for Drupal 7) 6.2

File

plugins/views_plugin_cache_none.inc
View source
<?php

/**
 * Caching plugin that provides no caching at all.
 */
class views_plugin_cache_none extends views_plugin_cache {
  function cache_start() {

    /* do nothing */
  }
  function summary_title() {
    return t('None');
  }
  function cache_get($type) {
    return FALSE;
  }
  function cache_set($type) {
  }

}

Classes

Namesort descending Description
views_plugin_cache_none Caching plugin that provides no caching at all.