19 lines
		
	
	
		
			606 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			606 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?PHP
 | |
| declare(strict_types = 1);
 | |
| $process_types = array (
 | |
|   'project' => 'Projekt',
 | |
|   'grant_application' => 'Förderantrag',
 | |
|   'exhibition' => 'Ausstellung',
 | |
|   'appointment' => 'Veranstaltung',
 | |
|   'loan_incoming' => 'Leihverkehr (eingehend)',
 | |
|   'loan_outgoing' => 'Leihverkehr (ausgehend)',
 | |
|   'employment_ad' => 'Stellenausschreibung',
 | |
|   'purchase' => 'Ankauf',
 | |
|   'deaccession' => 'Deakzession',
 | |
|   'construction' => 'Baumaßnahme',
 | |
|   'pest_control_campaign' => 'Schädlingsbekämpfungs-Kampagne',
 | |
|   'pr_campaign' => 'PR-Kampagne',
 | |
|   'relocation' => 'Umzug',
 | |
|   'discussion' => 'Diskussion / Abstimmung',
 | |
| );
 |