ProductSubscribe.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. {
  29. list($category, $productId, $relationType, $uid) = $event;
  30. //$category 产品类型
  31. //$productId 产品编号
  32. //$relationType 操作类型 like 点赞 collect 收藏
  33. //$uid 用户编号
  34. }
  35. /**
  36. * 用户操作产品取消事件 用户取消点赞产品 用户取消收藏产品
  37. * @param $event
  38. */
  39. public function onStoreProductUserOperationCancelAfter($event)
  40. {
  41. list($category, $productId, $relationType, $uid) = $event;
  42. //$category 产品类型
  43. //$productId 产品编号
  44. //$relationType 操作类型 like 点赞 collect 收藏
  45. //$uid 用户编号
  46. }
  47. }