common.php 554 B

123456789101112131415161718192021
  1. <?php
  2. return [
  3. // ----------------------- APP链接 ----------------------- //
  4. 'links' => [
  5. [
  6. 'title' => '运营笔记',
  7. 'route' => '/plugins/operating_note/index',
  8. 'icon' => '',
  9. 'params' => []
  10. ],
  11. ],
  12. // ----------------------- 事件处理 ----------------------- //
  13. 'events' => [
  14. [
  15. 'event_name' => 'order_pay',
  16. 'listeners' => [
  17. 'addons\OperatingNote\common\listeners\OrderPaidListener',
  18. ]
  19. ],
  20. ],
  21. ];