mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-02-09 13:14:07 -06:00
43 lines
1.0 KiB
PHP
43 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* NOTICE OF LICENSE.
|
|
*
|
|
* UNIT3D Community Edition is open-sourced software licensed under the GNU Affero General Public License v3.0
|
|
* The details is bundled with this project in the file LICENSE.txt.
|
|
*
|
|
* @project UNIT3D Community Edition
|
|
*
|
|
* @author HDVinnie <hdinnovations@protonmail.com>
|
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0
|
|
* @credits LokiThor2021 <https://github.com/LokiThor2021>
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums;
|
|
|
|
enum UserGroup: int
|
|
{
|
|
case VALIDATING = 1;
|
|
case GUEST = 2;
|
|
case USER = 3;
|
|
case ADMINISTRATOR = 4;
|
|
case BANNED = 5;
|
|
case MODERATOR = 6;
|
|
case UPLOADER = 7;
|
|
case TRUSTEE = 8;
|
|
case BOT = 9;
|
|
case OWNER = 10;
|
|
case POWERUSER = 11;
|
|
case SUPERUSER = 12;
|
|
case EXTREMEUSER = 13;
|
|
case INSANEUSER = 14;
|
|
case LEECH = 15;
|
|
case VETERAN = 16;
|
|
case SEEDER = 17;
|
|
case ARCHIVIST = 18;
|
|
case INTERNAL = 19;
|
|
case DISABLED = 20;
|
|
case PRUNED = 21;
|
|
}
|