16 lines
370 B
PHP
16 lines
370 B
PHP
|
<?PHP
|
||
|
declare(strict_types = 1);
|
||
|
$space_types = array (
|
||
|
'building' => 'Building',
|
||
|
'depot' => 'Depot room',
|
||
|
'utility_room' => 'Utility room',
|
||
|
'exhibition_room' => 'Exhibition room',
|
||
|
'display_cabinet' => 'Display cabinet',
|
||
|
'shelf' => 'Shelf',
|
||
|
'box' => 'Box',
|
||
|
'folder' => 'Folder',
|
||
|
'office' => 'Office',
|
||
|
'floor' => 'Floor',
|
||
|
'hallway' => 'Hallway',
|
||
|
);
|