mirror of
https://github.com/netcccyun/dnsmgr.git
synced 2024-11-16 11:42:35 +08:00
26 lines
577 B
PHP
26 lines
577 B
PHP
<?php
|
|
declare (strict_types=1);
|
|
|
|
namespace app\middleware;
|
|
|
|
use think\facade\View;
|
|
|
|
class ViewOutput
|
|
{
|
|
/**
|
|
* 处理请求
|
|
*
|
|
* @param \think\Request $request
|
|
* @param \Closure $next
|
|
* @return Response
|
|
*/
|
|
public function handle($request, \Closure $next)
|
|
{
|
|
View::assign('islogin', $request->islogin);
|
|
View::assign('user', $request->user);
|
|
View::assign('cdnpublic', 'https://s4.zstatic.net/ajax/libs/');
|
|
View::assign('skin', getAdminSkin());
|
|
return $next($request);
|
|
}
|
|
}
|