Add controlled lists of recording types and external hosting options
This commit is contained in:
20
src/MDExternalHostingSet.php
Normal file
20
src/MDExternalHostingSet.php
Normal file
@ -0,0 +1,20 @@
|
||||
<?PHP
|
||||
/**
|
||||
* Contains a class for controlling the list of available external sources.
|
||||
*
|
||||
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
||||
*/
|
||||
declare(strict_types = 1);
|
||||
|
||||
/**
|
||||
* Class containing available external sources.
|
||||
*/
|
||||
final class MDExternalHostingSet extends MDValueSet {
|
||||
|
||||
const DEFAULT_EXTERNAL_HOSTING = 'Archive.org';
|
||||
|
||||
const EXTERNAL_SOURCES = [
|
||||
'Archive.org',
|
||||
];
|
||||
|
||||
}
|
Reference in New Issue
Block a user