PlatformSwitch.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. namespace app\common\model;
  3. use library\tools\Data;
  4. use think\Model;
  5. // 用户开关
  6. class PlatformSwitch extends Model
  7. {
  8. /**
  9. * 验证开关状态
  10. * @param $user_id
  11. * @param $id
  12. * @param $type 1论坛
  13. * @return int
  14. */
  15. public static function checkSwitch($user_id,$id,$type){
  16. return self::where(['user_id'=>$user_id,'switch_id'=>$id,'type'=>$type])->value('id') ? 1:0;
  17. }
  18. /**
  19. * @param $user_id
  20. * @param $id
  21. * @param $type 1论坛
  22. */
  23. public static function userSwitch($user_id,$id,$type)
  24. {
  25. $ret_val = 0;
  26. $check_tags = self::checkSwitch($user_id,$id,$type);
  27. if($check_tags) {
  28. self::where(['user_id'=>$user_id,'switch_id'=>$id,'type'=>$type])->delete();
  29. }else{
  30. Data::save('PlatformSwitch',
  31. ['user_id'=>$user_id,'switch_id'=>$id,'type'=>$type],'user_id',
  32. ['user_id'=>$user_id,'switch_id'=>$id,'type'=>$type]);
  33. $ret_val = 1;
  34. }
  35. return $ret_val;
  36. }
  37. }