1: | <?php |
2: | |
3: | namespace Aurora\Modules\Calendar\Enums; |
4: | |
5: | class AttendeeStatus extends \Aurora\System\Enums\AbstractEnumeration |
6: | { |
7: | public const Unknown = 0; |
8: | public const Accepted = 1; |
9: | public const Declined = 2; |
10: | public const Tentative = 3; |
11: | |
12: | /** |
13: | * @var array |
14: | */ |
15: | protected $aConsts = array( |
16: | 'Unknown' => self::Unknown, |
17: | 'Accepted' => self::Accepted, |
18: | 'Declined' => self::Declined, |
19: | 'Tentative' => self::Tentative |
20: | ); |
21: | } |
22: |