2008-09-10 05:42:44 +02:00
|
|
|
|
|
|
|
<!-- anfang des menue parts //-->
|
|
|
|
<td width="160" valign="top">
|
|
|
|
<?PHP
|
|
|
|
$MenueTableStart="
|
|
|
|
<table align=\"center\" class=\"border\" cellpadding=\"3\" cellspacing=\"1\">
|
|
|
|
<tr>
|
|
|
|
<td width=\"160\" class=\"menu\">
|
|
|
|
";
|
|
|
|
$MenueTableEnd="
|
|
|
|
<br>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table><br>
|
|
|
|
";
|
|
|
|
|
|
|
|
ShowMenu("");
|
|
|
|
ShowMenu("nonpublic");
|
|
|
|
ShowMenu("admin");
|
|
|
|
|
|
|
|
if( !isset($submenus))
|
|
|
|
$submenus = 0;
|
|
|
|
|
|
|
|
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">
|
|
|
|
<tr>
|
|
|
|
<td width="160" class="menu">
|
|
|
|
<?php include ("./".$filepost.".".$index_nummer.$filepre); ?>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
<?PHP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( isset($_SESSION['UID']))
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<table align="center" class="border" cellpadding="3" cellspacing="1">
|
|
|
|
<tr>
|
|
|
|
<td width="160" class="menu">
|
2008-09-27 21:29:08 +02:00
|
|
|
<?php include("funktion_activeUser.php"); ?>
|
2008-09-10 05:42:44 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<?PHP
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</td>
|
|
|
|
|
|
|
|
<!-- ende des menue parts //-->
|