截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

event.php 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // 事件定义文件
  3. return [
  4. 'bind' => [
  5. ],
  6. 'listen' => [
  7. 'AppInit' => [],
  8. 'HttpRun' => [],
  9. 'HttpEnd' => [],
  10. 'LogLevel' => [],
  11. 'LogWrite' => [],
  12. 'UserStat' => ['app\common\listener\UserStat'], // 记录统计信息(用户访问量)
  13. 'ShopStat' => ['app\common\listener\ShopStat'], // 记录统计信息(访问商铺用户量)
  14. 'Notice' => ['app\common\listener\Notice'], // 通知
  15. 'Footprint' => ['app\common\listener\Footprint'], // 访问足迹
  16. 'AfterCancelOrder' => ['app\common\listener\AfterCancelOrder'], // 取消订单
  17. // swoole 相关事件
  18. 'swoole.start' => ['app\common\listener\websocket\Start'], // 开启
  19. 'swoole.websocket.login' => ['app\common\listener\websocket\Login'], // 登录事件
  20. 'swoole.websocket.chat' => ['app\common\listener\websocket\Chat'], // 对话事件
  21. 'swoole.websocket.transfer' => ['app\common\listener\websocket\Transfer'], // 转接事件
  22. 'swoole.websocket.close' => ['app\common\listener\websocket\Close'], // 关闭事件
  23. 'swoole.websocket.user_online' => ['app\common\listener\websocket\UserOnline'], // 上线事件
  24. 'swoole.websocket.read' => ['app\common\listener\websocket\Read'], // 已读事件
  25. // 订单打印
  26. 'Printer' => ['app\common\listener\Printer'],
  27. // 商品下架或删除, 更新商品收藏状态
  28. 'UpdateCollect' => ['app\common\listener\UpdateCollect'],
  29. ],
  30. 'subscribe' => [
  31. ],
  32. ];