Add controlled lists of recording types and external hosting options

This commit is contained in:
2021-03-12 20:35:49 +01:00
parent 1abb36691f
commit 77ae0327c1
3 changed files with 53 additions and 1 deletions

View 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',
];
}