16 lines
655 B
PHP
Executable File
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 ' <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>';
|
|
}
|
|
}
|
|
?>
|