forked from museum-digital/MDAllowedValueSets
18 lines
452 B
PHP
18 lines
452 B
PHP
<?PHP
|
|
/**
|
|
* Contains a class for controlling the list of available recording types and sources.
|
|
*
|
|
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
|
*/
|
|
declare(strict_types = 1);
|
|
|
|
/**
|
|
* Class containing available units for weights, lengths etc.
|
|
*/
|
|
final class MDAppointmentRecordingSet extends MDValueSet {
|
|
|
|
const AVAILABLE_RECORDING_TYPES = ['video'];
|
|
const EXTERNAL_SOURCES = ['Archive.org' => 'https://archive.org/details/'];
|
|
|
|
}
|