ProductSubscribe.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace crmeb\subscribes;
  3. /**
  4. * 商品事件
  5. * Class ProductSubscribe
  6. * @package crmeb\subscribes
  7. */
  8. class ProductSubscribe
  9. {
  10. public function handle()
  11. {
  12. }
  13. /**
  14. * 加入购物车成功之后
  15. * @param $event
  16. */
  17. public function onStoreProductSetCartAfter($event)
  18. {
  19. list($cartInfo, $userInfo) = $event;
  20. //$cartInfo 购物车信息
  21. //$userInfo 用户信息
  22. }
  23. /**
  24. * 用户操作商品添加事件 用户点赞商品 用户收藏商品
  25. * @param $event
  26. */
  27. public function onStoreProductUserOperationConfirmAfter($event){
  28. list($category, $productId, $relationType, $uid) = $event;
  29. //$category 商品类型
  30. //$productId 商品编号
  31. //$relationType 操作类型 like 点赞 collect 收藏
  32. //$uid 用户编号
  33. }
  34. /**
  35. * 用户操作商品取消事件 用户取消点赞商品 用户取消收藏商品
  36. * @param $event
  37. */
  38. public function onStoreProductUserOperationCancelAfter($event){
  39. list($category, $productId, $relationType, $uid) = $event;
  40. //$category 商品类型
  41. //$productId 商品编号
  42. //$relationType 操作类型 like 点赞 collect 收藏
  43. //$uid 用户编号
  44. }
  45. }