31 lines
1.5 KiB
PHP
Executable File
31 lines
1.5 KiB
PHP
Executable File
<?php
|
|
|
|
// -----------------------------------------------------
|
|
// Requete count langues et init langue libelle
|
|
// -----------------------------------------------------
|
|
if (empty($tableLangueCode) or $refresh=='Oui') { include ($includePath. "/req/03-init.langueActives.php"); }
|
|
// if(empty($_SESSION['lgCouranteLibelle'])) {
|
|
for ( $i=0; $i< count($_SESSION['tableLangueCode']) ; $i++) {
|
|
if($lg==$_SESSION['tableLangueCode'][$i]) {
|
|
$_SESSION['lgCouranteLibelle'] = $_SESSION['tableLangueDesc'][$i];
|
|
$i=count($_SESSION['tableLangueCode']);
|
|
}
|
|
}
|
|
// }
|
|
|
|
// -----------------------------------------------------
|
|
// Bouton Previsualisation la news
|
|
// -----------------------------------------------------
|
|
echo '<span class="boutonsMenusWbm" onClick="top.location.href=\'./frmAdmin.php?affAdmin=2&numeroMenuPrpal=31&numeroSousMenu=&jeViensDe=news\';">📝 Saisie</span>';
|
|
|
|
// -----------------------------------------------------
|
|
// Bouton Previsualisation la news
|
|
// -----------------------------------------------------
|
|
echo '<span class="boutonsMenusWbm" onClick="majNews(2);"><i class="fad fa-check-circle"></i>Prévisualiser la news letter pour ' .$_SESSION['lgCouranteLibelle']. ' et l\'envoyer</span>';
|
|
|
|
// -----------------------------------------------------
|
|
// Bouton continuer langue
|
|
// -----------------------------------------------------
|
|
echo '<span class="boutonsMenusWbm" onClick="majNews(4);"><i class="fad fa-check-circle"></i>Continuer avec la langue suivante</span>';
|
|
|
|
?>
|