mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update Plugs.php
This commit is contained in:
parent
6cbb687862
commit
294c8b82a6
@ -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');
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user