1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160:
<?php
$_classPath = 'phpshop/';
if (strstr($_SERVER['REQUEST_URI'], 'index.php')) {
header('Location: /error/');
exit();
}
if ($PHPShopSystem->getValue('skin_choice')) {
if (isset($_REQUEST['skin'])) {
if (@file_exists("phpshop/templates/" . $_REQUEST['skin'] . "/index.html")) {
$skin = $_REQUEST['skin'];
if (PHPShopSecurity::true_login($_REQUEST['skin']))
$_SESSION['skin'] = $_REQUEST['skin'];
}
}
elseif (empty($_SESSION['skin'])) {
$skin = $PHPShopSystem->getValue('skin');
$_SESSION['skin'] = $skin;
}
} else {
$skin = $PHPShopSystem->getValue('skin');
$_SESSION['skin'] = $skin;
}
function Open($page) {
global $SysValue;
$page = $page . ".php";
$handle = @opendir('pages');
while ($file = readdir($handle)) {
if ($file == $page) {
return $page;
exit;
}
}
return $SysValue['my']['index'];
}
if (!getenv("COMSPEC")) {
if (is_dir("./install/"))
PHPShopBase::errorConnect(105, '', '');
}
$SysValue['other']['telNum'] = $PHPShopSystem->getValue('tel');
if (strstr($SysValue['other']['telNum'], ","))
$tel_xs = explode(" ", $SysValue['other']['telNum']);
else
$tel_xs[] = $SysValue['other']['telNum'];
$SysValue['other']['telNumMobile'] = $tel_xs[0];
$SysValue['other']['streetAddress'] = $PHPShopSystem->getValue('addres');
$SysValue['other']['mail'] = $PHPShopSystem->getValue('admin_mail');
$SysValue['other']['pageCss'] = $SysValue['dir']['templates'] . chr(47) . $_SESSION['skin'] . chr(47) . $SysValue['css']['default'];
$SysValue['other']['version'] = substr($SysValue['upload']['version'], 0, 1) . '.' . substr($SysValue['upload']['version'], 1, 1);
$theme = $PHPShopSystem->getSerilizeParam('admoption.' . $_SESSION['skin'] . '_theme');
if (!empty($theme))
$SysValue['other'][$_SESSION['skin'] . '_theme'] = $theme;
if (!file_exists("phpshop/templates/" . $_SESSION['skin'] . "/index.html"))
$_SESSION['skin'] = 'bootstrap';
$PHPShopSkinElement = new PHPShopSkinElement();
$PHPShopSkinElement->init('skinSelect', true);
include($SysValue['class']['modules']);
$PHPShopModules = new PHPShopModules();
$PHPShopModules->doLoad();
$SysValue['other']['name'] = $PHPShopSystem->getValue('name');
$SysValue['other']['company'] = $PHPShopSystem->getValue('company');
$SysValue['other']['ShopDir'] = $SysValue['dir']['dir'];
$PHPShopGbookElement = new PHPShopGbookElement();
$PHPShopGbookElement->init('miniGbook');
$PHPShopOprosElement = new PHPShopOprosElement();
$PHPShopOprosElement->init('oprosDisp');
$PHPShopNewsElement = new PHPShopNewsElement();
$PHPShopNewsElement->init('miniNews');
$PHPShopBannerElement = new PHPShopBannerElement();
$PHPShopBannerElement->init('banersDisp');
$PHPShopCloudElement = new PHPShopCloudElement();
$PHPShopCloudElement->init('cloud');
$PHPShopTextElement = new PHPShopTextElement();
$PHPShopTextElement->init('leftMenu', true);
$PHPShopTextElement->init('rightMenu', true);
$PHPShopTextElement->init('topMenu', true);
$PHPShopTextElement->init('logo', true);
$PHPShopCatalogElement = new PHPShopCatalogElement();
$PHPShopCatalogElement->init('mainMenuPage');
$PHPShopSliderElement = new PHPShopSliderElement();
$PHPShopSliderElement->init('imageSlider');
$PHPShopPhotoElement = new PHPShopPhotoElement();
$PHPShopPhotoElement->init('mainMenuPhoto');
$PHPShopPhotoElement->init('getPhotos');
$PHPShopRssParser = new PHPShopRssParser();
if (!empty($SysValue['nav']['path'])) {
$core_file = "./phpshop/core/" . $PHPShopNav->getPath() . ".core.php";
$old_core_file = "pages/" . $PHPShopNav->getPath() . ".php";
if (is_file($old_core_file)) {
include_once("pages/" . Open($SysValue['nav']['path']));
} elseif (!$PHPShopModules->doLoadPath($SysValue['nav']['path'])) {
if (is_file($core_file)) {
include_once($core_file);
$classname = 'PHPShop' . ucfirst($SysValue['nav']['path']);
if (class_exists($classname)) {
$PHPShopCore = new $classname ();
$PHPShopCore->loadActions();
}
else
echo PHPShopCore::setError($classname, "$classname.core.php");
}
else
include("pages/error.php");
}
}
?>