You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
2.9 KiB
PHP

<?php // Info Inhalt laden, wegen IE Fehler, bei leeren INFO wird trotzdem was angezeigt
// daher div nur raussschicken wenn file vorhanden ist.
if ($_nonav!='j'){
if ($navfunkt == '' and $navinfo != "") {
if ($sys_doku_gen) {
$sys_path_gen = $verz_info.'.gen';
$afile = $sys_path_gen . "/" . str_replace('.php','.html',$navinfo);
if (file_exists($afile)) {
echo '<div id="Info">'."\n";
include $afile;
echo "<br><br>\n";
echo "</div>\n";
}
}
else {
if (file_exists($verz_info . "/" . $navinfo)) {
echo '<div id="Info">'."\n";
if (strpos($verz_info . "/" . $navinfo,'.php')){
include $verz_info . "/" . $navinfo;
}
else{
echo PrintHtml($verz_info . "/" . $navinfo);
}
// eine leerzeile wegen IE Fehler, bei css padding für background
echo "<br><br>\n";
echo "</div>\n";
}
}
}
}
?>
<?php if ($_nonav!='j'){ ?>
<div id="HauptSeite">
<?php }else{ ?>
<div id="Popup">
<?php } ?>
<div id="Inhalt">
<div class="o" >
<div class="l" >
<div class="r" >
<div class="u" >
<div class="ro">
<div class="lo">
<div class="ru">
<div class="lu">
<?php // Inhalt laden
if ($sys_doku_gen) {
$sys_path_gen = $verz_html.'.gen';
if ($sys_admin){
echo '<table border="0"><tr><td align="center">';
echo "<pre><big><b><tt>";
echo "<----------------------------------->\n";
echo "< A C H T U N G >\n";
echo "< Generierte Seite wird angezeigt >\n";
echo "<----------------------------------->\n";
echo "</tt></big></pre>";
echo "</td></tr></table>";
}
if ($navhtml != ""){
$afile = $sys_path_gen . "/" . str_replace('.html','.php',$navhtml);
if (file_exists($afile)) {
include $afile;
}
else{
PrintFile($sys_errorpage);
}
}
if ($sys_admin){
echo '<table border="0"><tr><td align="center">';
echo "<pre><big><b><tt>";
echo "<----------------------------------->\n";
echo "< A C H T U N G >\n";
echo "< Generierte Seite wird angezeigt >\n";
echo "<----------------------------------->\n";
echo "</tt></big></pre>";
echo "</td></tr></table>";
}
}
else {
$afile = $verz_html . "/" . $navhtml;
if ($navhtml != "" and file_exists($afile)) {
if (strpos($afile,'.php')){
include $afile;
}
else{
echo PrintHtml($verz_html . "/" . $navhtml);
}
}
else{
PrintFile($sys_errorpage);
}
}
// eine leerzeile wegen IE Fehler, bei css padding für background
echo "<br><br>\n";
?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
&nbsp;<br>