123456789101112131415161718192021222324252627282930 |
- <?php
- declare(strict_types=1);
- /**
- * 商城板块初始化文件
- *
- *
- * * */
- define('APP_ID','shop');
- define('BASE_ROOT_PATH',str_replace('/shop','',dirname(__FILE__)));
- define('BASE_PATH', BASE_ROOT_PATH . '/shop');
- $start = microtime(true);
- if (!@include(dirname(dirname(__FILE__)).'/global.php')) exit('global.php isn\'t exists!');
- if (!@include(BASE_PATH.'/control/control.php')) exit('control.php isn\'t exists!');
- if (!@include(BASE_CORE_PATH.'/lrlz.php')) exit('lrlz.php isn\'t exists!');
- define('APP_SITE_URL',SHOP_SITE_URL);
- define('TPL_NAME',TPL_SHOP_NAME);
- define('SHOP_RESOURCE_SITE_URL',SHOP_SITE_URL.DS.'resource');
- define('SHOP_TEMPLATES_URL',SHOP_SITE_URL.'/templates/'.TPL_NAME);
- define('BASE_TPL_PATH',BASE_PATH.'/templates/'.TPL_NAME);
- include(BASE_CONFIG_PATH . CONFIG_PREFIX . '/refill.ini.php');
- Base::run();
- $time = microtime(true) - $start;
- Log::record("use time = {$time}",Log::DEBUG);
|