|
Cheetah
|
Public Member Functions | |
| register ($name, &$ref) | |
| & | get ($name, $ignore_error=false) |
| destroy ($name) | |
| exists ($name) | |
| loadArray ($context_array) | |
Registry object that contains information about the current context.
Definition at line 3068 of file HTMLPurifier.standalone.php.
| HTMLPurifier_Context::destroy | ( | $name | ) |
Destroys a variable in the context.
| string | $name | String name |
Definition at line 3119 of file HTMLPurifier.standalone.php.
| HTMLPurifier_Context::exists | ( | $name | ) |
Checks whether or not the variable exists.
| string | $name | String name |
Definition at line 3136 of file HTMLPurifier.standalone.php.
| & HTMLPurifier_Context::get | ( | $name, | |
$ignore_error = false |
|||
| ) |
Retrieves a variable reference from the context.
| string | $name | String name |
| bool | $ignore_error | Boolean whether or not to ignore error |
Definition at line 3100 of file HTMLPurifier.standalone.php.
| HTMLPurifier_Context::loadArray | ( | $context_array | ) |
Loads a series of variables from an associative array
| array | $context_array | Assoc array of variables to load |
Definition at line 3145 of file HTMLPurifier.standalone.php.
| HTMLPurifier_Context::register | ( | $name, | |
| & | $ref | ||
| ) |
Registers a variable into the context.
| string | $name | String name |
| mixed | $ref | Reference to variable to be registered |
Definition at line 3082 of file HTMLPurifier.standalone.php.