public function EasyRdf_Resource::propertyUris

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

This method will return an empty array if the resource has no properties.

Return value

array Array of full URIs

File

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

Class

EasyRdf_Resource
Class that represents an RDF resource

Code

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