mirror of
https://github.com/Karaka-Management/oms-HumanResourceTimeRecording.git
synced 2026-01-26 10:38:42 +00:00
28 lines
640 B
PHP
28 lines
640 B
PHP
<?php declare(strict_types=1);
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 7.4
|
|
*
|
|
* @package Modules\HumanResourceTimeRecording
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
return ['HumanResourceTimeRecording' => [
|
|
'End' => 'End',
|
|
'Start' => 'Start',
|
|
'Status' => 'Status',
|
|
'Type' => 'Type',
|
|
'CT0' => 'Office',
|
|
'CT1' => 'Remote',
|
|
'CT2' => 'Home',
|
|
'CT3' => 'Vacation',
|
|
'CT4' => 'Sick',
|
|
'CS0' => 'Start',
|
|
'CS1' => 'Pause',
|
|
'CS2' => 'On the move',
|
|
'CS3' => 'End',
|
|
]];
|