2022-05-31 22:01:51 +08:00

27 lines
758 B
PHP
Raw 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
/**
* @copyright Copyright (c) 2021 勾股工作室
* @license https://opensource.org/licenses/Apache-2.0
* @link https://www.gougucms.com
*/
namespace app\admin\validate;
use think\Validate;
class ConfCheck extends Validate
{
protected $rule = [
'title' => 'require|unique:config,title^status',
'name' => 'require|alphaDash|unique:config,name^status',
];
protected $message = [
'title.require' => '配置名称不能为空',
'title.unique' => '同样的配置名称已经存在',
'name.require' => '配置标识不能为空',
'name.alphaDash' => '配置标识只能是字母和数字下划线_及破折号-',
'name.unique' => '同样的配置标识已经存在',
];
}