Install.php 724 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /**
  3. * Niushop商城系统 - 团队十年电商经验汇集巨献!
  4. * =========================================================
  5. * Copy right 2019-2029 杭州牛之云科技有限公司, 保留所有权利。
  6. * ----------------------------------------------
  7. * 官方网址: https://www.niushop.com
  8. * =========================================================
  9. */
  10. namespace addon\pc\event;
  11. use addon\pc\model\Pc;
  12. /**
  13. * 应用安装
  14. */
  15. class Install
  16. {
  17. /**
  18. * 执行安装
  19. */
  20. public function handle()
  21. {
  22. try{
  23. $pc_model = new Pc();
  24. $pc_model->downloadCsDefault();
  25. return success();
  26. }catch (\Exception $e)
  27. {
  28. return error('', $e->getMessage());
  29. }
  30. }
  31. }