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.

68 lines
1.3 KiB
PHTML

<!-- anfang des menue parts //-->
14 years ago
<td width="160" valign="top">
<?php
$MenueTableStart="
<table align=\"center\" class=\"border\" cellpadding=\"3\" cellspacing=\"1\">
14 years ago
<tr>
<td width=\"160\" class=\"menu\">
";
14 years ago
$MenueTableEnd="</ul>
<br />
</td>
</tr>
</table><br />
";
ShowMenu("");
ShowMenu("nonpublic");
ShowMenu("admin");
14 years ago
if(!isset($submenus))
$submenus = 0;
14 years ago
if ($submenus >= 1) {
$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
}
}
if( isset($_SESSION['UID']))
{
?>
<table align="center" class="border" cellpadding="3" cellspacing="1">
14 years ago
<tr>
<td width="160" class="menu">
<?php include("funktion_activeUser.php"); ?>
</td>
</tr>
</table>
14 years ago
<?php
}
14 years ago
?>
<?php
include ("funktion_flag.php");
?>
14 years ago
</td>
<!-- ende des menue parts //-->