Abstract output escaping decorator class for "getter" objects.
Method Summary
-
mixed
get(, )
Returns the escaped value associated with the key supplied.
-
mixed
getRaw()
Returns the raw, unescaped value associated with the key supplied.
escape , getRawValue , __construct , __get
Method Details
-
Returns the escaped value associated with the key supplied.
Typically (using this implementation) the raw value is obtained using the
{@link getRaw()} method, escaped and the result returned.
returns The escaped value
-
Returns the raw, unescaped value associated with the key supplied.
The key might be an index into an array or a value to be passed to the
decorated object's get() method.
returns The value
|