diff --git a/app/admin/controller/Config.php b/app/admin/controller/Config.php index e49f145e5..28083a43d 100644 --- a/app/admin/controller/Config.php +++ b/app/admin/controller/Config.php @@ -17,10 +17,12 @@ namespace app\admin\controller; use think\admin\Controller; +use think\admin\extend\FaviconExtend; use think\admin\service\AdminService; use think\admin\service\ModuleService; use think\admin\service\SystemService; use think\admin\storage\AliossStorage; +use think\admin\storage\LocalStorage; use think\admin\storage\QiniuStorage; use think\admin\storage\TxcosStorage; @@ -58,6 +60,7 @@ class Config extends Controller $this->title = '修改系统参数'; $this->fetch(); } else { + // 修改网站后台入口路径 if ($xpath = $this->request->post('xpath')) { if (!preg_match('/^[a-zA-Z_][a-zA-Z0-9_]*$/', $xpath)) { $this->error('后台入口名称需要是由英文字母开头!'); @@ -67,6 +70,16 @@ class Config extends Controller } SystemService::instance()->setRuntime(null, [$xpath => 'admin']); } + // 修改网站 ICON 图标文件 + if (!($icon = $this->request->post('site_icon'))) { + if (($info = LocalStorage::down($icon)) && !empty($info['file'])) try { + $favicon = new FaviconExtend($info['file']); + $favicon->saveIco($this->app->getRootPath() . 'public/favicon.ico'); + } catch (\Exception $exception) { + trace_file($exception); + } + } + // 数据数据到系统配置表 foreach ($this->request->post() as $name => $value) sysconf($name, $value); sysoplog('系统配置管理', "修改系统参数成功"); $this->success('修改系统参数成功!', 'javascript:location.reload()'); diff --git a/composer.json b/composer.json index c541eaa93..a8184f218 100644 --- a/composer.json +++ b/composer.json @@ -29,7 +29,7 @@ "topthink/framework": "^6.0", "topthink/think-view": "^1.0", "zoujingli/ip2region": "^1.0", - "zoujingli/think-library": "6.0.x-dev", + "zoujingli/think-library": "^6.0", "zoujingli/wechat-developer": "^1.2" }, "autoload": {