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

25
core/base.php Executable file
View file

@ -0,0 +1,25 @@
<?php
$contenu = lecture_xml($DATA_PAGES.$lecture_pages[$id].'.xml');
if(file_exists("modules/".$contenu['page']['type']['#text']."/base.php")==FALSE || $contenu['page']['etat']['#text']==0)
echo "<span class='erreur'>Impossible d'accéder à la page demandée.</span>";
else include_once("modules/".$contenu['page']['type']['#text']."/base.php");
// Obtention des informations dans la librairie information
if (isset($_GET['owInfo']) || strpos($_SERVER["REQUEST_URI"], 'owInfo')!==FALSE)
{ ?>
<div id="DeadZone"></div>
<div id="LifeZone">
<h1>Moteur généré par AEOS - CMS</h1>
<p><img src="themes/system/images/logo_black.png" alt="Logo" /></p>
<p>
<?php echo "AEOS v".AEOS_VERSION; ?>
</p>
<p>
Copyright © 2004 - <?php echo date('Y'); ?> NNS Production. Tous droits rérvés.
</p>
<p>
<a href="<?php echo AEOS_REAL_URL; ?>">AEOS</a> est un logiciel libre sous licence GNU/GPL.
</p>
</div><?php
}
?>