31 lines
		
	
	
		
			958 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			958 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?PHP
 | |
| declare(strict_types = 1);
 | |
| $institution_collection_area_set = array (
 | |
|   'everyday_life' => 'Alltag',
 | |
|   'archaeology' => 'Archäologie',
 | |
|   'architecture' => 'Architektur',
 | |
|   'history_of_mining' => 'Bergbau',
 | |
|   'botany' => 'Botanik',
 | |
|   'history_of_film' => 'Filmgeschichte',
 | |
|   'political_history' => 'Politische Geschichte',
 | |
|   'arts' => 'Kunst',
 | |
|   'applied_arts' => 'Kunstgewerbe',
 | |
|   'agriculture' => 'Landwirtschaft',
 | |
|   'literature' => 'Literatur',
 | |
|   'history_of_medicine' => 'Medizingeschichte',
 | |
|   'military_history' => 'Militärgeschichte',
 | |
|   'mineralogy' => 'Mineralogie',
 | |
|   'music' => 'Musik',
 | |
|   'numismatics' => 'Numismatik',
 | |
|   'paleontology' => 'Paläontologie',
 | |
|   'personalia' => 'Personalia',
 | |
|   'regional_history' => 'Regionalgeschichte',
 | |
|   'religion' => 'Religion',
 | |
|   'technology' => 'Technologie',
 | |
|   'ethnography' => 'Volks- und Völkerkunde',
 | |
|   'zoology' => 'Zoologie',
 | |
| );
 | |
| $institution_basic_category_set = array (
 | |
|   'museum' => 'Museum',
 | |
| );
 |