summaryrefslogtreecommitdiff
path: root/modules/rdf/tests/rdf_test.module
blob: c133a33eb3b29cce744a23fe3cfb2ffe525a024f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php

/**
 * @file
 * Test API interaction with the RDF module.
 */

/**
 * Implements hook_rdf_mapping().
 */
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'),
      ),
    ),
  );
}

/**
 * Implements hook_rdf_namespaces().
 */
function rdf_test_rdf_namespaces() {
  return array(
    'dc'       => 'http://purl.org/conflicting/namespace',
    'foaf'     => 'http://xmlns.com/foaf/0.1/',
    'foaf1'    => 'http://xmlns.com/foaf/0.1/',
  );
}