-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththin.php
More file actions
34 lines (28 loc) · 1.37 KB
/
Copy paththin.php
File metadata and controls
34 lines (28 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2012 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <[email protected]>
// +----------------------------------------------------------------------
// 简洁模式核心定义文件列表
return array(
'core' => array(
THINK_PATH.'Common/functions.php', // 系统函数库
CORE_PATH.'Core/Log.class.php',// 日志处理
MODE_PATH.'Thin/App.class.php', // 应用程序类
MODE_PATH.'Thin/Action.class.php',// 控制器类
),
// 项目别名定义文件 [支持数组直接定义或者文件名定义]
'alias' => array(
'Model' => MODE_PATH.'Thin/Model.class.php',
'Db' => MODE_PATH.'Thin/Db.class.php',
),
// 系统行为定义文件 [必须 支持数组直接定义或者文件名定义 ]
'extends' => array(),
// 项目应用行为定义文件 [支持数组直接定义或者文件名定义]
'tags' => array(),
);