core.php 1.1 KB

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