AlterShareRelation.php 869 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\fenxiao\event;
  11. use addon\fenxiao\model\Fenxiao as FenxiaoModel;
  12. /**
  13. * 活动展示
  14. */
  15. class AlterShareRelation
  16. {
  17. /**
  18. * 用户分享上下级关系
  19. * @param $param
  20. */
  21. public function handle($param)
  22. {
  23. $fenxiao_model = new FenxiaoModel();
  24. return $fenxiao_model->bindRelation([
  25. 'site_id' => $param['site_id'],
  26. 'member_id' => $param['member_id'],
  27. 'action' => 'alter_share_relation',
  28. ]);
  29. }
  30. }