function taxonomy_xml_rdf_namespaces in Taxonomy import/export via XML 7
Same name and namespace in other branches
- 6.2 rdf_format.inc \taxonomy_xml_rdf_namespaces()
Implements hook_rdf_namespaces().
File
- ./
taxonomy_xml.module, line 187 - Make it possible to import and export taxonomies as XML documents.
Code
function taxonomy_xml_rdf_namespaces() {
return array(
'rdf' => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#',
'owl' => 'http://www.w3.org/2002/07/owl#',
);
}