Files
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

97 lines
2.1 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace crmeb\form\components;
use crmeb\form\BuildInterface;
/**
* 警告框
* Class Alert
* @package crmeb\form\components
*/
class Alert implements BuildInterface
{
//组件名
const NAME = 'alert';
//提示类型
const INFO = 'info';
//成功类型
const SUCCESS = 'success';
//警告类型
const WARNING = 'warning';
//错误类型
const ERROR = 'error';
//组件类型
const TYPE = [self::INFO, self::SUCCESS, self::WARNING, self::ERROR];
/**
* 规则
* @var array
*/
protected $rule = [
'title' => '',
'type' => '',
'closable' => false,
'showIcon' => false
];
/**
* Alert constructor.
* @param string $title
* @param string $type
* @param bool $closable
* @param bool $showIcon
*/
public function __construct(string $title, string $type = '', bool $closable = false, bool $showIcon = false)
{
$this->rule['type'] = in_array($type, self::TYPE) ? $type : '';
$this->rule['title'] = $title . '';
$this->rule['closable'] = $closable;
$this->rule['showIcon'] = $showIcon;
}
/**
* 设置类型
* @param string $type
* @return $this
*/
public function type(string $type)
{
$this->rule['type'] = in_array($type, self::TYPE) ? $type : '';
return $this;
}
/**
* 是否可关闭
* @param bool $closable
* @return $this
*/
public function closable(bool $closable = false)
{
$this->rule['closable'] = $closable;
return $this;
}
/**
* 是否展示图标
* @param bool $showIcon
* @return $this
*/
public function showIcon(bool $showIcon = false)
{
$this->rule['showIcon'] = $showIcon;
return $this;
}
public function toArray(): array
{
$this->rule['name'] = self::NAME;
return $this->rule;
}
}