rex_fragment::__isset PHP Method

__isset() public method

Magic method to check if a variable is set.
public __isset ( string $name ) : boolean
$name string The name of the variable to check
return boolean
    public function __isset($name)
    {
        return array_key_exists($name, $this->vars);
    }