/TP/Conf/alias.php

http://lyblog.codeplex.com · PHP · 24 lines · 12 code · 1 blank · 11 comment · 1 complexity · 9da0c3e875fcf7aaf24e5ab9b9d06e6d MD5 · raw file

  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 2702 2012-02-02 12:35:01Z liu21st $
  12. if (!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. );