public function EasyRdf_Graph::typeAsResource

Get the resource type of the graph as a EasyRdf_Resource

If the graph has multiple types then the type returned may be arbitrary. This method will return null if the resource has no type.

Return value

object EasyRdf_Resource A type assocated with the resource

File

drupal/core/vendor/easyrdf/easyrdf/lib/EasyRdf/Graph.php, line 1396

Class

EasyRdf_Graph
Container for collection of EasyRdf_Resources.

Code

public function typeAsResource($resource = null) {
  $this
    ->checkResourceParam($resource, true);
  if ($resource) {
    return $this
      ->get($resource, 'rdf:type', 'resource');
  }
  return null;
}