ElggData::__isset PHP Method

__isset() public method

Test if property is set either as an attribute or metadata.
public __isset ( string $name ) : boolean
$name string The name of the attribute or metadata.
return boolean
    public function __isset($name)
    {
        return $this->{$name} !== null;
    }