Add controlled list of conservation status

This commit is contained in:
Joshua Ramon Enslin 2021-10-07 16:08:31 +02:00
parent c3dfdbb5ac
commit 4daf580355
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -0,0 +1,21 @@
<?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 MDConservationStatusSet extends MDValueSet {
const STATUS_LEVELS = [
1 => '',
34 => 'markedBad',
67 => 'markedMedium',
100 => 'markedGood'
];
}