37 lines
1.4 KiB
PHP
Executable File
37 lines
1.4 KiB
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
switch ($theVoletCss) {
|
|
|
|
case ($theVoletCss=="Connexion" || $theVoletCss=="Onglets" || $theVoletCss=="site" || $theVoletCss=="Structure site" || $theVoletCss=="Menu déroulant"|| $theVoletCss=="entête"|| $theVoletCss=="theVoletCss"|| $theVoletCss=="Accueil"|| $theVoletCss=="Logo" || $theVoletCss=="Icônes" || $theVoletCss=="Transverses" || $theVoletCss=="Pied de page" || $theVoletCss=="Logo animé") :
|
|
$themeDesign="Global";
|
|
break;
|
|
|
|
case ($theVoletCss=="Menu familles" || $theVoletCss=="Menu catégories" || $theVoletCss=="Barre rechercher"|| $theVoletCss=="Barre des promos" || $theVoletCss=="Menu familles indépendant" || $theVoletCss=="Catalogue") :
|
|
$themeDesign="Catalogue";
|
|
break;
|
|
|
|
case ($theVoletCss=="Clients" || $theVoletCss=="Commandes" ) :
|
|
$themeDesign="Clients";
|
|
break;
|
|
|
|
case ($theVoletCss=="Panier" || $theVoletCss=="Paiements" || $theVoletCss=="Étapes" ||$theVoletCss=="Formulaire Options" ) :
|
|
$themeDesign="Commandes";
|
|
break;
|
|
|
|
case "Publicité" :
|
|
$themeDesign="Marketing";
|
|
break;
|
|
|
|
case "Information" :
|
|
$themeDesign="Informations";
|
|
break;
|
|
|
|
Default:
|
|
$themeDesign="Global";
|
|
break;
|
|
}
|
|
|
|
if (isset($debug[1]) && $debug[1] == '1' ) {$admMsgClass='ok'; $debugMsg .= monDebug(2, ['themeDesign' => $themeDesign ],'coulGeneThemes.php');}
|
|
|
|
include ("coulGeneReqSelectDesign.php");
|
|
?>
|