You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
563 B
22 lines
563 B
10 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Islandora module for working with MODS Metadata.
|
||
|
*/
|
||
|
|
||
|
define('ISLANDORA_MODS_NAMESPACE', 'http://www.loc.gov/mods/v3/');
|
||
|
define('ISLANDORA_MODS_NAMESPACE_PREFIX', 'mods');
|
||
|
define('ISLANDORA_MODS_RDF_NAMESPACE', 'http://www.loc.gov/mods/modsrdf/v1#');
|
||
|
define('ISLANDORA_MODS_RDF_NAMESPACE_PREFIX', 'modsrdf');
|
||
|
define('ISLANDORA_MODS_FIELD', 'field_mods');
|
||
|
|
||
|
/**
|
||
|
* Implements hook_rdf_namespaces().
|
||
|
*/
|
||
|
function islandora_mods_rdf_namespaces() {
|
||
|
return array(
|
||
|
ISLANDORA_MODS_RDF_NAMESPACE_PREFIX => ISLANDORA_MODS_RDF_NAMESPACE,
|
||
|
);
|
||
|
}
|