00001 <?php 00002 00006 class views_plugin_cache_none extends views_plugin_cache { 00007 function cache_start() { /* do nothing */ } 00008 00009 function summary_title() { 00010 return t('None'); 00011 } 00012 00013 function cache_get($type) { 00014 return FALSE; 00015 } 00016 00017 function cache_set($type) { } 00018 }