lithium\template\view\Renderer::__isset()
Magic __isset
method.
Is triggered by calling isset() or empty() on inaccessible properties, and performs
an isset()
check on for keys in the current context
.
Parameters
-
string
$property
The accessed property.
Returns
booleanTrue if set, false otherwise.
Source
public function __isset($property) {
return isset($this->_context[$property]);
}