public function EasyRdf_Resource::__isset

Magic method to check if a property exists

Note that only properties in the default namespace can be accessed in this way.

Example: if (isset($resource->title)) { blah(); }

Parameters

string $name The name of the property:

See also

EasyRdf_Namespace::setDefault()

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Resource.php, line 673

Class

EasyRdf_Resource
Class that represents an RDF resource

Code

public function __isset($name) {
  return $this->graph
    ->hasProperty($this->uri, $name);
}