24 lines
1.1 KiB
PHP
Executable File
24 lines
1.1 KiB
PHP
Executable File
<?php
|
|
// -----------------------------------------------------
|
|
// Pour CSS: styles
|
|
// -----------------------------------------------------
|
|
if (isset($_SESSION['theVoletCss'])) $theVoletCss=$_SESSION['theVoletCss'];
|
|
if (isset($_GET['theVoletCss'])) $theVoletCss=$_GET['theVoletCss'];
|
|
if (isset($_POST['theVoletCss'])) $theVoletCss=$_POST['theVoletCss'];
|
|
|
|
if (isset($_SESSION['nomCss'])) $nomCss=$_SESSION['nomCss'];
|
|
if (isset($_GET['nomCss'])) $nomCss=$_GET['nomCss'];
|
|
|
|
if (isset($_SESSION['theNumCss'])) $theNumCss=$_SESSION['theNumCss'];
|
|
if (isset($_GET['theNumCss'])) $theNumCss=$_GET['theNumCss'];
|
|
if (isset($_POST['theNumCss'])) $theNumCss=$_POST['theNumCss'];
|
|
|
|
if (isset($_SESSION['affCss'])) $affCss=$_SESSION['affCss'];
|
|
if (isset($_GET['affCss'])) $affCss=$_GET['affCss'];
|
|
$_SESSION['affCss']=$affCss;
|
|
|
|
// -----------------------------------------------------
|
|
// nomThemeCss : en session ou en get dans admin.post car transverse dans ce cas, local ici
|
|
// -----------------------------------------------------
|
|
if (isset($_POST['nomThemeCss'])) {$nomThemeCss=$_POST['nomThemeCss'];}
|
|
?>
|