/[drupal]/contributions/modules/views/plugins/views_plugin_cache_none.inc
ViewVC logotype

Contents of /contributions/modules/views/plugins/views_plugin_cache_none.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download) (as text)
Wed Jun 3 23:39:52 2009 UTC (5 months, 3 weeks ago) by merlinofchaos
Branch: MAIN
CVS Tags: DRUPAL-6--2-7, DRUPAL-6--2-6, HEAD
Branch point for: DRUPAL-6--2, DRUPAL-7--3
Changes since 1.1: +9 -1 lines
File MIME type: text/x-php
Update and refactor to the caching plugins.
1 <?php
2 // $Id: views_plugin_cache_none.inc,v 1.1 2009/06/02 20:22:20 merlinofchaos Exp $
3
4 /**
5 * Caching plugin that provides no caching at all.
6 */
7 class views_plugin_cache_none extends views_plugin_cache {
8 function cache_start() { /* do nothing */ }
9
10 function summary_title() {
11 return t('None');
12 }
13
14 function cache_get($type) {
15 return FALSE;
16 }
17
18 function cache_set($type) { }
19 }

  ViewVC Help
Powered by ViewVC 1.1.2