www.gusucode.com > Isoft PHP仓储管理系统(think仓储管理系统) v1.2.1源码程序 > isoftwms_v1.2.1/source/ThinkPHP/Common/core.php

    <?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 <liu21st@gmail.com>
// +----------------------------------------------------------------------
// $Id: core.php 2701 2012-02-02 12:27:51Z liu21st $

// 系统默认的核心列表文件
return array(
    THINK_PATH.'/Common/functions.php',   // 系统函数库
    THINK_PATH.'/Lib/Think/Core/Think.class.php',
    THINK_PATH.'/Lib/Think/Exception/ThinkException.class.php',  // 异常处理类
    THINK_PATH.'/Lib/Think/Core/Log.class.php',    // 日志处理类
    THINK_PATH.'/Lib/Think/Util/Dispatcher.class.php', // URL调度和路由类
    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',  // 加载别名
);
?>