You are here

public function EasyRdf_Graph::__get in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Graph.php \EasyRdf_Graph::__get()

Magic method to get a property of the graph

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

Example: $value = $graph->title;

Parameters

string $name The name of the property:

Return value

string A single value for the named property

See also

EasyRdf_Namespace::setDefault()

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Graph.php, line 1613

Class

EasyRdf_Graph
Container for collection of EasyRdf_Resources.

Code

public function __get($name) {
  return $this
    ->get($this->uri, $name);
}