123456789101112131415161718192021 |
- <?php
- // +--------------------------------------------------------------------------
- // | Senthot [ DEVELOPED BY ME ]
- // +--------------------------------------------------------------------------
- // | Copyright (c) 2005-2013 http://www.senthot.com All rights reserved.
- // | License ( http://www.apache.org/licenses/LICENSE-2.0 )
- // | Author: ms134n ( [email protected] )
- // +--------------------------------------------------------------------------
- defined('SEN_PATH') or exit();
- // System alias definition file
- return array(
- 'Model' => CORE_PATH.'Core/Model.class.php',
- 'Db' => CORE_PATH.'Core/Db.class.php',
- 'Log' => CORE_PATH.'Core/Log.class.php',
- 'SenTemplate' => CORE_PATH.'Template/SenTemplate.class.php',
- 'TagLib' => CORE_PATH.'Template/TagLib.class.php',
- 'Cache' => CORE_PATH.'Core/Cache.class.php',
- 'Widget' => CORE_PATH.'Core/Widget.class.php',
- 'TagLibCx' => CORE_PATH.'Driver/TagLib/TagLibCx.class.php',
- );
|