Config.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller;
  15. use app\store\service\ExtendService;
  16. use library\Controller;
  17. /**
  18. * 参数配置
  19. * Class Config
  20. * @package app\store\controller
  21. */
  22. class Config extends Controller
  23. {
  24. /**
  25. * 参数配置
  26. * @auth true
  27. * @menu true
  28. * @throws \think\Exception
  29. * @throws \think\exception\PDOException
  30. */
  31. public function index()
  32. {
  33. $this->title = '参数配置';
  34. $this->applyCsrfToken('save');
  35. $this->query = ExtendService::queryChinaSmsBalance();
  36. $this->query2 = ExtendService::queryGlobeSmsBalance();
  37. $attestation_switch = sysconf('attestation_switch');
  38. $this->attestation_switch = $attestation_switch;
  39. $this->fetch();
  40. }
  41. /**
  42. * 保存参数
  43. * @auth true
  44. * @throws \think\Exception
  45. * @throws \think\exception\PDOException
  46. */
  47. public function save()
  48. {
  49. if ($this->request->isPost()) {
  50. $this->applyCsrfToken('save');
  51. foreach ($this->request->post() as $k => $v) sysconf($k, $v);
  52. $this->success('保存成功!');
  53. }
  54. }
  55. }