AdminArticleValidate.php 1.1 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 小夏 < 449134904@qq.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\portal\validate;
  12. use think\Validate;
  13. class AdminArticleValidate extends Validate
  14. {
  15. protected $rule = [
  16. 'categories' => 'require',
  17. 'post_title' => 'require',
  18. ];
  19. protected $message = [
  20. 'categories.require' => '请指定文章分类!',
  21. 'post_title.require' => '文章标题不能为空!',
  22. ];
  23. protected $scene = [
  24. // 'add' => ['user_login,user_pass,user_email'],
  25. // 'edit' => ['user_login,user_email'],
  26. ];
  27. }