UnInstall.php 854 B

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