57 lines
3.2 KiB
PHP
Executable File
57 lines
3.2 KiB
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
$filtreActiv=1;
|
|
$refresh='Oui';
|
|
include ($includePath. "/req/31-modeLiv.reqSelectList.php");
|
|
$refresh='N';
|
|
|
|
|
|
if ( $affMContext === true ) echo '<div id="tablePages" ' .$mouseOverMenuContextContainer. ' onContextMenu="return mConStyle(this, \'Transverses site\', \'tablePages\', 1,\'menus\', 5, 15, event);" >';
|
|
else echo '<div id="tablePages" >';
|
|
|
|
// ---------------------------------------------------
|
|
// Titre de la page msg titre ==> Modes de livraison
|
|
// ---------------------------------------------------
|
|
echo '<h1 class="titresInfos" >';
|
|
dynamiqItemImage (0,0,'titresInfos', 'span', '-action-','menu',15, 'icones','-','-');
|
|
echo '</h1>';
|
|
|
|
if ( $affMContext === true ) echo '<div class="tableInfos" class="flexToColumn" ' .$mouseOverMenuContextContainer. ' onContextMenu="return mConStyle(this, \'Informations\', \'tableInfos\', 1,\'contact\', 4, 73, event);" >';
|
|
else echo '<div class="tableInfos" class="flexToColumn" >';
|
|
if ( $affMContext === true ) echo '<span class="msgInfos"' .$mouseOverMenuContext. ' onContextMenu="return mContextuel(this, \'msgInfos\',\'contact\', 77, event);" >';
|
|
else echo '<span class="msgInfos" >';
|
|
include ("./Publication/menus/modeLiv_" .$lg. ".php");
|
|
echo '</span>';
|
|
echo '</div>';
|
|
|
|
if ( $affMContext === true ) echo '<div class="tableInfos" ' .$mouseOverMenuContextContainer. ' onContextMenu="return mConStyle(this, \'Informations\', \'tableInfos\', 1,\'contact\', 4, 73, event);" >';
|
|
else echo '<div class="tableInfos" >';
|
|
|
|
// ---------------------------------------------------
|
|
// liste des modes liv
|
|
// ---------------------------------------------------
|
|
dynamiqItemImage (0,0,'msgInfos', 'span', '-action-','contact',77, 'icones','-','-');
|
|
|
|
for ($i=0;$i<count($tabLibelleMl);$i++) {
|
|
if ( $affMContext === true ) echo '<div class="libInfosCell" ' .$mouseOverMenuContextContainer. ' onContextMenu="return mConStyle(this, \'Informations\', \'libInfosCell\', 3,\'contact\', 4, 77, event);" >';
|
|
else echo '<div class="libInfosCell" >';
|
|
|
|
if ( $affMContext === true ) echo '<span class="champsInfosCell" ' .$mouseOverMenuContext. ' onContextMenu="return mContextuel(this, \'champsInfosCell\',\'contact\', 77, event);" >';
|
|
else echo '<span class="champsInfosCell" >';
|
|
$test=strtolower(substr($tabIcoML[$i],-3));
|
|
if ($test=='jpg' || $test=='peg' || $test=='gif' || $test=='ico' || $test=='png' || $test=='bmp') {
|
|
echo '<img style="margin:0px;border:0; width:10%; vertical-align:middle;" src="' .$tabIcoML[$i]. '" alt="' .$tabLibelleMl[$i]. '" data-tooltip="' .$tabLibelleMl[$i]. '" />';
|
|
echo ' ';
|
|
}
|
|
else {
|
|
echo '<span class="' .$tabIcoML[$i]. ' fa-2x" data-tooltip="' .$tabLibelleMl[$i]. '" ></span>';
|
|
echo ' ';
|
|
}
|
|
echo '</span>';
|
|
if ( $affMContext === true ) echo ' <span class="libInfos" ' .$mouseOverMenuContext. ' onContextMenu="return mContextuel(this, \'champsInfosCell\',\'contact\', 77, event);" >' .$tabLibelleMl[$i]. '</span>';
|
|
else echo ' <span class="libInfos">' .$tabLibelleMl[$i]. '</span>';
|
|
echo '</div>';
|
|
}
|
|
echo '</div>';
|
|
echo '</div>'; //tablePages
|
|
?>
|