Update Plugs.php

This commit is contained in:
邹景立 2022-11-21 12:45:48 +08:00
parent 6cbb687862
commit 294c8b82a6

View File

@ -47,13 +47,10 @@ class Plugs extends Controller
*/
public function script(): \think\Response
{
$taDebug = $this->app->isDebug() ? 'true' : 'false';
$taAdmin = sysuri('admin/index/index', [], false);
$taEditor = sysconf('base.editor') ?: 'ckeditor4';
return response(join("\n", [
"window.taDebug = {$taDebug};",
"window.taAdmin = '{$taAdmin}';",
"window.taEditor = '{$taEditor}';",
return response(join("\r\n", [
sprintf("window.taDebug = %s;", $this->app->isDebug() ? 'true' : 'false'),
sprintf("window.taAdmin = '%s';", sysuri('admin/index/index', [], false)),
sprintf("window.taEditor = '%s';", sysconf('base.editor') ?: 'ckeditor4'),
]))->contentType('application/x-javascript');
}