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.

57 lines
1015 B
PHTML

<!-- anfang des menue parts //-->
14 years ago
<td width="160" valign="top">
<?php
ShowMenu("");
ShowMenu("nonpublic");
ShowMenu("admin");
14 years ago
if (!isset ($submenus))
$submenus = 0;
14 years ago
if ($submenus >= 1) {
14 years ago
$inc_name = $_SERVER['PHP_SELF'];
$filenamepos = strrpos($inc_name, '/');
$filenamepos += 1;
$filename = substr($inc_name, $filenamepos);
$filepost = substr($filename, 0, -4);
$filepre = substr($filename, -4);
$verzeichnis = substr($inc_name, 0, $filenamepos);
for ($index_nummer = 1; $index_nummer <= $submenus; $index_nummer++) {
?>
<table align="center" class="border" cellpadding="3" cellspacing="1">
14 years ago
<tr>
<td width="160" class="menu">
<?php include ("./".$filepost.".".$index_nummer.$filepre); ?>
</td>
</tr>
</table>
14 years ago
<br />
<?php
14 years ago
}
}
14 years ago
if (isset ($_SESSION['UID'])) {
?>
14 years ago
<nav>
14 years ago
<?php include("funktion_activeUser.php"); ?>
14 years ago
</nav>
14 years ago
<?php
14 years ago
}
14 years ago
?>
14 years ago
<nav>
<h4><?php echo Get_Text("Sprache") ?></h4>
14 years ago
<?php
14 years ago
14 years ago
include ("funktion_flag.php");
?>
14 years ago
</nav>
14 years ago
</td>
<!-- ende des menue parts //-->