public function EasyRdf_Graph::__unset

Magic method to delete a property of the graph

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

Example: unset($graph->title);

Parameters

string $name The name of the property:

See also

EasyRdf_Namespace::setDefault()

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Graph.php, line 1623

Class

EasyRdf_Graph
Container for collection of EasyRdf_Resources.

Code

public function __unset($name) {
  return $this
    ->delete($this->uri, $name);
}