public function 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

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

Class

EasyRdf_Resource
Class that represents an RDF resource

Code

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