summaryrefslogtreecommitdiff
path: root/www-ssl/menu.php
blob: f2789d17e3dd472458e0a95f05e619fa155d9915 (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
<?PHP
/*
<? echo $MenueTableStart; ?>

<h4><? echo Get_Text("menu_Name")?></h4>
<div align="left">
<ul type="disc">
<li><a href="index.php"><? echo Get_Text("menu_index");?></a></li>
<? //<li><a href="faq.php"><? echo Get_Text("menu_FAQ");? ></a></li>?>
<? //<li><a href="lageplan.php"><? echo Get_Text("menu_plan");? ></a></li>?>
<li><a href="makeuser.php"><? echo Get_Text("menu_MakeUser");?></a></li>
<li><a href="nonpublic/schichtplan_beamer.php"><? echo Get_Text("pub_menu_SchichtplanBeamer");?></a></li>
</ul>
</div>

<? echo $MenueTableEnd; ?>

*/

$Menu["Path"] = "";
$Menu["Name"] = Get_Text("menu_Name");
$Menu["Entry"][0]["File"] = "index.php";
$Menu["Entry"][0]["Name"] = Get_Text("menu_index");
$Menu["Entry"][0]["Line"] = "<br>";
$Menu["Entry"][1]["File"] = "faq.php";
$Menu["Entry"][1]["Name"] = Get_Text("menu_FAQ");
$Menu["Entry"][1]["Line"] = "<br>";
$Menu["Entry"][2]["File"] = "lageplan.php";
$Menu["Entry"][2]["Name"] = Get_Text("menu_plan");
$Menu["Entry"][2]["Line"] = "<br>";
$Menu["Entry"][3]["File"] = "makeuser.php";
$Menu["Entry"][3]["Name"] = Get_Text("menu_MakeUser");
$Menu["Entry"][3]["Line"] = "<br>";
$Menu["Entry"][4]["File"] = "nonpublic/schichtplan_beamer.php";
$Menu["Entry"][4]["Name"] = Get_Text("pub_menu_SchichtplanBeamer");

?>