Files
exceptions
l18n
src
classes
enums
MDActorVariantTypesSet.php
MDAppointmentAttendanceModeSet.php
MDAppointmentContributorsSet.php
MDAppointmentRecordingSet.php
MDAppointmentStatusSet.php
MDBlockedMailserverSet.php
MDCloserLocationTypesSet.php
MDColorsSet.php
MDConservationReportTypeSet.php
MDConservationStatusSet.php
MDCurrenciesSet.php
MDDataHistorySubjectsSet.php
MDDisposalMethodSet.php
MDEntryTypesSet.php
MDEventsSet.php
MDExhibitionContributorsSet.php
MDExternalHostingSet.php
MDGenderSet.php
MDLanguagesSet.php
MDLicensesSet.php
MDLoanTypesSet.php
MDMarkingTypesSet.php
MDMeasurementUnitInterface.php
MDNodaRepositoriesSet.php
MDObjectFormSet.php
MDObjectPositionsSet.php
MDObjectPublicationBackgrounds.php
MDObjectStatusSet.php
MDObjectSyndicationSet.php
MDPhoneTypesSet.php
MDPlacetypesSet.php
MDPodcastContributorsSet.php
MDProcessTypesSet.php
MDRecordingTypesSet.php
MDRequirementsSet.php
MDResearchStatusSet.php
MDSourceType.php
MDSourceTypeSet.php
MDSpaceAccessStatusSet.php
MDSpaceTypesSet.php
MDTitleTypesSet.php
MDUnitsSet.php
MDValueSet.php
tests
.git.template
.gitattributes
.gitmodules
LICENSE
README.md
phpstan.neon
MDAllowedValueSets/src/MDDataHistorySubjectsSet.php

31 lines
670 B
PHP

<?PHP
/**
* Contains a class for controlling the list of available subjects for data history writing.
* Deprecated: Replaced by MusdbBaseEntry in musdb.
*
* @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 {
public const AVAILABLE_SUBJECTS = [
'appointment',
'collection',
'contact',
'exhibition',
'literature',
'loan',
'museum',
'object',
'podcast',
'podcast_episode',
'series',
'user',
];
}