Files
sentcms/app/controller/admin/Database.php
2019-07-06 21:22:20 +08:00

33 lines
862 B
PHP

<?php
// +----------------------------------------------------------------------
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
// +----------------------------------------------------------------------
namespace app\controller\admin;
use app\controller\Admin;
class Database extends Admin{
/**
* @title 数据备份
*/
public function export(){
$this->data['data'] = array(
'list' => array()
);
return $this->data;
}
/**
* @title 数据导入
*/
public function import(){
$this->data['data'] = array(
'list' => array()
);
return $this->data;
}
}