12345678910111213141516171819202122232425 |
- <?php
- class views_plugin_cache_none extends views_plugin_cache {
- function cache_start() { }
- function summary_title() {
- return t('None');
- }
- function cache_get($type) {
- return FALSE;
- }
- function cache_set($type) { }
- }
|