27 lines
704 B
PHP
27 lines
704 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(){
|
|
|
|
}
|
|
/**
|
|
* @title 数据导入
|
|
*/
|
|
public function import(){
|
|
|
|
}
|
|
} |