Thanasoft-H2F/gestion/lib/Constants/VCalendarPropertyConstant.php
2025-04-17 17:05:17 +03:00

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"
];
}