-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadminmenu.php
32 lines (30 loc) · 1.28 KB
/
adminmenu.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
<?php
$filename = '';
$arr = explode("/", $_SERVER['PHP_SELF']);
$filename = end($arr);
?>
<div class="navbar">
<ul class="usermenu">
<li class="<?php if($filename === "admin_landing.php") echo "active" ?>">
<a href="admin_landing.php">Dashboard</a>
</li>
<li class="<?php if($filename === "admin_view_bookings.php") echo "active" ?>">
<a href="admin_view_bookings.php">View Bookings</a>
</li>
<li class="<?php if($filename === "admin_manage_routes.php") echo "active" ?>">
<a href="admin_manage_routes.php">Add Routes</a>
</li>
<li class="<?php if($filename === "admin_view_routes.php") echo "active" ?>">
<a href="admin_view_routes.php">Manage Routes</a>
</li>
<li class="<?php if($filename === "admin_view_history.php") echo "active" ?>">
<a href="admin_view_history.php">View History</a>
</li>
<li class="<?php if($filename === "admin_view_complaints.php") echo "active" ?>">
<a href="admin_view_complaints.php">View Complaints</a>
</li>
<li>
<a href="logout.php">Logout</a>
</li>
</ul>
</div>