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