mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-01-11 21:38:40 +00:00
41 lines
680 B
PHP
Executable File
41 lines
680 B
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package Modules\Admin\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Admin\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Permission category enum.
|
|
*
|
|
* @package Modules\Admin\Models
|
|
* @license OMS License 2.0
|
|
* @link https://jingga.app
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class ModuleStatusUpdateType extends Enum
|
|
{
|
|
public const ACTIVATE = 1;
|
|
|
|
public const DEACTIVATE = 2;
|
|
|
|
public const INSTALL = 3;
|
|
|
|
public const UNINSTALL = 4;
|
|
|
|
public const DELETE = 5;
|
|
|
|
public const UPDATE = 6;
|
|
}
|