Update sys.php

This commit is contained in:
Anyon 2019-11-11 14:12:57 +08:00
parent 44c4637ea0
commit 970ac320b0

View File

@ -13,8 +13,6 @@
// | github 代码仓库https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
use think\admin\service\NodeService;
if (!function_exists('sysdata')) {
/**
* JSON 数据读取与存储
@ -45,11 +43,13 @@ if (!function_exists('sysoplog')) {
*/
function sysoplog($action, $content)
{
return app()->db->name('SystemOplog')->insert([
'node' => NodeService::instance()->getCurrent(),
'action' => $action, 'content' => $content,
'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : app()->request->ip(),
'username' => PHP_SAPI === 'cli' ? 'cli' : app()->session->get('user.username'),
$app = app();
return $app->db->name('SystemOplog')->insert([
'node' => \think\admin\service\NodeService::instance($app)->getCurrent(),
'geoip' => PHP_SAPI === 'cli' ? '127.0.0.1' : $app->request->ip(),
'action' => $action,
'content' => $content,
'username' => PHP_SAPI === 'cli' ? 'cli' : $app->session->get('user.username'),
]);
}
}