Add MDConcCloserLocationTypes for controlling closer location types

This commit is contained in:
Joshua Ramon Enslin 2022-07-13 17:04:15 +02:00
parent 1d516a9916
commit 827d7c465b
Signed by: jrenslin
GPG Key ID: 46016F84501B70AE

View File

@ -0,0 +1,36 @@
<?PHP
/**
* Constains lists for resolving literal closer location types to the expected
* ones.
*
* @author Joshua Ramon Enslin <joshua@museum-digital.de>
*/
declare(strict_types = 1);
/**
* Provides lists for categorizing spelled out closer location types.
*/
final class MDConcCloserLocationTypes {
const LOCATION_TYPES_VERBOSE = [
# Place of recording
"" => "0",
"0" => "0",
# Place of recording
"1" => "1",
"Place of recording" => "1",
# Finding place
"2" => "2",
"Fundort" => "2",
"Place of discovery" => "2",
# Former place
"3" => "3",
"Former place" => "3",
];
}