event.php 591 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. // 事件定义文件
  3. return [
  4. 'bind' => [
  5. ],
  6. 'listen' => [
  7. //展示活动
  8. 'ShowPromotion' => [
  9. 'addon\coupon\event\ShowPromotion',
  10. ],
  11. //优惠券自动关闭
  12. 'CronCouponEnd' => [
  13. 'addon\coupon\event\CronCouponEnd',
  14. ],
  15. // 优惠券活动定时结束
  16. 'CronCouponTypeEnd' => [
  17. 'addon\coupon\event\CronCouponTypeEnd',
  18. ],
  19. //统计写入
  20. 'AddStat' => [
  21. 'addon\coupon\event\AddStat',
  22. ]
  23. ],
  24. 'subscribe' => [
  25. ],
  26. ];