alpha_full/admin/pages/pages.menu.php
2026-04-06 22:58:51 +02:00

16 lines
655 B
PHP
Executable File

<?php
$nomFicAppelant = basename(__FILE__);
// -----------------------------------------------------
// Pages transverses
// -----------------------------------------------------
if (count($tabIdPage) > 0 ) {
for($p=0; $p<count($tabIdPage); $p++) {
if ($theIdPage==$tabIdPage[$p]) {echo '<span class="boutonsMenuWbmActif" >';}
else {echo '<span class="boutonsMenusWbm" >'; }
echo '&#160;<i class="fad fa-user-edit" ></i>';
echo '<span onClick="window.self.location=\'./frmAdmin.php?affAdmin=23&theIdPage='.$tabIdPage[$p].'&lg='.$lg.'\';" >'.$tabDescPage[$p].' - '.$tabIdPage[$p].'</span>';
echo '</span>';
}
}
?>