mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
Update sys.php
This commit is contained in:
parent
44c4637ea0
commit
970ac320b0
@ -13,8 +13,6 @@
|
|||||||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||||||
// +----------------------------------------------------------------------
|
// +----------------------------------------------------------------------
|
||||||
|
|
||||||
use think\admin\service\NodeService;
|
|
||||||
|
|
||||||
if (!function_exists('sysdata')) {
|
if (!function_exists('sysdata')) {
|
||||||
/**
|
/**
|
||||||
* JSON 数据读取与存储
|
* JSON 数据读取与存储
|
||||||
@ -45,11 +43,13 @@ if (!function_exists('sysoplog')) {
|
|||||||
*/
|
*/
|
||||||
function sysoplog($action, $content)
|
function sysoplog($action, $content)
|
||||||
{
|
{
|
||||||
return app()->db->name('SystemOplog')->insert([
|
$app = app();
|
||||||
'node' => NodeService::instance()->getCurrent(),
|
return $app->db->name('SystemOplog')->insert([
|
||||||
'action' => $action, 'content' => $content,
|
'node' => \think\admin\service\NodeService::instance($app)->getCurrent(),
|
||||||
'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : app()->request->ip(),
|
'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : $app->request->ip(),
|
||||||
'username' => PHP_SAPI === 'cli' ? 'cli' : app()->session->get('user.username'),
|
'action' => $action,
|
||||||
|
'content' => $content,
|
||||||
|
'username' => PHP_SAPI === 'cli' ? 'cli' : $app->session->get('user.username'),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user