You are here

rdf_conflicting_namespaces.module in Zircon Profile 8

Test the namespace registration functionality.

File

core/modules/rdf/tests/rdf_conflicting_namespaces/rdf_conflicting_namespaces.module
View source
<?php

/**
 * @file
 * Test the namespace registration functionality.
 */

/**
 * Implements hook_rdf_namespaces().
 */
function rdf_conflicting_namespaces_rdf_namespaces() {
  return array(
    'dc' => 'http://purl.org/conflicting/namespace',
  );
}