You are here

public function EasyRdf_Resource::propertyUris in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/easyrdf/easyrdf/lib/EasyRdf/Resource.php \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

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

Class

EasyRdf_Resource
Class that represents an RDF resource

Code

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