mirror of
https://github.com/Karaka-Management/oms-HumanResourceTimeRecording.git
synced 2026-01-11 11:58:47 +00:00
41 lines
1008 B
PHP
Executable File
41 lines
1008 B
PHP
Executable File
<?php
|
|
/**
|
|
* Orange Management
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://orange-management.org
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
return ['HumanResourceTimeRecording' => [
|
|
'Break' => 'Break',
|
|
'CS0' => 'Start',
|
|
'CS1' => 'Pause',
|
|
'CS2' => 'Continue',
|
|
'CS3' => 'End',
|
|
'CT0' => 'Office',
|
|
'CT1' => 'Remote',
|
|
'CT2' => 'Home',
|
|
'CT3' => 'Vacation',
|
|
'CT4' => 'Sick',
|
|
'CT5' => 'On the move',
|
|
'D0' => 'Sunday',
|
|
'D1' => 'Monday',
|
|
'D2' => 'Tuesday',
|
|
'D3' => 'Wednesday',
|
|
'D4' => 'Thursday',
|
|
'D5' => 'Friday',
|
|
'D6' => 'Saturday',
|
|
'Date' => 'Date',
|
|
'End' => 'End',
|
|
'Recordings' => 'Recordings',
|
|
'Start' => 'Start',
|
|
'Status' => 'Status',
|
|
'Total' => 'Total',
|
|
'Type' => 'Type',
|
|
]];
|