views_plugin_cache_none.inc

  1. 3.x plugins/views_plugin_cache_none.inc
  2. 2.x plugins/views_plugin_cache_none.inc

File

plugins/views_plugin_cache_none.inc
View source
  1. <?php
  2. /**
  3. * Caching plugin that provides no caching at all.
  4. */
  5. class views_plugin_cache_none extends views_plugin_cache {
  6. function cache_start() { /* do nothing */ }
  7. function summary_title() {
  8. return t('None');
  9. }
  10. function cache_get($type) {
  11. return FALSE;
  12. }
  13. function cache_set($type) { }
  14. }