rdf_test_namespaces.module in Drupal 8
Same filename and directory in other branches
Test the namespace registration functionality.
File
core/modules/rdf/tests/rdf_test_namespaces/rdf_test_namespaces.moduleView source
<?php
/**
* @file
* Test the namespace registration functionality.
*/
/**
* Implements hook_rdf_namespaces().
*/
function rdf_test_namespaces_rdf_namespaces() {
return [
'foaf' => 'http://xmlns.com/foaf/0.1/',
'foaf1' => 'http://xmlns.com/foaf/0.1/',
];
}
Functions
Name | Description |
---|---|
rdf_test_namespaces_rdf_namespaces | Implements hook_rdf_namespaces(). |