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

44 lines
1.4 KiB
PHTML

3 years ago
<?php
// +----------------------------------------------------------------------
// | 海豚PHP框架 [ DolphinPHP ]
// +----------------------------------------------------------------------
// | 版权所有 2016~2017 河源市卓锐科技有限公司 [ http://www.zrthink.com ]
// +----------------------------------------------------------------------
// | 官方网站: http://dolphinphp.com
// +----------------------------------------------------------------------
// | 开源协议 ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
namespace app\cms\validate;
use think\Validate;
/**
* 菜单验证器
* @package app\cms\validate
* @author 蔡伟明 <314013107@qq.com>
*/
class Menu extends Validate
{
// 定义验证规则
protected $rule = [
'column|栏目' => 'requireIf:type,0',
'page|单页' => 'requireIf:type,1',
'title|菜单标题' => 'requireIf:type,2|length:1,30',
'url|URL' => 'requireIf:type,2',
];
// 定义验证提示
protected $message = [
'column.requireIf' => '请选择栏目',
'page.requireIf' => '请选择单页',
'title.requireIf' => '菜单标题不能为空',
'url.requireIf' => 'URL不能为空'
];
// 定义验证场景
protected $scene = [
'title' => ['title']
];
}