Parent Directory
|
Revision Log
|
Revision Graph
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 |