| 1234567891011121314151617181920212223 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2009 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: liu21st <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- // $Id$
- // 系统默认的核心列表文件
- return array(
- THINK_PATH.'/Lib/Think/Exception/ThinkException.class.php', // 异常处理类
- THINK_PATH.'/Lib/Think/Core/Log.class.php', // 日志处理类
- THINK_PATH.'/Lib/Think/Core/App.class.php', // 应用程序类
- THINK_PATH.'/Lib/Think/Core/Action.class.php', // 控制器类
- //THINK_PATH.'/Lib/Think/Core/Model.class.php', // 模型类
- THINK_PATH.'/Lib/Think/Core/View.class.php', // 视图类
- THINK_PATH.'/Common/alias.php', // 加载别名
- );
- ?>
|