function rdf_example_rdf_namespaces

Implements hook_rdf_namespaces().

This hook should be used to define any prefixes used by this module that are not already defined in core by rdf_rdf_namespaces.

See also

hook_rdf_namespaces()

Related topics

File

rdf_example/rdf_example.module, line 61

Code

function rdf_example_rdf_namespaces() {
    return array(
        // Google's namespace for their custom vocabularies.
'v' => 'http://rdf.data-vocabulary.org/#',
    );
}