Notebook
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

48 lines
873 B

<?php
namespace Plugins\Notebook\Enums;
use App\Enums\EnumStatusTrait;
use Sc\Util\HtmlElement\ElementType\AbstractHtmlElement;
/**
* 笔记协作人员 : 状态
*/
enum NotebookUserEnumStatus :int
{
use EnumStatusTrait;
/**
* 正常
*/
case Normal = 1;
/**
* 剔除
*/
case Eliminate = 2;
/**
* 获取描述
*
* @return string
*/
public function getDes(): string
{
return match ($this) {
self::Normal => '正常',
self::Eliminate => '剔除',
};
}
/**
* 转标签
*/
public function toTag():AbstractHtmlElement
{
return match ($this){
self::Normal => $this->getTag('success', 'light'),
self::Eliminate => $this->getTag('warning', 'light'),
};
}
}