materio-base-legacy/plugins/views_plugin_cache_none.inc
bachy b20b38f514 first import
Signed-off-by: bachy <git@g-u-i.net>
2013-01-09 10:53:26 +01:00

26 lines
410 B
PHP

<?php
/**
* @file
* Definition of views_plugin_cache_none.
*/
/**
* Caching plugin that provides no caching at all.
*
* @ingroup views_cache_plugins
*/
class views_plugin_cache_none extends views_plugin_cache {
function cache_start() { /* do nothing */ }
function summary_title() {
return t('None');
}
function cache_get($type) {
return FALSE;
}
function cache_set($type) { }
}