控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Config.php 1.1KB

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Yzncms [ 御宅男工作室 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018 http://yzncms.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 御宅男 <530765310@qq.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | 登录验证
  13. // +----------------------------------------------------------------------
  14. namespace app\admin\validate;
  15. use think\Validate;
  16. class Config extends Validate
  17. {
  18. //定义验证规则
  19. protected $rule = [
  20. 'group|配置分组' => 'require',
  21. 'type|配置类型' => 'require|alpha',
  22. 'title|配置标题' => 'require|chsAlphaNum',
  23. 'name|配置名称' => 'require|regex:^[a-zA-Z]\w{0,39}$|unique:config',
  24. 'listorder|排序' => 'number',
  25. ];
  26. }