60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'gender' => [
|
|
'male' => 'Male',
|
|
'female' => 'Female',
|
|
'other' => 'Other',
|
|
],
|
|
|
|
'employment_status' => [
|
|
'active' => 'Active',
|
|
'inactive' => 'Inactive',
|
|
'terminated' => 'Terminated',
|
|
'on_leave' => 'On Leave',
|
|
],
|
|
|
|
'vacation_type' => [
|
|
'annual' => 'Annual',
|
|
'marriage' => 'Marriage',
|
|
'study' => 'Study',
|
|
'other' => 'Other',
|
|
],
|
|
|
|
'approval_status' => [
|
|
'pending' => 'Pending',
|
|
'approved' => 'Approved',
|
|
'rejected' => 'Rejected',
|
|
],
|
|
|
|
'document_type' => [
|
|
'passport' => 'Passport',
|
|
'contract' => 'Contract',
|
|
'medical_certificate' => 'Medical Certificate',
|
|
'education_certificate' => 'Education Certificate',
|
|
'other' => 'Other',
|
|
],
|
|
|
|
'bonus_type' => [
|
|
'performance' => 'Performance',
|
|
'holiday' => 'Holiday',
|
|
'retention' => 'Retention',
|
|
'other' => 'Other',
|
|
],
|
|
|
|
'disciplinary_severity' => [
|
|
'low' => 'Low',
|
|
'medium' => 'Medium',
|
|
'high' => 'High',
|
|
],
|
|
|
|
'import_type' => [
|
|
'employees' => 'Employees',
|
|
'vacations' => 'Vacations',
|
|
'bonuses' => 'Bonuses',
|
|
'reports' => 'Disciplinary Reports',
|
|
],
|
|
];
|