Habari\Block::__isset PHP Method

__isset() public method

Overrides QueryRecord __isset, returns whether this Block has the named data. Falls back to QueryRecord's __isset.
public __isset ( string $name ) : boolean
$name string The name of the parameter
return boolean True if the value is set, false if not
    public function __isset($name)
    {
        return isset($this->data_values[$name]) || parent::__isset($name);
    }