42 lines
2.1 KiB
PHP
Executable File
42 lines
2.1 KiB
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
|
|
// -----------------------------------------------------
|
|
// Activer ou pas la page sauf accueil (toujours afficher) newLetter et pied de page mails
|
|
// -----------------------------------------------------
|
|
$title="Affichez ou pas cette page";
|
|
if ($numeroMenuPrpal!=0) {
|
|
echo '<div class="libChampsWebmaster" style="padding:10px; display:block; border:1px solid #daeff8; border-radius:5px; width:100%; margin-top: 10px;" >';
|
|
if ($theIdPage!=4 && $theIdPage!=5) { // != pdp mail et news
|
|
echo '<span title="' .$title. '" >Afficher cette page dans le site : </span>';
|
|
|
|
// Liste des activPage selon session
|
|
include ("./agencement/blocDroit/pages/page/reqPage/activPages.php");
|
|
if ($activPage==1)
|
|
{echo '<input onClick="activationPage();" type="checkbox" name="activPage" id="activPage" value="1" checked >'; }
|
|
else
|
|
{echo '<input onClick="activationPage();" type="checkbox" name="activPage" id="activPage" value="0" >'; }
|
|
echo '<br>';
|
|
}
|
|
|
|
// -----------------------------------------------------
|
|
// Description
|
|
// -----------------------------------------------------
|
|
// Icône d'information
|
|
// -----------------------------------------------------
|
|
echo '<span class="info-icon fad fa-info-circle" onMouseOver="openPopup(\'P\')" onMouseLeave="closePopup(\'P\');"></span>';
|
|
echo '<div id="popupInfoP" class="popup">';
|
|
echo '<div class="popup-content">';
|
|
echo '<span class="popup-close" onclick="closePopup(\'P\');">×</span>';
|
|
echo '<img src="./adminInclude/designAdmin/info.png" alt="Info" class="popup-icon" />';
|
|
echo '<p>Entrez un nom pour la page. Celle-ci n\'apparaîtra pas sur le site. Cliquez autre part pour valider.</p>';
|
|
echo '</div>';
|
|
echo '</div>';
|
|
|
|
echo '<span class="libChampsWebmaster" >';
|
|
echo 'Nom de la page : ';
|
|
echo '<input class="inputWebmaster" style="width:70%;" type="text" name="theDescPage" value="' .$theDescPage. '" onChange="document.getElementById(\'codeOpe\').value=\'faireMajDesc\'; document.menuSiteForm.submit();" >';
|
|
echo '</span>';
|
|
echo '</div>';
|
|
}
|
|
?>
|