public function EasyRdf_Graph::primaryTopic

Get the primary topic of the graph

Return value

EasyRdf_Resource The primary topic of the document.

File

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

Class

EasyRdf_Graph
Container for collection of EasyRdf_Resources.

Code

public function primaryTopic($resource = null) {
  $this
    ->checkResourceParam($resource, true);
  if ($resource) {
    return $this
      ->get($resource, 'foaf:primaryTopic|^foaf:isPrimaryTopicOf', 'resource');
  }
  else {
    return null;
  }
}