-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathOAIMetadataFormatPlugin_EPICUR.inc.php
More file actions
55 lines (44 loc) · 1.29 KB
/
OAIMetadataFormatPlugin_EPICUR.inc.php
File metadata and controls
55 lines (44 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
* @file OAIMetadataFormatPlugin_EPICUR.inc.php
*
* Author: Božana Bokan, Center for Digital Systems (CeDiS), Freie Universität Berlin
* Last update: September 25, 2015
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @package plugins.oaiMetadataFormats.epicur
* @class OAIMetadataFormatPlugin_EPICUR
*
* @brief EPICUR metadata format plugin for OAI.
*/
import('lib.pkp.classes.plugins.OAIMetadataFormatPlugin');
class OAIMetadataFormatPlugin_EPICUR extends OAIMetadataFormatPlugin {
/**
* Get the name of this plugin. The name must be unique within
* its category.
* @return String name of plugin
*/
function getName() {
return 'OAIMetadataFormatPlugin_EPICUR';
}
function getDisplayName() {
return __('plugins.OAIMetadataFormats.epicur.displayName');
}
function getDescription() {
return __('plugins.OAIMetadataFormats.epicur.description');
}
function getFormatClass() {
return 'OAIMetadataFormat_EPICUR';
}
function getMetadataPrefix() {
return 'epicur';
}
function getSchema() {
//return 'http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:1111-2004033116';
return 'http://www.persistent-identifier.de/xepicur/version1.0/xepicur.xsd';
}
function getNamespace() {
return 'urn:nbn:de:1111-2004033116';
}
}
?>