| 1: | <?php |
| 2: | |
| 3: | namespace Aurora\Modules\Calendar\Enums; |
| 4: | |
| 5: | class PeriodStr extends \Aurora\System\Enums\AbstractEnumeration |
| 6: | { |
| 7: | public const Secondly = 'secondly'; |
| 8: | public const Minutely = 'minutely'; |
| 9: | public const Hourly = 'hourly'; |
| 10: | public const Daily = 'daily'; |
| 11: | public const Weekly = 'weekly'; |
| 12: | public const Monthly = 'monthly'; |
| 13: | public const Yearly = 'yearly'; |
| 14: | |
| 15: | |
| 16: | |
| 17: | |
| 18: | protected $aConsts = array( |
| 19: | 'Secondly' => self::Secondly, |
| 20: | 'Minutely' => self::Minutely, |
| 21: | 'Hourly' => self::Hourly, |
| 22: | 'Daily' => self::Daily, |
| 23: | 'Weekly' => self::Weekly, |
| 24: | 'Monthly' => self::Monthly, |
| 25: | 'Yearly' => self::Yearly |
| 26: | ); |
| 27: | } |
| 28: | |