event.php 414 B

12345678910111213141516171819202122232425
  1. <?php
  2. // 事件定义文件
  3. return [
  4. 'bind' => [
  5. ],
  6. 'listen' => [
  7. //展示活动
  8. 'ShowPromotion' => [
  9. 'addon\egg\event\ShowPromotion',
  10. ],
  11. 'PromotionType' => [
  12. 'addon\egg\event\PromotionType',
  13. ],
  14. 'MemberAccountFromType' => [
  15. 'addon\egg\event\MemberAccountFromType',
  16. ]
  17. ],
  18. 'subscribe' => [
  19. ],
  20. ];