心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SiteController.php 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2017年3月21日
  7. * 站点设置控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\SiteModel;
  12. class SiteController extends Controller
  13. {
  14. public function __construct()
  15. {
  16. $this->model = new SiteModel();
  17. }
  18. // 显示站点信息
  19. public function index()
  20. {
  21. // 获取主题列表
  22. $themes = dir_list(ROOT_PATH . current($this->config('tpl_dir')));
  23. $this->assign('themes', $themes);
  24. // 获取系统配置
  25. $this->assign('sites', $this->model->getList());
  26. // 显示
  27. $this->display('content/site.html');
  28. }
  29. // 修改站点信息
  30. public function mod()
  31. {
  32. if (! $_POST) {
  33. return;
  34. }
  35. $data = array(
  36. 'title' => post('title'),
  37. 'subtitle' => post('subtitle'),
  38. 'domain' => post('domain'),
  39. 'logo' => post('logo'),
  40. 'keywords' => post('keywords'),
  41. 'description' => post('description'),
  42. 'icp' => post('icp'),
  43. 'theme' => basename(post('theme')) ?: 'default',
  44. 'statistical' => post('statistical'),
  45. 'copyright' => post('copyright')
  46. );
  47. path_delete(RUN_PATH . '/config'); // 清理缓存的配置文件
  48. if ($this->model->checkSite()) {
  49. if ($this->model->modSite($data)) {
  50. $this->log('修改站点信息成功!');
  51. success('修改成功!', - 1);
  52. } else {
  53. location(- 1);
  54. }
  55. } else {
  56. $data['acode'] = session('acode');
  57. if ($this->model->addSite($data)) {
  58. $this->log('修改站点信息成功!');
  59. success('修改成功!', - 1);
  60. } else {
  61. location(- 1);
  62. }
  63. }
  64. }
  65. // 服务器基础信息
  66. public function server()
  67. {
  68. $this->assign('server', get_server_info());
  69. $this->display('system/server.html');
  70. }
  71. }