alias.php 1007 B

123456789101112131415161718192021
  1. <?php
  2. // +--------------------------------------------------------------------------
  3. // | Senthot [ DEVELOPED BY ME ]
  4. // +--------------------------------------------------------------------------
  5. // | Copyright (c) 2005-2013 http://www.senthot.com All rights reserved.
  6. // | License ( http://www.apache.org/licenses/LICENSE-2.0 )
  7. // | Author: ms134n ( [email protected] )
  8. // +--------------------------------------------------------------------------
  9. defined('SEN_PATH') or exit();
  10. // System alias definition file
  11. return array(
  12. 'Model' => CORE_PATH.'Core/Model.class.php',
  13. 'Db' => CORE_PATH.'Core/Db.class.php',
  14. 'Log' => CORE_PATH.'Core/Log.class.php',
  15. 'SenTemplate' => CORE_PATH.'Template/SenTemplate.class.php',
  16. 'TagLib' => CORE_PATH.'Template/TagLib.class.php',
  17. 'Cache' => CORE_PATH.'Core/Cache.class.php',
  18. 'Widget' => CORE_PATH.'Core/Widget.class.php',
  19. 'TagLibCx' => CORE_PATH.'Driver/TagLib/TagLibCx.class.php',
  20. );