mirror of
https://github.com/Karaka-Management/oms-Calendar.git
synced 2026-01-11 15:18:44 +00:00
39 lines
634 B
PHP
39 lines
634 B
PHP
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Modules\Calendar\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.2
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Calendar\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Frequency type enum.
|
|
*
|
|
* @package Modules\Calendar\Models
|
|
* @license OMS License 2.2
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class FrequencyType extends Enum
|
|
{
|
|
public const ONCE = 1;
|
|
|
|
public const DAILY = 2;
|
|
|
|
public const WEEKLY = 4;
|
|
|
|
public const MONTHLY = 8;
|
|
|
|
public const YEARLY = 16;
|
|
}
|