13 lines
568 B
PHP
Executable File
13 lines
568 B
PHP
Executable File
<?php
|
|
$nomFicAppelant = basename(__FILE__);
|
|
// -----------------------------------------------------
|
|
// Pages transverses
|
|
// -----------------------------------------------------
|
|
for($p=0; $p<count($tabIdPage); $p++) {
|
|
if ($theIdPage==$p) {echo '<span class="boutonsMenuWbmActif" >';}
|
|
else {echo '<span class="boutonsMenusWbm" >'; }
|
|
echo ' <i class="fad fa-user-edit" ></i>';
|
|
echo '<span onClick="window.self.location=\'frm.page.php?affAdmin=23&theIdPage=' .$p. '&lg=' .$lg. '\';" >' .$descPage[$p]. '</span>';
|
|
echo '</span>';
|
|
}
|
|
?>
|