29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
*
|
||
|
* - <b>$SETS</b>: An array with key words . List of supported SETs.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
// define all supported sets in your repository
|
||
|
$SETS = array (
|
||
|
array('setSpec'=>'class:activity', 'setName'=>'Activities'),
|
||
|
array('setSpec'=>'class:collection', 'setName'=>'Collections'),
|
||
|
array('setSpec'=>'class:party', 'setName'=>'Parties'),
|
||
|
/*
|
||
|
array('setSpec'=>'math', 'setName'=>'Mathematics') ,
|
||
|
array('setSpec'=>'phys', 'setName'=>'Physics'),
|
||
|
|
||
|
array('setSpec'=>'phdthesis',
|
||
|
'setName'=>'PHD Thesis',
|
||
|
'setDescription'=>'<oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"
|
||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/
|
||
|
http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
|
||
|
<dc:description>This set contains metadata describing
|
||
|
electronic music recordings made during the 1950ies</dc:description>
|
||
|
</oai_dc:dc>')
|
||
|
*/
|
||
|
);
|