PageRenderTime 51ms CodeModel.GetById 24ms RepoModel.GetById 0ms app.codeStats 0ms

/ThinkPHP/Conf/alias.php

http://thinkphp.googlecode.com/
PHP | 24 lines | 12 code | 1 blank | 11 comment | 1 complexity | 65bf384ef3b4030f2c77e4d20f5dba63 MD5 | raw file
Possible License(s): MPL-2.0-no-copyleft-exception
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006-2012 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: alias.php 2929 2012-05-02 06:45:47Z liu21st@gmail.com $
  12. !defined('THINK_PATH') && exit();
  13. // ????????
  14. return array(
  15. 'Model' => CORE_PATH.'Core/Model.class.php',
  16. 'Db' => CORE_PATH.'Core/Db.class.php',
  17. 'Log' => CORE_PATH.'Core/Log.class.php',
  18. 'ThinkTemplate' => CORE_PATH.'Template/ThinkTemplate.class.php',
  19. 'TagLib' => CORE_PATH.'Template/TagLib.class.php',
  20. 'Cache' => CORE_PATH.'Core/Cache.class.php',
  21. 'Widget' => CORE_PATH.'Core/Widget.class.php',
  22. 'TagLibCx' => CORE_PATH.'Driver/TagLib/TagLibCx.class.php',
  23. );