diff options
Diffstat (limited to 'modules/rdf/tests')
-rw-r--r-- | modules/rdf/tests/rdf_test.module | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/rdf/tests/rdf_test.module b/modules/rdf/tests/rdf_test.module index dedd2fd80..0c8c3b2a1 100644 --- a/modules/rdf/tests/rdf_test.module +++ b/modules/rdf/tests/rdf_test.module @@ -54,3 +54,14 @@ function rdf_test_rdf_mapping() { ), ); } + +/** + * 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/', + ); +} |