addons.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. return [
  3. 'autoload' => false,
  4. 'hooks' => [
  5. 'app_init' => [
  6. 'epay',
  7. ],
  8. 'config_init' => [
  9. 'nkeditor',
  10. 'third',
  11. ],
  12. 'sms_send' => [
  13. 'smsbao',
  14. ],
  15. 'sms_notice' => [
  16. 'smsbao',
  17. ],
  18. 'sms_check' => [
  19. 'smsbao',
  20. ],
  21. 'user_delete_successed' => [
  22. 'third',
  23. ],
  24. 'user_logout_successed' => [
  25. 'third',
  26. ],
  27. 'module_init' => [
  28. 'third',
  29. ],
  30. 'action_begin' => [
  31. 'third',
  32. ],
  33. 'view_filter' => [
  34. 'third',
  35. ],
  36. ],
  37. 'route' => [
  38. '/third$' => 'third/index/index',
  39. '/third/connect/[:platform]' => 'third/index/connect',
  40. '/third/callback/[:platform]' => 'third/index/callback',
  41. '/third/bind/[:platform]' => 'third/index/bind',
  42. '/third/unbind/[:platform]' => 'third/index/unbind',
  43. ],
  44. 'priority' => [],
  45. ];