function rdf_test_rdf_mapping

7.x rdf_test.module rdf_test_rdf_mapping()

Implements hook_rdf_mapping().

File

drupal-7.x/modules/rdf/tests/rdf_test.module, line 11
Test API interaction with the RDF module.

Code

function rdf_test_rdf_mapping() {
  return array(
    array(
      'type' => 'test_entity',
      'bundle' => 'test_bundle',
      'mapping' => array(
        'rdftype' => array('sioc:Post'),
        'title' => array(
          'predicates' => array('dc:title'),
        ),
        'created' => array(
          'predicates' => array('dc:created'),
          'datatype' => 'xsd:dateTime',
          'callback' => 'date_iso8601',
        ),
        'uid' => array(
          'predicates' => array('sioc:has_creator', 'dc:creator'),
          'type' => 'rel',
        ),
        'foobar' => array(
          'predicates' => array('foo:bar'),
        ),
        'foobar1' => array(
          'datatype' => 'foo:bar1type',
          'predicates' => array('foo:bar1'),
        ),
        'foobar_objproperty1' => array(
          'predicates' => array('sioc:has_creator', 'dc:creator'),
          'type' => 'rel',
        ),
        'foobar_objproperty2' => array(
          'predicates' => array('sioc:reply_of'),
          'type' => 'rev',
        ),
      ),
    ),
    array(
      'type' => 'node',
      'bundle' => 'blog',
      'mapping' => array(
        'rdftype' => array('sioct:Weblog'),
      ),
    ),
  );
}