mirror of
https://github.com/Karaka-Management/oms-ItemManagement.git
synced 2026-01-19 15:28:40 +00:00
37 lines
647 B
PHP
Executable File
37 lines
647 B
PHP
Executable File
<?php
|
|
/**
|
|
* Karaka
|
|
*
|
|
* PHP Version 8.0
|
|
*
|
|
* @package Modules\ItemManagement\Models
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @link https://karaka.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\ItemManagement\Models;
|
|
|
|
use phpOMS\Stdlib\Base\Enum;
|
|
|
|
/**
|
|
* Permision state enum.
|
|
*
|
|
* @package Modules\ItemManagement\Models
|
|
* @license OMS License 1.0
|
|
* @link https://karaka.app
|
|
* @since 1.0.0
|
|
*/
|
|
abstract class PermissionCategory extends Enum
|
|
{
|
|
public const SALES_ITEM = 1;
|
|
|
|
public const PURCHASE_ITEM = 2;
|
|
|
|
public const STOCK_ITEM = 3;
|
|
|
|
public const ATTRIBUTE = 4;
|
|
}
|