You are here

public function RDFxRestWSFormatRDFJSON::viewResource in RDF Extensions 7.2

File

./rdfx.restws.formats.inc, line 51

Class

RDFxRestWSFormatRDFJSON

Code

public function viewResource($resourceController, $id) {
  $resource = rdfx_get_rdf_model($resourceController
    ->resource(), $id);
  $serializer = ARC2::getSer('RDFJSON', array(
    'ns' => $resource->ns,
  ));
  return $serializer
    ->getSerializedIndex($resource->index);
}