source: sipes/modules_contrib/views/plugins/views_plugin_cache_none.inc @ 65dadeb

stableversion-3.0
Last change on this file since 65dadeb was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100644
File size: 315 octetos
Línea 
1<?php
2
3/**
4 * Caching plugin that provides no caching at all.
5 */
6class views_plugin_cache_none extends views_plugin_cache {
7  function cache_start() { /* do nothing */ }
8
9  function summary_title() {
10    return t('None');
11  }
12
13  function cache_get($type) {
14    return FALSE;
15  }
16
17  function cache_set($type) { }
18}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.