Epay.php 925 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. namespace addons\epay;
  3. use app\common\library\Menu;
  4. use think\Addons;
  5. use think\Config;
  6. use think\Loader;
  7. /**
  8. * 微信支付宝整合插件
  9. */
  10. class Epay extends Addons
  11. {
  12. /**
  13. * 插件安装方法
  14. * @return bool
  15. */
  16. public function install()
  17. {
  18. return true;
  19. }
  20. /**
  21. * 插件卸载方法
  22. * @return bool
  23. */
  24. public function uninstall()
  25. {
  26. return true;
  27. }
  28. /**
  29. * 插件启用方法
  30. * @return bool
  31. */
  32. public function enable()
  33. {
  34. return true;
  35. }
  36. /**
  37. * 插件禁用方法
  38. * @return bool
  39. */
  40. public function disable()
  41. {
  42. return true;
  43. }
  44. /**
  45. * 添加命名空间
  46. */
  47. public function appInit()
  48. {
  49. //添加支付包的命名空间
  50. Loader::addNamespace('Yansongda', ADDON_PATH . 'epay' . DS . 'library' . DS . 'Yansongda' . DS);
  51. }
  52. }