// Fixed revision 13573

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13677 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
bMancone
2012-02-28 13:13:47 +00:00
parent 76bdddb952
commit 5d06b01a59
14 changed files with 85 additions and 45 deletions
+6
View File
@@ -307,6 +307,11 @@ abstract class CacheCore
return isset(Cache::$local[$key]) ? Cache::$local[$key] : null;
}
public static function retrieveAll()
{
return Cache::$local;
}
public static function isStored($key)
{
return isset(Cache::$local[$key]);
@@ -324,4 +329,5 @@ abstract class CacheCore
else
unset(Cache::$local[$key]);
}
}