New module 'Views'
This commit is contained in:
parent
31c0889471
commit
740f7d7f30
353 changed files with 44217 additions and 0 deletions
18
sites/all/modules/views/plugins/views_plugin_cache_none.inc
Normal file
18
sites/all/modules/views/plugins/views_plugin_cache_none.inc
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?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) { }
|
||||
}
|
Reference in a new issue