PageRenderTime 40ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/ThinkPHP/Extend/Engine/Sae/Conf/alias.php

https://github.com/huangshan/yuqing
PHP | 23 lines | 12 code | 1 blank | 10 comment | 0 complexity | e50b8778c7eff7f696c29cbba8d782a2 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. defined('THINK_PATH') or exit();
  12. // 系统别名定义文件
  13. return array(
  14. 'Model' => CORE_PATH.'Core/Model.class.php',
  15. 'Db' => CORE_PATH.'Core/Db.class.php',
  16. 'Log' => SAE_PATH.'Lib/Core/Log.class.php',
  17. 'ThinkTemplate' => SAE_PATH.'Lib/Template/ThinkTemplate.class.php',
  18. 'TagLib' => CORE_PATH.'Template/TagLib.class.php',
  19. 'Cache' => CORE_PATH.'Core/Cache.class.php',
  20. 'Widget' => CORE_PATH.'Core/Widget.class.php',
  21. 'TagLibCx' => CORE_PATH.'Driver/TagLib/TagLibCx.class.php',
  22. );