mirror of
https://github.com/v2board/v2board.git
synced 2025-01-11 00:29:09 +08:00
update: theme config
This commit is contained in:
parent
1ddc05652d
commit
6d6ab5543a
@ -78,8 +78,10 @@ class ThemeController extends Controller
|
|||||||
{
|
{
|
||||||
$payload = $request->validate([
|
$payload = $request->validate([
|
||||||
'name' => 'required|in:' . join(',', $this->themes),
|
'name' => 'required|in:' . join(',', $this->themes),
|
||||||
'config' => 'required|array'
|
'config' => 'required'
|
||||||
]);
|
]);
|
||||||
|
$payload['config'] = json_decode(base64_decode($payload['config']), true);
|
||||||
|
if (!$payload['config'] || !is_array($payload['config'])) abort(500, '参数有误');
|
||||||
$themeConfigFile = public_path("theme/{$payload['name']}/config.php");
|
$themeConfigFile = public_path("theme/{$payload['name']}/config.php");
|
||||||
if (!File::exists($themeConfigFile)) abort(500, '主题不存在');
|
if (!File::exists($themeConfigFile)) abort(500, '主题不存在');
|
||||||
$themeConfig = include($themeConfigFile);
|
$themeConfig = include($themeConfigFile);
|
||||||
|
2
public/assets/admin/umi.js
vendored
2
public/assets/admin/umi.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user