aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/acm/cache_file.php
diff options
context:
space:
mode:
authorLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-01-11 23:07:30 +0000
committerLudovic Arnaud <ludovic_arnaud@users.sourceforge.net>2003-01-11 23:07:30 +0000
commit4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22 (patch)
tree9760e112423346ea8bc37add2b5252d9c0f9d0b7 /phpBB/includes/acm/cache_file.php
parent85b196b5fe828c127d321527bd625a1727bad4aa (diff)
downloadforums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.tar
forums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.tar.gz
forums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.tar.bz2
forums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.tar.xz
forums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.zip
Implementation of an experimental cache manager.
git-svn-id: file:///svn/phpbb/trunk@3313 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acm/cache_file.php')
-rw-r--r--phpBB/includes/acm/cache_file.php20
1 files changed, 1 insertions, 19 deletions
diff --git a/phpBB/includes/acm/cache_file.php b/phpBB/includes/acm/cache_file.php
index a840274e01..c629bc4aac 100644
--- a/phpBB/includes/acm/cache_file.php
+++ b/phpBB/includes/acm/cache_file.php
@@ -19,10 +19,6 @@
*
***************************************************************************/
-//
-// This class is part of the Advanced Cache Manager
-//
-
class acm
{
var $vars = '';
@@ -90,21 +86,7 @@ class acm
function load($varname, $expire_time = 0)
{
- if (!is_array($this->vars))
- {
- $this->load_cache();
- }
- if (isset($this->vars[$varname]))
- {
- if ($expire_time && time() - $this->vars_ts[$varname] > $expire_time)
- {
- $this->destroy($varname);
- return null;
- }
- return $this->vars[$varname];
- }
-
- return null;
+ return (exists($varname, $expire_time)) ? $this->vars[$varname] : null;
}
function exists($varname, $expire_time = 0)