mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
add new module
This commit is contained in:
parent
7a39db0ec2
commit
c5f9129ac9
1
application/admin/common.php
Normal file
1
application/admin/common.php
Normal file
@ -0,0 +1 @@
|
||||
<?php
|
5
application/admin/config.php
Normal file
5
application/admin/config.php
Normal file
@ -0,0 +1,5 @@
|
||||
<?php
|
||||
//配置文件
|
||||
return [
|
||||
|
||||
];
|
10
application/admin/controller/Index.php
Normal file
10
application/admin/controller/Index.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace app\admin\controller;
|
||||
|
||||
class Index
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
return '<style type="text/css">*{ padding: 0; margin: 0; } div{ padding: 4px 48px;} a{color:#2E5CD5;cursor: pointer;text-decoration: none} a:hover{text-decoration:underline; } body{ background: #fff; font-family: "Century Gothic","Microsoft yahei"; color: #333;font-size:18px;} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.6em; font-size: 42px }</style><div style="padding: 24px 48px;"> <h1>:)</h1><p> ThinkPHP V5<br/><span style="font-size:30px">十年磨一剑 - 为API开发设计的高性能框架</span></p><span style="font-size:22px;">[ V5.0 版本由 <a href="http://www.qiniu.com" target="qiniu">七牛云</a> 独家赞助发布 ]</span></div><script type="text/javascript" src="http://tajs.qq.com/stats?sId=9347272" charset="UTF-8"></script><script type="text/javascript" src="http://ad.topthink.com/Public/static/client.js"></script><thinkad id="ad_bd568ce7058a1091"></thinkad>';
|
||||
}
|
||||
}
|
7
application/admin/controller/Test.php
Normal file
7
application/admin/controller/Test.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
namespace app\admin\controller;
|
||||
|
||||
class Test
|
||||
{
|
||||
|
||||
}
|
7
application/admin/controller/UserType.php
Normal file
7
application/admin/controller/UserType.php
Normal file
@ -0,0 +1,7 @@
|
||||
<?php
|
||||
namespace app\admin\controller;
|
||||
|
||||
class UserType
|
||||
{
|
||||
|
||||
}
|
9
application/admin/model/User.php
Normal file
9
application/admin/model/User.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace app\admin\model;
|
||||
|
||||
use think\Model;
|
||||
|
||||
class User extends Model
|
||||
{
|
||||
|
||||
}
|
9
application/admin/model/UserType.php
Normal file
9
application/admin/model/UserType.php
Normal file
@ -0,0 +1,9 @@
|
||||
<?php
|
||||
namespace app\admin\model;
|
||||
|
||||
use think\Model;
|
||||
|
||||
class UserType extends Model
|
||||
{
|
||||
|
||||
}
|
0
application/admin/view/index/index.html
Normal file
0
application/admin/view/index/index.html
Normal file
25
application/build.php
Normal file
25
application/build.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: liu21st <liu21st@gmail.com>
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
return [
|
||||
// 生成应用公共文件
|
||||
'__file__' => ['common.php', 'config.php', 'database.php'],
|
||||
|
||||
// 定义demo模块的自动生成 (按照实际定义的文件名生成)
|
||||
'admin' => [
|
||||
'__file__' => ['common.php'],
|
||||
'__dir__' => ['behavior', 'controller', 'model', 'view'],
|
||||
'controller' => ['Index', 'Test', 'UserType'],
|
||||
'model' => ['User', 'UserType'],
|
||||
'view' => ['index/index'],
|
||||
],
|
||||
// 其他更多的模块定义
|
||||
];
|
Loading…
x
Reference in New Issue
Block a user