mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-01 20:52:48 +08:00
40 lines
1.9 KiB
PHP
40 lines
1.9 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | TOPThink [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2011 http://topthink.com All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
// 系统类库映射定义
|
|
return array(
|
|
'Think\App' => CORE_PATH.'App.php',
|
|
'Think\Log' => CORE_PATH.'Log.php',
|
|
'Think\Log\Driver\File' => CORE_PATH.'Log\Driver\File.php',
|
|
'Think\Config' => CORE_PATH.'Config.php',
|
|
'Think\Route' => CORE_PATH.'Route.php',
|
|
'Think\Exception'=> CORE_PATH.'Exception.php',
|
|
'Think\Model' => CORE_PATH.'Model.php',
|
|
'Think\Db' => CORE_PATH.'Db.php',
|
|
'Think\Db\Driver' => CORE_PATH.'Db\Driver.php',
|
|
'Think\Template' => CORE_PATH.'Template.php',
|
|
'Think\Error' => CORE_PATH.'Error.php',
|
|
'Think\Cache' => CORE_PATH.'Cache.php',
|
|
'Think\Tag' => CORE_PATH.'Tag.php',
|
|
'Think\Session' => CORE_PATH.'Session.php',
|
|
'Think\Cookie' => CORE_PATH.'Cookie.php',
|
|
'Think\Controller' => CORE_PATH.'Controller.php',
|
|
'Think\View' => CORE_PATH.'View.php',
|
|
'Think\Url' => CORE_PATH.'url.php',
|
|
'Think\Verify' => CORE_PATH.'Verify.php',
|
|
'Think\Debug' => CORE_PATH.'Debug.php',
|
|
'Think\Input' => CORE_PATH.'Input.php',
|
|
'Think\Parser' => CORE_PATH.'Parser.php',
|
|
'Think\Lang' => CORE_PATH.'Lang.php',
|
|
'Think\Filter' => CORE_PATH.'Filter.php',
|
|
'Think\Oauth' => CORE_PATH.'Oauth.php',
|
|
'Think\Rest' => CORE_PATH.'Rest.php',
|
|
); |