85 lines
3.4 KiB
PHP
85 lines
3.4 KiB
PHP
<?php
|
|
namespace start;
|
|
$start_site = microtime(true);
|
|
|
|
|
|
|
|
function compress($buffer) {
|
|
$buffer = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $buffer);
|
|
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $buffer);
|
|
return $buffer;
|
|
}
|
|
header('Content-type: text/html');
|
|
header("Cache-Control: public");
|
|
header("Expires: " . date("r", time() + 86400));
|
|
ob_start("compress");
|
|
|
|
|
|
|
|
|
|
|
|
ini_set('display_errors', 0 );
|
|
|
|
|
|
require_once 'redirect.php';
|
|
|
|
require_once('api/php/db.php');
|
|
require_once('api/php/json.php');
|
|
require_once('api/php/core.php');
|
|
require_once('api/php/clean.php');
|
|
require 'set/' . $_SERVER['SERVER_NAME'] . '.php';
|
|
#if (file_exists('set/install/install_' . $db['type'] . '.php'))require_once 'set/install/install_' . $db['type'] . '.php';
|
|
/* ----------------------------------------------------------------------
|
|
09.12.2022
|
|
Выбираем модуль по умолчанию
|
|
---------------------------------------------------------------------- */
|
|
$authModule = \core::getSettings( 'default_mod_auth' );
|
|
$mod = ( $authModule ? $authModule : \core::getSettings( 'default_mod' ) );
|
|
define('MOD', ( @$_GET['mod'] ? $_GET['mod'] : $mod ) );
|
|
/* ----------------------------------------------------------------------
|
|
12.12.2022
|
|
Подключаем инсталлятор
|
|
---------------------------------------------------------------------- */
|
|
//if ( file_exists ( 'api/modules/' . MOD .'/install_' . \DB::$type . '.php' ) ) require_once 'api/modules/' . MOD .'/install_' . \DB::$type . '.php';
|
|
/* ----------------------------------------------------------------------
|
|
09.12.2022
|
|
Определяем город
|
|
---------------------------------------------------------------------- */
|
|
if ( !@$_SESSION['city'] ) \core::geo();
|
|
require_once 'set/int.php';
|
|
/* ----------------------------------------------------------------------
|
|
09.12.2022
|
|
Авторизация по куки
|
|
---------------------------------------------------------------------- */
|
|
if ( !@$_SESSION['user_id'] ) \core::loginCookies();
|
|
|
|
/* ----------------------------------------------------------------------
|
|
17.12.2022
|
|
Берем данные корзины
|
|
---------------------------------------------------------------------- */
|
|
$cart=\core::getCart();
|
|
$smarty -> assign( 'cart', $cart );
|
|
|
|
/*
|
|
function compress($buffer) {
|
|
$buffer = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $buffer);
|
|
return $buffer;
|
|
}
|
|
ob_start('compress');
|
|
*/
|
|
/* ----------------------------------------------------------------------
|
|
09.12.2022
|
|
Выбираем шаблон модуля
|
|
---------------------------------------------------------------------- */
|
|
if ( file_exists ( 'skin/' . $_SERVER['SERVER_NAME'] . '/inc/mod/' . MOD . '/index.html' ) )
|
|
$smarty -> display( 'skin/' . $_SERVER['SERVER_NAME'] . '/inc/mod/' . MOD . '/index.html', @$_GET['id'] );
|
|
else
|
|
$smarty -> display( 'api/modules/' . MOD . '/index.html', @$_GET['id'] );
|
|
|
|
$user_id = ( $_SESSION['user_id'] ? $_SESSION['user_id'] : session_id() );
|
|
$time_site = round( microtime(true) - $start_site, 5 );
|
|
\DB::add( "INSERT INTO `site_speed` ( `t`, `mod`, `mod_id`, `speed`, `user_id` ) VALUES ( ?, ?, ?, ?, ? )", array( time(), MOD, $_GET['id'], $time_site, $user_id ) );
|
|
|
|
ob_end_flush();
|
|
//ob_end_flush();
|
|
?>
|