lithium\template\view\Renderer::__isset PHP Method

__isset() public method

Is triggered by calling isset() or empty() on inaccessible properties, and performs an isset() check on for keys in the current context.
public __isset ( string $property ) : boolean
$property string The accessed property.
return boolean True if set, false otherwise.
    public function __isset($property)
    {
        return isset($this->_context[$property]);
    }