This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/views/plugins/views_plugin_cache_none.inc

18 lines
315 B
PHP

<?php
/**
* Caching plugin that provides no caching at all.
*/
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) { }
}