23 lines
580 B
PHP
23 lines
580 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\Gestion\Constants;
|
|
abstract class VCalendarPropertyConstant
|
|
{
|
|
const PROPERTY_IS_PRIVATE = "ISPRIVATE";
|
|
const ABSENCE_TYPE = "ABSENCETYPE";
|
|
const RETURN_TO_SIEGE = "RETURNTOSIEGE";
|
|
|
|
|
|
const ABSENCE_TYPES = [
|
|
AbsenceTypeConstant::LEAVE,
|
|
AbsenceTypeConstant::REST,
|
|
AbsenceTypeConstant::DISEASE
|
|
];
|
|
|
|
const ABSENCE_TYPES_KEYS_VALUES = [
|
|
AbsenceTypeConstant::LEAVE => "CONGE",
|
|
AbsenceTypeConstant::REST => "REPOS",
|
|
AbsenceTypeConstant::DISEASE => "MALADIE"
|
|
];
|
|
} |