LinkValidate.php 917 B

123456789101112131415161718192021222324252627
  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\admin\validate;
  12. use think\Validate;
  13. class LinkValidate extends Validate
  14. {
  15. protected $rule = [
  16. 'name' => 'require',
  17. 'url' => 'require',
  18. ];
  19. protected $message = [
  20. 'name.require' => '名称不能为空',
  21. 'url.require' => '链接地址不能为空',
  22. ];
  23. }