source: sipes/cord/includes/cache-install.inc @ 4b26eb0

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

se agrego el directorio del cord

  • Propiedad mode establecida a 100755
File size: 700 octetos
Línea 
1<?php
2
3/**
4 * A stub cache implementation to be used during the installation
5 * process when database access is not yet available. Because Drupal's
6 * caching system never requires that cached data be present, these
7 * stub functions can short-circuit the process and sidestep the
8 * need for any persistent storage. Obviously, using this cache
9 * implementation during normal operations would have a negative impact
10 * on performance.
11 */
12
13function cache_get($key, $table = 'cache') {
14  return FALSE;
15}
16
17function cache_set($cid, $data, $table = 'cache', $expire = CACHE_PERMANENT, $headers = NULL) {
18  return;
19}
20
21function cache_clear_all($cid = NULL, $table = NULL, $wildcard = FALSE) {
22  return;
23}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.