19 lines
838 B
PHP
Executable File
19 lines
838 B
PHP
Executable File
<?php
|
|
|
|
// -----------------------------------------------------
|
|
// Objet : barre des boutons -->
|
|
// -----------------------------------------------------
|
|
echo '<div style="margin:2px; display:flex; flex-direction:rows; flex-wrap:wrap; flex-gap:0px; height:auto; top:0;" >';
|
|
$niveau=3; //pour gérer le chemin image dans dynamiqItemImage
|
|
for ($btn=0; $btn< 19; $btn++ ) {
|
|
echo '<div style="margin:20px;">';
|
|
if ($_SESSION['boutonAfficher'][$btn] == 1 ) dynamiqItemImage (0, 0, 'boutons', 'span', '-', 'bouton', $btn, '-icoClass-', '-textClass-', '-');
|
|
else {
|
|
echo '<div class="boutons" style="background:grey" > <i class="' .$_SESSION['boutonImgPt'][$btn]. '"></i><span style="background:grey"> ' .$_SESSION['boutonMsg'][$btn]. '</span></div>';
|
|
}
|
|
// echo "N° btn = " .$btn;
|
|
echo '</div>';
|
|
}
|
|
echo '</div>';
|
|
|
|
?>
|