截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

PcLogic.php 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\admin\logic\wechat;
  20. use app\common\basics\Logic;
  21. use app\common\server\ConfigServer;
  22. class PcLogic extends Logic
  23. {
  24. /**
  25. * 获取PC商城设置
  26. */
  27. public static function getConfig()
  28. {
  29. $config = [
  30. 'is_open' => ConfigServer::get('pc', 'is_open', 1),
  31. 'page' => ConfigServer::get('pc', 'page', 1),
  32. 'page_url' => ConfigServer::get('pc', 'page_url', ''),
  33. 'pc_url' => request()->domain() . '/pc'
  34. ];
  35. return $config;
  36. }
  37. /**
  38. * PC商城设置
  39. */
  40. public static function set($params)
  41. {
  42. ConfigServer::set('pc', 'is_open', $params['is_open']);
  43. ConfigServer::set('pc', 'page', $params['page']);
  44. ConfigServer::set('pc', 'page_url', $params['page_url']);
  45. // 恢复原入口
  46. if(file_exists('./pc/index_lock.html')) {
  47. // 存在则原商城入口被修改过,先清除修改后的入口
  48. unlink('./pc/index.html');
  49. // 恢复原入口
  50. rename('./pc/index_lock.html', './pc/index.html');
  51. // 删除旧的缓存文件
  52. array_map('unlink', glob('../runtime/index/temp/'.'*.php'));
  53. }
  54. // pc商城关闭 且 显示空白页
  55. if($params['is_open'] == 0 && $params['page'] == 1) {
  56. // 变更文件名
  57. rename('./pc/index.html', './pc/index_lock.html');
  58. // 创建新空白文件
  59. $newfile = fopen('./pc/index.html', 'w');
  60. fclose($newfile);
  61. }
  62. // pc商城关闭 且 跳转指定页
  63. if($params['is_open'] == 0 && $params['page'] == 2 && !empty($params['page_url'])) {
  64. // 变更文件名
  65. rename('./pc/index.html', './pc/index_lock.html');
  66. // 创建重定向文件
  67. $newfile = fopen('./pc/index.html', 'w');
  68. $content = '<script>window.location.href = "' . $params['page_url'] . '";</script>';
  69. fwrite($newfile, $content);
  70. fclose($newfile);
  71. }
  72. }
  73. }