AEOS Calvarium v0.4
This commit is contained in:
parent
821b405f5a
commit
57b531cb62
189 changed files with 3810 additions and 1417 deletions
19
core/menu.php~
Executable file
19
core/menu.php~
Executable 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);
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue