-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
253 lines (236 loc) · 11.7 KB
/
index.php
File metadata and controls
253 lines (236 loc) · 11.7 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
<?php
session_start();
include "conf/connection.php";
require_once("auth.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Dashboard</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<!-- jvectormap -->
<link rel="stylesheet" href="plugins/jvectormap/jquery-jvectormap-1.2.2.css">
<!-- Theme style -->
<link rel="stylesheet" href="dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link rel="stylesheet" href="dist/css/skins/_all-skins.min.css">
<!-- DataTables -->
<link rel="stylesheet" href="plugins/datatables/dataTables.bootstrap.css">
<!-- Toastr -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css">
<!-- jQuery 2.2.3 -->
<script src="plugins/jQuery/jQuery-2.2.0.min.js"></script>
<style>
table.dataTable td.dataTables_empty{
text-align:center;
}
</style>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="hold-transition skin-green sidebar-mini">
<div class="wrapper">
<header class="main-header">
<!-- Logo -->
<a href="index.php" class="logo">
<!-- mini logo for sidebar mini 50x50 pixels -->
<span class="logo-mini"><b>A</b></span>
<!-- logo for regular state and mobile devices -->
<?php if($_SESSION["user"]["is_admin"] == 1) { ?>
<span class="logo-lg"><b>Admin</b>WSP</span>
<?php } else { ?>
<span class="logo-lg"><b>Member</b>WSP</span>
<?php } ?>
</a>
<!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle navigation</span>
</a>
<!-- Navbar Right Menu -->
<div class="navbar-custom-menu">
<ul class="nav navbar-nav">
<li class="dropdown user user-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<img src="dist/img/user2-160x160.jpg" class="user-image" alt="User Image">
<span class="hidden-xs"><?= $_SESSION['user']['name'] ?></span>
</a>
<ul class="dropdown-menu">
<!-- User image -->
<li class="user-header">
<img src="dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
<p>
<?= $_SESSION['user']['name'] ?>
</p>
</li>
<!-- Menu Footer-->
<li class="user-footer">
<div class="pull-left">
<a href="#" class="btn btn-default btn-flat">Profile</a>
</div>
<div class="pull-right">
<a href="logout.php" class="btn btn-default btn-flat">Sign out</a>
</div>
</li>
</ul>
</li>
</ul>
</div>
</nav>
</header>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less -->
<?php if($_SESSION["user"]["is_admin"] == 1) { ?>
<section class="sidebar">
<!-- Sidebar user panel -->
<div class="user-panel">
<div class="pull-left image">
<img src="dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
</div>
<div class="pull-left info">
<p><?= $_SESSION['user']['name'] ?></p>
<a href="#"><i class="fa fa-circle text-success"></i> Online</a>
</div>
</div>
<!-- sidebar menu: : style can be found in sidebar.less -->
<ul class="sidebar-menu">
<li class="header">MENU</li>
<li class="treeview">
<li <?php if (!isset($_GET['page']) == 1) echo "class='active'"; ?>><a href="index.php"><i
class="glyphicon glyphicon-dashboard"></i> <span>Dashboard</span></a></li>
</li>
<li class="treeview <?php if(strpos($_GET['page'], 'master') !== false) echo "active";?>">
<a href="#">
<i class="glyphicon glyphicon-briefcase"></i> <span>Master</span>
<span class="pull-right-container"><i class="fa fa-angle-left pull-right"></i></span>
</a>
<ul class="treeview-menu">
<li <?php if(isset($_GET['page']) && $_GET['page'] == "workshop") echo "class='active'";?>><a href="index.php?page=workshop"><i class="glyphicon glyphicon-education"></i>
<span>Master Workshop</span></a></li>
</ul>
</li>
<li class="treeview <?php if(strpos($_GET['page'], 'peserta') !== false) echo "active";?>">
<a href="#">
<i class="glyphicon glyphicon-user"></i> <span>Peserta</span>
<span class="pull-right-container"> <i class="fa fa-angle-left pull-right"></i></span>
</a>
<ul class="treeview-menu">
<li <?php if(isset($_GET['page']) && $_GET['page'] == "peserta") echo "class='active'";?>><a href="index.php?page=peserta"><i class="glyphicon glyphicon-user"></i> <span>Daftar Peserta</span></a></li>
</li>
<li><a target="_blank" href="pages/register.php"><i class="glyphicon glyphicon-education"></i><span>Link Register Peserta</span></a></li>
</ul>
</li>
<li class="header">SETTING</li>
<li class="treeview">
<li <?php if(isset($_GET['page']) && $_GET['page'] == "users") echo "class='active'";?>><a href="index.php?page=users"><i class="glyphicon glyphicon-user"></i> <span>Users</span></a></li>
</li>
</ul>
</section>
<?php } else { ?>
<section class="sidebar">
<!-- Sidebar user panel -->
<div class="user-panel">
<div class="pull-left image">
<img src="dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
</div>
<div class="pull-left info">
<p><?= $_SESSION['user']['name'] ?></p>
<a href="#"><i class="fa fa-circle text-success"></i> Online</a>
</div>
</div>
<!-- sidebar menu: : style can be found in sidebar.less -->
<ul class="sidebar-menu">
<li class="header">MENU</li>
<li class="treeview">
<li <?php if (!isset($_GET['page']) == 1) echo "class='active'"; ?>><a href="index.php">
<i class="glyphicon glyphicon-dashboard"></i> <span>Dashboard</span></a></li>
</li>
<li <?php if(isset($_GET['page']) && $_GET['page'] == "pelatihan") echo "class='active'";?>><a href="index.php?page=pelatihan">
<i class="glyphicon glyphicon-education"></i> <span>Pelatihan</span></a></li>
</li>
<li <?php if(isset($_GET['page']) && $_GET['page'] == "orders") echo "class='active'";?>><a href="index.php?page=orders">
<i class="glyphicon glyphicon-barcode"></i> <span>My Order</span></a></li>
</li>
<li><a target="_blank" href="pages/tracking.php"><i class="glyphicon glyphicon-transfer"></i><span>Tracking Status Order</span></a></li>
<li><a target="_blank" href="pages/confirmation.php"><i class="glyphicon glyphicon-upload"></i><span>Upload Bukti Transfer</span></a></li>
</ul>
</section>
<?php } ?>
<!-- /.sidebar -->
</aside>
<!-- Content -->
<?php include "conf/route.php"; ?>
<!-- /Content -->
<footer class="main-footer">
<div class="pull-right hidden-xs">
<b>Version</b> 0.0.1
</div>
<strong>Copyright © 2020 Made with <span style="color: #e25555;">♥</span> with <a href="#">Kelompok 6</a>.</strong> All rights
reserved.
</footer>
</div>
<!-- ./wrapper -->
<script>
$(function(){
<?php
if(isset($_SESSION['toastr']))
{
echo 'toastr.'.$_SESSION['toastr']['type'].'("'.$_SESSION['toastr']['message'].'", "'.$_SESSION['toastr']['title'].'")';
unset($_SESSION['toastr']);
}
?>
});
</script>
<!-- jQuery 2.2.0 -->
<script src="plugins/jQuery/jQuery-2.2.0.min.js"></script>
<!-- Bootstrap 3.3.6 -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<!-- FastClick -->
<script src="plugins/fastclick/fastclick.js"></script>
<!-- AdminLTE App -->
<script src="dist/js/app.min.js"></script>
<!-- Sparkline -->
<script src="plugins/sparkline/jquery.sparkline.min.js"></script>
<!-- jvectormap -->
<script src="plugins/jvectormap/jquery-jvectormap-1.2.2.min.js"></script>
<script src="plugins/jvectormap/jquery-jvectormap-world-mill-en.js"></script>
<!-- SlimScroll 1.3.0 -->
<script src="plugins/slimScroll/jquery.slimscroll.min.js"></script>
<!-- ChartJS 1.0.1 -->
<script src="plugins/chartjs/Chart.min.js"></script>
<!-- DataTables -->
<script src="plugins/datatables/jquery.dataTables.min.js"></script>
<script src="plugins/datatables/dataTables.bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
<script type="text/javascript">
function refreshNumberFormat() {
$('.number-format').on('keypress', function(e){
return (e.charCode >= 48 && e.charCode <= 57);
}).on('keyup', function(){
var n = parseInt($(this).val().replace(/\D/g,''));
$(this).val($(this).val() == '' ? '' : n.toLocaleString('ID'));
});
}
$(document).ready(function($){
// Format mata uang.
refreshNumberFormat();
})
</script>
</body>
</html>