blob: 5a426cdee8a14e880bc856a5bcb7da19e86819e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
<?php
/**
* Elgg cache
* The API REST endpoint.
*
* @package Elgg
* @subpackage API
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Marcus Povey <marcus@dushka.co.uk>
* @copyright Curverider Ltd 2008
* @link http://elgg.org/
*/
/**
* @class ElggCache The elgg cache superclass.
* This defines the interface for a cache (wherever that cache is stored).
* @author Marcus Povey <marcus@dushka.co.uk>
*/
abstract class ElggCache
{
/**
* Variables for the cache object.
*
* @var array
*/
private $variables;
/**
* Set the constructor.
*/
function __construct() { $this->variables = array(); }
/**
* Set a cache variable.
*
* @param string $variable
* @param string $value
*/
public function set_variable($variable, $value) { $this->variables[$variable] = $value; }
/**
* Get variables for this cache.
*
* @param string $variable
* @return mixed The variable or null;
*/
public function get_variable($variable)
{
if (isset($this->variables[$variable]))
return $this->variables[$variable];
return null;
}
/**
* Save data in a cache.
*
* @param string $key
* @param string $data
* @return bool
*/
abstract public function save($key, $data);
/**
* Load data from the cache using a given key.
*
* @param string $key
* @return mixed The stored data or false.
*/
abstract public function load($key);
}
?>
|