You are here

public function EasyRdf_Resource::reversePropertyUris in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Resource.php \EasyRdf_Resource::reversePropertyUris()

Get a list of the full URIs for the properties that point to this resource.

Return value

array Array of full property URIs

File

vendor/easyrdf/easyrdf/lib/EasyRdf/Resource.php, line 506

Class

EasyRdf_Resource
Class that represents an RDF resource

Code

public function reversePropertyUris() {
  $this
    ->checkHasGraph();
  return $this->graph
    ->reversePropertyUris($this->uri);
}