1234567891011121314151617181920212223242526272829 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2006~2018 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'],
- 'Home' => [
- '__file__' => ['common.php'],
- '__dir__' => ['behavior', 'controller', 'model'],
- 'controller' => ['Index'],
- 'model' => ['User'],
- ],
- 'Admin' => [
- '__file__' => ['common.php'],
- '__dir__' => ['behavior', 'controller', 'model'],
- 'controller' => ['Index'],
- 'model' => ['User'],
- ],
- // 其他更多的模块定义
- ];
|