summaryrefslogtreecommitdiff
path: root/includes/cache-install.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-09-13 15:09:45 +0000
committerDries Buytaert <dries@buytaert.net>2009-09-13 15:09:45 +0000
commitb5cee8fe4945c0ebdc621f82992aa9b4eb698b0c (patch)
treecd9d3c1b7942ebc5e4bc8e0d8c63d4ea8f5a3518 /includes/cache-install.inc
parent4c49bf4a56fc489cf77ffeda493b4f2d13e25c8e (diff)
downloadbrdo-b5cee8fe4945c0ebdc621f82992aa9b4eb698b0c.tar.gz
brdo-b5cee8fe4945c0ebdc621f82992aa9b4eb698b0c.tar.bz2
- Patch #576096 by CorniI: use the new cache API.
Diffstat (limited to 'includes/cache-install.inc')
-rw-r--r--includes/cache-install.inc26
1 files changed, 15 insertions, 11 deletions
diff --git a/includes/cache-install.inc b/includes/cache-install.inc
index f342019f7..3ab41410d 100644
--- a/includes/cache-install.inc
+++ b/includes/cache-install.inc
@@ -10,19 +10,23 @@
* implementation during normal operations would have a negative impact
* on performance.
*/
+class DrupalFakeCache implements DrupalCacheInterface {
+ function __construct($bin) {
+ }
-function cache_get($key, $table = 'cache') {
- return FALSE;
-}
+ function get($cid) {
+ return FALSE;
+ }
-function cache_get_multiple(array &$cids, $bin = 'cache') {
- return array();
-}
+ function getMultiple(&$cids) {
+ return array();
+ }
-function cache_set($cid, $data, $table = 'cache', $expire = CACHE_PERMANENT, $headers = NULL) {
- return;
-}
-function cache_clear_all($cid = NULL, $table = NULL, $wildcard = FALSE) {
- return;
+ function set($cid, $data, $expire = CACHE_PERMANENT, array $headers = NULL) {
+ }
+
+ function clear($cid = NULL, $wildcard = FALSE) {
+ }
+
}