event.php 641 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. // 事件定义文件
  3. return [
  4. 'bind' => [
  5. ],
  6. 'listen' => [
  7. //展示活动
  8. 'ShowPromotion' => [
  9. 'addon\bundling\event\ShowPromotion',
  10. ],
  11. 'PromotionType' => [
  12. 'addon\bundling\event\PromotionType',
  13. ],
  14. // 订单营销活动类型
  15. 'OrderPromotionType' => [
  16. 'addon\bundling\event\OrderPromotionType',
  17. ],
  18. // 删除商品(需判断套餐是否存在该商品,存在活动关闭)
  19. 'DeleteGoods' => [
  20. 'addon\bundling\event\DeleteGoods',
  21. ],
  22. ],
  23. 'subscribe' => [
  24. ],
  25. ];