| Commit | Line | Data |
|---|---|---|
| 84536563 | 1 | <?php |
| 84536563 EM |
2 | |
| 3 | /** | |
| 4 | * Caching plugin that provides no caching at all. | |
| 5 | */ | |
| 6 | class views_plugin_cache_none extends views_plugin_cache { | |
| 1e1a660e EM |
7 | function cache_start() { /* do nothing */ } |
| 8 | ||
| 84536563 EM |
9 | function summary_title() { |
| 10 | return t('None'); | |
| 11 | } | |
| 1e1a660e EM |
12 | |
| 13 | function cache_get($type) { | |
| 14 | return FALSE; | |
| 15 | } | |
| 16 | ||
| 17 | function cache_set($type) { } | |
| 84536563 | 18 | } |