init
This commit is contained in:
40
apps/admin/controller/system/SyslogController.php
Normal file
40
apps/admin/controller/system/SyslogController.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/**
|
||||
* @copyright (C)2016-2099 Hnaoyun Inc.
|
||||
* @author XingMeng
|
||||
* @email hnxsh@foxmail.com
|
||||
* @date 2017年3月29日
|
||||
* 系统日志控制器
|
||||
*/
|
||||
namespace app\admin\controller\system;
|
||||
|
||||
use core\basic\Controller;
|
||||
use app\admin\model\system\SyslogModel;
|
||||
|
||||
class SyslogController extends Controller
|
||||
{
|
||||
|
||||
private $model;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->model = new SyslogModel();
|
||||
}
|
||||
|
||||
// 日志列表
|
||||
public function index()
|
||||
{
|
||||
$this->assign('syslogs', $this->model->getList());
|
||||
$this->display('system/syslog.html');
|
||||
}
|
||||
|
||||
// 清理日志
|
||||
public function clear()
|
||||
{
|
||||
if ($this->model->clearLog()) {
|
||||
alert_location('清空成功!', url('/admin/Syslog/index'));
|
||||
} else {
|
||||
alert_location('清空失败!', url('/admin/Syslog/index'));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user