AEOS Calvarium v0.4

This commit is contained in:
OverSu 2026-08-26 17:23:29 +02:00
commit 57b531cb62
189 changed files with 3810 additions and 1417 deletions

19
core/menu.php~ Executable file
View file

@ -0,0 +1,19 @@
<?php
// Listings des pages + menu
$list=listing_ordre();
$j=1;
foreach ($list as &$pages)
{
$page = lecture_xml($DATA_PAGES.$pages);
if ($page['page']['etat']['#text']==1)
{
echo "<li class='Each".$j."'><a href='".AEOS_REW.$page['page']['id']['#text']."-".valideURL($page['page']['nom']['#text'])."' title='".$page['page']['nom']['#text']."'>";
if ($page['page']['id']['#text']==$id){echo "<b>"; }
echo $page['page']['nom']['#text'];
if ($page['page']['id']['#text']==$id){echo "</b>"; }
echo "</a></li>";
}
$j++;
}
unset($j);
?>