-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
768 changed files
with
86,180 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
<?php | ||
require_once("./stpiadmin/includes/includes.php"); | ||
require_once("./stpiadmin/includes/classes/content/clshead.php"); | ||
require_once("./stpiadmin/includes/classes/content/clsbody.php"); | ||
require_once("./stpiadmin/includes/classes/content/clsmenu.php"); | ||
require_once("./stpiadmin/includes/classes/javascript/clsjavascript.php"); | ||
require_once("./stpiadmin/includes/classes/content/clsfooter.php"); | ||
require_once("./stpiadmin/includes/classes/motd/clsmotd.php"); | ||
require_once("./stpiadmin/includes/classes/security/clslock.php"); | ||
require_once("./stpiadmin/includes/classes/page/clspagepublic.php"); | ||
|
||
$strPage = basename($_SERVER["SCRIPT_NAME"]); | ||
|
||
$objMotd = new clsmotd(); | ||
$objTexte = new clstexte("./texte/checkout"); | ||
$objBody = new clsbody(); | ||
$objJavaScript = new clsjavascript(); | ||
$objMenu = new clsmenu($strPage); | ||
$objFooter = new clsfooter(); | ||
$objBdd = clsBdd::singleton(); | ||
$objLock = new clslock($strPage, "login.php"); | ||
$objLock->stpi_pageNotEncrypted(); | ||
|
||
$objPage = new clspagepublic(); | ||
?> | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | ||
<html xmlns="http://www.w3.org/1999/xhtml"> | ||
<head> | ||
<?php | ||
$objPage->stpi_setNbID(3); | ||
$objPage->stpi_setObjPageLgFromBdd(); | ||
$objPageLg = $objPage->stpi_getObjPageLg(); | ||
$objHead = new clshead(STR_NOM_ENT . " - " . $objBdd->stpi_trsBddToHTML($objPageLg->stpi_getStrTitre()), $objBdd->stpi_trsBddToHTML($objPageLg->stpi_getStrKeywords()), $objBdd->stpi_trsBddToHTML($objPageLg->stpi_getStrDesc())); | ||
$objHead->stpi_affPublicHead(); | ||
?> | ||
</head> | ||
<body> | ||
|
||
<div id="header"> | ||
<div id="menulang"> | ||
<?php | ||
$objMenu->stpi_affPublicMenuLang(); | ||
?> | ||
</div> | ||
<div id="loginurl"> | ||
<?php | ||
$objLock->stpi_affUrl(); | ||
?> | ||
</div> | ||
<div id="cart"><?php $objBody->stpi_affCartUrl(); ?></div> | ||
|
||
<div id="welcomemsg"> | ||
<?php | ||
print($objBdd->stpi_trsBddToHTML($objPageLg->stpi_getStrTitre())); | ||
?> | ||
</div> | ||
</div> | ||
|
||
<div id="topmenu"> | ||
<?php | ||
$objMenu->stpi_affPublicMenu(); | ||
?> | ||
</div> | ||
|
||
<div id="container"> | ||
<div id="fullcontent"> | ||
<?php | ||
$objMotd->stpi_affPublic(); | ||
|
||
print($objBdd->stpi_trsBddHtmlToHTML($objPageLg->stpi_getStrContent())); | ||
|
||
?> | ||
</div> | ||
|
||
<div class="doubleclear"></div> | ||
</div> | ||
|
||
<div id="bottommenu"> | ||
<?php | ||
$objMenu->stpi_affPublicMenu(); | ||
?> | ||
</div> | ||
|
||
<div id="footer"> | ||
<?php | ||
$objFooter->stpi_affPublicFooter(); | ||
?> | ||
</div> | ||
|
||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
require_once("./stpiadmin/includes/includes.php"); | ||
require_once("./stpiadmin/includes/classes/area/clscountry.php"); | ||
|
||
$objCountry = new clscountry(); | ||
|
||
if (!$objCountry->stpi_setStrID($_GET["strCountryID"])) | ||
{ | ||
exit; | ||
} | ||
|
||
$objCountry->stpi_affSelectProvinceShippable(); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
require_once("./stpiadmin/includes/includes.php"); | ||
require_once("./stpiadmin/includes/classes/img/clsimg.php"); | ||
|
||
$objImg = new clsimg("stpi_banniere_ImgBanniere", $_GET["nbImageID"]); | ||
|
||
$objImg->stpi_affImg(); | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
require_once("./stpiadmin/includes/includes.php"); | ||
require_once("./stpiadmin/includes/classes/img/clsimg.php"); | ||
|
||
$objImg = new clsimg("stpi_item_ImgCatItem", $_GET["nbCatItemID"]); | ||
|
||
$objImg->stpi_affImg(); | ||
?> |
Oops, something went wrong.