summaryrefslogtreecommitdiff
path: root/includes/menu.php
blob: 6a209a0fb77a6e290ca1b2bacaaba0411cce35aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!-- anfang des menue parts //-->
  <td width="160"  valign="top">
<?php
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++) {
?>
<nav class="container">
    <?php include ("./".$filepost.".".$index_nummer.$filepre); ?>
</nav>
<?php


	}
}

if (isset ($_SESSION['UID'])) {
?>
<nav class="container">
    <?php include("funktion_activeUser.php"); ?>
</nav>
<?php


}
?>

<nav class="container">
<h4><?php echo Get_Text("Sprache") ?></h4>
<?php


include ("funktion_flag.php");
?>
</nav>

<!-- ende des menue parts //-->