4 * Registry object that contains information about the current context.
5 * @warning Is a bit buggy when variables are set to null: it thinks
6 * they don't exist! So use false instead, please.
7 * @note Since the variables Context deals with may not be objects,
8 * references are very important here! Do not remove!
10 class HTMLPurifier_Context
14 * Private array that stores the references.
17 private $_storage = array();
20 * Registers a variable into the context.
21 * @param string $name String name
22 * @param mixed $ref Reference to variable to be registered
24 public function register($name, &$ref)
26 if (array_key_exists($name, $this->_storage
)) {
28 "Name $name produces collision, cannot re-register",
33 $this->_storage
[$name] =& $ref;
37 * Retrieves a variable reference from the context.
38 * @param string $name String name
39 * @param bool $ignore_error Boolean whether or not to ignore error
42 public function &get($name, $ignore_error = false)
44 if (!array_key_exists($name, $this->_storage
)) {
47 "Attempted to retrieve non-existent variable $name",
51 $var = null; // so we can return by reference
54 return $this->_storage
[$name];
58 * Destroys a variable in the context.
59 * @param string $name String name
61 public function destroy($name)
63 if (!array_key_exists($name, $this->_storage
)) {
65 "Attempted to destroy non-existent variable $name",
70 unset($this->_storage
[$name]);
74 * Checks whether or not the variable exists.
75 * @param string $name String name
78 public function exists($name)
80 return array_key_exists($name, $this->_storage
);
84 * Loads a series of variables from an associative array
85 * @param array $context_array Assoc array of variables to load
87 public function loadArray($context_array)
89 foreach ($context_array as $key => $discard) {
90 $this->register($key, $context_array[$key]);