Link.php 618 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. *
  6. *
  7. * ----------------------------------------------------------------------------
  8. *
  9. * 验证器
  10. */
  11. class Link extends Validate
  12. {
  13. protected $rule = [
  14. 'link_sort' => 'number',
  15. 'link_title' => 'require',
  16. ];
  17. protected $message = [
  18. 'link_sort.number' => '排序只能为数字',
  19. 'link_title.require' => '链接名称不能为空',
  20. ];
  21. protected $scene = [
  22. 'add' => ['link_sort', 'link_title'],
  23. 'edit' => ['link_sort', 'link_title'],
  24. ];
  25. }