drupal_get_rdf_namespaces
- Versions
- 7
drupal_get_rdf_namespaces()
Return a string containing RDF namespaces for the <html> tag of an XHTML page.
Code
includes/common.inc, line 270
<?php
function drupal_get_rdf_namespaces() {
// Serialize the RDF namespaces used in RDFa annotation.
$xml_rdf_namespaces = array();
foreach (module_invoke_all('rdf_namespaces') as $prefix => $uri) {
$xml_rdf_namespaces[] = 'xmlns:' . $prefix . '="' . $uri . '"';
}
return implode("\n ", $xml_rdf_namespaces);
}
?>Login or register to post comments 