12345678910111213141516171819202122232425262728293031323334 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: 小夏 < 449134904@qq.com>
- // | Date: 2019/01/11
- // | Time:下午 03:24
- // +----------------------------------------------------------------------
- namespace api\portal\validate;
- use think\Validate;
- class ArticlesValidate extends Validate
- {
- protected $rule = [
- 'post_title' => 'require',
- 'post_content' => 'require',
- 'categories' => 'require'
- ];
- protected $message = [
- 'post_title.require' => '文章标题不能为空',
- 'post_content.require' => '内容不能为空',
- 'categories.require' => '文章分类不能为空'
- ];
- protected $scene = [
- 'article' => [ 'post_title' , 'post_content' , 'categories' ],
- 'page' => ['post_title']
- ];
- }
|