Files
sentcms/app/http/validate/Category.php
tensent 2f4386f196 1、修复几处bug;
2、完善内容管理中的细节功能
2020-04-03 17:14:49 +08:00

31 lines
899 B
PHP

<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace app\http\validate;
use think\Validate;
/**
* 菜单验证
*/
class Category extends Validate{
protected $rule = [
'title' => 'require',
'model_id' => 'require'
];
protected $message = [
'title.require' => '栏目名称必须',
'model_id.require' => '绑定模型必须',
];
protected $scene = [
'adminadd' => ['title', 'model_id'],
'adminedit' => ['title', 'model_id'],
];
}