-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.php
56 lines (49 loc) · 1.73 KB
/
index.php
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
53
54
55
56
<?php
include("include/default_config.php");
include("config.php");
include("include/lang.php");
include("include/header.php");
?>
<body>
<?php
include("include/navbar.php");
?>
<!-- start: Header -->
<div class="container-fluid-full">
<div class="row-fluid">
<?php
include("include/menu.php");
?>
<!-- start: Content -->
<div id="content" class="span10">
<?php
if ($_GET['page']) {
if ($_GET['page'] == "lh") include("pages/lh.php");
else if ($_GET['page'] == "repeaters") include("pages/repeaters.php");
else if ($_GET['page'] == "dongles") include("pages/dongles.php");
else if ($_GET['page'] == "reflector") include("pages/reflector.php");
else if ($_GET['page'] == "masters") include("pages/masters.php");
else if ($_GET['page'] == "erouting") include("pages/extended_routing.php");
else if ($_GET['page'] == "display") include("pages/display.php");
else if ($_GET['page'] == "alerts") include("pages/alerts.php");
else if ($_GET['page'] == "callstats") include("pages/callstats.php");
else include("pages/dashboard.php");
}else
include("pages/dashboard.php");
?>
<!-- end: Content -->
</div><!--/#content.span10-->
</div><!--/fluid-row-->
<?php include("include/config_menu.php"); ?>
<div class="clearfix"></div>
<footer>
<p>
<span style="text-align:left;float:left">Application written by PD0ZRY Template: © 2013 <a href="http://jiji262.github.io/Bootstrap_Metro_Dashboard/">Bootstrap Metro Dashboard</a></span>
</p>
</footer>
<!-- start: JavaScript-->
<script src="js/counter.js"></script>
<script src="js/custom.js"></script>
<!-- end: JavaScript-->
</body>
</html>