event.php 747 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // 事件定义文件
  3. return [
  4. 'bind' => [
  5. ],
  6. 'listen' => [
  7. //展示活动
  8. 'ShowPromotion' => [
  9. 'addon\pointexchange\event\ShowPromotion',
  10. ],
  11. 'PointexchangeOrderPayNotify' => [
  12. 'addon\pointexchange\event\PointexchangeOrderPayNotify',
  13. ],
  14. 'MemberAccountFromType' => [
  15. 'addon\pointexchange\event\MemberAccountFromType',
  16. ],
  17. 'OrderClose' => [
  18. 'addon\pointexchange\event\OrderClose'
  19. ],
  20. // 订单营销活动类型
  21. 'OrderPromotionType' => [
  22. 'addon\pointexchange\event\OrderPromotionType',
  23. ],
  24. // 优惠券获取来源
  25. 'CouponGetType' => [
  26. 'addon\pointexchange\event\CouponGetType',
  27. ],
  28. ],
  29. 'subscribe' => [
  30. ],
  31. ];