Kohana_Twig::__isset PHP Method

__isset() public method

Magic method, determines if a variable is set and is not NULL.
public __isset ( $key ) : boolean
return boolean
    public function __isset($key)
    {
        return isset($this->_data[$key]) or isset(Twig::$_global_data[$key]);
    }