Add MDNodaRepositoriesSet to gather linkable noda repositories for tags,
places, actors
This commit is contained in:
parent
276420017d
commit
9801f1a35f
81
src/MDNodaRepositoriesSet.php
Normal file
81
src/MDNodaRepositoriesSet.php
Normal file
|
@ -0,0 +1,81 @@
|
||||||
|
<?PHP
|
||||||
|
/**
|
||||||
|
* Class containing lists of repositories, tags, places, and actors can be linked with.
|
||||||
|
*
|
||||||
|
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
||||||
|
*/
|
||||||
|
declare(strict_types = 1);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class containing lists of repositories, tags, places, and actors can be linked with.
|
||||||
|
*/
|
||||||
|
final class MDNodaRepositoriesSet extends MDValueSet {
|
||||||
|
|
||||||
|
const REPOSITORIES_ACTOR = [
|
||||||
|
'allgemein',
|
||||||
|
'bne',
|
||||||
|
'bnf',
|
||||||
|
'edition humboldt digital',
|
||||||
|
'gnd',
|
||||||
|
'iconclass',
|
||||||
|
'lcsh',
|
||||||
|
'loc',
|
||||||
|
'MBL',
|
||||||
|
'NDB/ADB',
|
||||||
|
'ndl',
|
||||||
|
'ndp-ikmk',
|
||||||
|
'nomisma',
|
||||||
|
'npg',
|
||||||
|
'orcid',
|
||||||
|
'pim',
|
||||||
|
'rkd',
|
||||||
|
'ulan',
|
||||||
|
'viaf',
|
||||||
|
'wikidata',
|
||||||
|
'Wikipedia',
|
||||||
|
];
|
||||||
|
|
||||||
|
const REPOSITORIES_PLACE = [
|
||||||
|
'allgemein',
|
||||||
|
'bne',
|
||||||
|
'bnf',
|
||||||
|
'cona',
|
||||||
|
'gnd',
|
||||||
|
'lcsh',
|
||||||
|
'loc',
|
||||||
|
'ndl',
|
||||||
|
'ndp-ikmk',
|
||||||
|
'nomisma',
|
||||||
|
'npg',
|
||||||
|
'osm',
|
||||||
|
'pleiades',
|
||||||
|
'rkd',
|
||||||
|
'viaf',
|
||||||
|
'wikidata',
|
||||||
|
'Wikipedia',
|
||||||
|
];
|
||||||
|
|
||||||
|
const REPOSITORIES_TAG = [
|
||||||
|
'aat',
|
||||||
|
'ackerbau',
|
||||||
|
'allgemein',
|
||||||
|
'bne',
|
||||||
|
'bnf',
|
||||||
|
'gnd',
|
||||||
|
'grobsystematik',
|
||||||
|
'iconclass',
|
||||||
|
'lcsh',
|
||||||
|
'loc',
|
||||||
|
'mindat.org',
|
||||||
|
'moebeltypologie',
|
||||||
|
'ndl',
|
||||||
|
'nomisma',
|
||||||
|
'npg',
|
||||||
|
'oberbegriffsdatei',
|
||||||
|
'rkd',
|
||||||
|
'viaf',
|
||||||
|
'wikidata',
|
||||||
|
'Wikipedia',
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user