Mailtemplates.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace app\common\validate;
  3. use think\Validate;
  4. /**
  5. * ============================================================================
  6. * DSMall多用户商城
  7. * ============================================================================
  8. * 版权所有 2014-2028 长沙德尚网络科技有限公司,并保留所有权利。
  9. * 网站地址: http://www.csdeshang.com
  10. * ----------------------------------------------------------------------------
  11. * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
  12. * 不允许对程序代码以任何形式任何目的的再发布。
  13. * ============================================================================
  14. * 验证器
  15. */
  16. class Mailtemplates extends Validate
  17. {
  18. protected $rule = [
  19. 'code'=>'require',
  20. 'title'=>'require',
  21. 'content'=>'require',
  22. ];
  23. protected $message = [
  24. 'code.require'=>'编号不能为空',
  25. 'title.require'=>'标题不能为空',
  26. 'content.require'=>'正文不能为空',
  27. ];
  28. protected $scene = [
  29. 'email_tpl_edit' => ['code','title', 'content'],
  30. ];
  31. }