event.php 478 B

12345678910111213141516171819202122232425
  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. 'subscribe' => [
  21. ],
  22. ];