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