2021-03-25 13:51:35 +01:00
|
|
|
<?PHP
|
|
|
|
/**
|
|
|
|
* Contains a class for controlling the list of available subjects for data history writing.
|
2022-10-22 16:16:30 +02:00
|
|
|
* Deprecated: Replaced by MusdbBaseEntry in musdb.
|
2021-03-25 13:51:35 +01:00
|
|
|
*
|
|
|
|
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
|
|
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class containing available options for data history subjects.
|
|
|
|
*/
|
|
|
|
final class MDDataHistorySubjectsSet extends MDValueSet {
|
|
|
|
|
|
|
|
const AVAILABLE_SUBJECTS = [
|
|
|
|
'appointment',
|
|
|
|
'collection',
|
|
|
|
'contact',
|
|
|
|
'exhibition',
|
|
|
|
'literature',
|
|
|
|
'loan',
|
|
|
|
'museum',
|
|
|
|
'object',
|
|
|
|
'podcast',
|
|
|
|
'podcast_episode',
|
|
|
|
'series',
|
|
|
|
'user',
|
|
|
|
];
|
|
|
|
|
|
|
|
}
|