-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadministrator.php
459 lines (431 loc) · 21.7 KB
/
administrator.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
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
<?php
session_start();
require 'function/functions.php';
if(isset($_COOKIE['login'])) {
if ($_COOKIE['level'] == 'admin') {
$_SESSION['login'] = true;
$ambilNama = $_COOKIE['login'];
}
elseif ($_COOKIE['level'] == 'user') {
$_SESSION['login'] = true;
header('Location: index');
}
}
elseif ($_SESSION['level'] == 'admin') {
$ambilNama = $_SESSION['user'];
}
else {
if ($_SESSION['level'] == 'user') {
header('Location: index');
exit;
}
}
if(empty($_SESSION['login'])) {
header('Location: login');
exit;
}
//konfigurasi pagenation
$jumlahTabel = 5;
$jumlahData = count(query("SELECT * FROM users WHERE username NOT LIKE 'admin'"));
$jumlahHalaman = ceil($jumlahData / $jumlahTabel);
$halamanAktif = (isset($_GET['halaman'])) ? $_GET['halaman'] : 1;
$awalData = ($jumlahTabel * $halamanAktif) - $jumlahTabel;
$dataUser = query("SELECT * FROM users WHERE username NOT LIKE 'admin' LIMIT $awalData, $jumlahTabel");
///konfigurasi pagenation
$jumlahUser = mysqli_query($koneksi, "SELECT * FROM users WHERE username NOT LIKE 'admin'");
$jumlahUserAktif = mysqli_query($koneksi, "SELECT * FROM users WHERE status = 'aktif' AND username NOT LIKE 'admin'");
$jumlahUserTidakAktif = mysqli_query($koneksi, "SELECT * FROM users WHERE status = 'tidak aktif' AND username NOT LIKE 'admin'");
?>
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" href="img/icon.png">
<title>Dompet-Qu - Admin Site</title>
<link rel="stylesheet" href="css/dashboard.css">
<link rel="stylesheet" href="css/bootstrap-reboot.min.css">
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/admin.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous">
<link rel="stylesheet" href="css/styler.css?v=1.0">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css">
<script src="js/jquery-3.3.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.2/sweetalert.min.js"></script>
<style>
.background {
background-image: url('img/header1.jpg');
background-color: rgba(0,0,0,0.7);
background-position: center;
background-size: cover;
height: 90%;
background-attachment: fixed;
position: relative;
background-size: cover;
width: 100%;
overflow: hidden;
z-index:-55;
}
</style>
<body>
<!-- <div class="header">
<h3 class="text-secondary font-weight-bold float-left logo">Dompet</h3>
<h3 class="text-secondary float-left logo2">- Qu</h3>
<a href="logout.php">
<div class="logout">
<i class="fas fa-ttyy-out-alt float-right log"></i>
<p class="float-right logout">Logout</p>
</div>
</a>
</div> -->
<div class="content">
<div class="isi mx-auto ">
<h2>DOMPET - QU </h2>
<h4><?= $ambilNama ?> Site</h4><br>
<a class="submit" href="logout" style="margin-left: 600px; text-decoration: none;"><i class="fas fa-sign-out-alt"></i>LOGOUT</a>
</div>
</div>
<header class="background"></header>
<div class="container kotak" id="container" style="border: none;">
<div class="row cardview" id="row">
<div class="col-md-4 jarak">
<div class="card card-stats card-warning" style="background: #347ab8;">
<div class="card-body ">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fa fa-users ikon" aria-hidden="true"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center tulisan">
<div class="numbers">
<p class="card-category ket head">Jumlah User</p>
<h4 class="card-title ket total"><?= mysqli_num_rows($jumlahUser) ?> User
</h4>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-4 jarak">
<a style="text-decoration: none; cursor: pointer;" class="btn-userAktif">
<div class="card card-stats card-warning" style="background:#5db85b ">
<div class="card-body ">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fa fa-user ikon"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center tulisan">
<div class="numbers">
<p class="card-category ket head">User Aktif</p>
<h4 class="card-title ket total"><?= mysqli_num_rows($jumlahUserAktif) ?> User</h4>
</div>
</div>
</div>
</div>
</div>
<div class="overlay" style="background: #5db85b;">
<div class="card-body">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fas fa-eye ikon2"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center">
<p class="tulisan">Lihat User</p>
</div>
</div>
</div>
</div>
</a>
</div>
<div class="col-md-4 jarak">
<a style="text-decoration: none; cursor: pointer;" class="btn-userNonAktif">
<div class="card card-stats card-warning" style="background: #d95350;">
<div class="card-body">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fas fa-power-off ikon"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center tulisan">
<div class="numbers">
<p class="card-category ket head">User Tidak Aktif</p>
<h4 class="card-title ket total"><?= mysqli_num_rows($jumlahUserTidakAktif) ?> User</h4>
</div>
</div>
</div>
</div>
</div>
<div class="overlay" style="background: #d95350;">
<div class="card-body">
<div class="row">
<div class="col-5">
<div class="icon-big text-center">
<i class="fas fa-eye ikon2"></i>
</div>
</div>
<div class="col-7 d-flex align-items-center">
<p class="tulisan">Lihat User</p>
</div>
</div>
</div>
</div>
</a>
</div>
</div>
<!-- bagian pencarian -->
<div class="row cari-filter" style="margin-top: 10px;">
<div class="col-lg-12" style="margin-top: 20px;">
<div class="input-group">
<input type="text" name="cari" class="form-control border-right-0 cari" id="keyword" placeholder="Search" style="width: 90%;padding: 5px 10px; font-size: 18px;" autocomplete="off">
<div class="input-group-append">
<span class="input-group-text bg-white border-left-0 icone"><i class="fa fa-search" style="font-size: 23px;"></i></span>
</div>
</div>
</div>
</div>
<!-- bagian pencarian -->
<!-- bagian isi tabel -->
<div class="headline" style="height: 40px;margin-top: 15px;">
<h4 class="ml-3 mt-1" style="color: #4b4f58">Data User</h4>
</div>
<div class="container tampil" id="container">
<div class="row" id="row">
<div class="col-md-12">
<div class="table-responsive">
<table class="table table-sm table-hover table-striped table-bordered">
<tr>
<th>ID User</th>
<th>Username</th>
<th>Email</th>
<th>No Rekening</th>
<th>Level</th>
<th>Status</th>
<th>Aksi</th>
</tr>
<?php foreach($dataUser as $row) : ?>
<?php if ($row['username'] != 'admin') : ?>
<tr id="<?= $row['id_user'] ?>" style="cursor: pointer">
<td data-target="id_user" class="data" data-id="<?= $row['id_user'] ?>"><?= $row['id_user'] ?></td>
<td data-target="username" class="data" data-id="<?= $row['id_user'] ?>"><?= $row['username'] ?></td>
<td data-target="email" class="data" data-id="<?= $row['id_user'] ?>"><?= $row['email'] ?></td>
<td data-target="no_rek"><?= $row['no_rek'] ?></td>
<td class="data" data-id="<?= $row['id_user'] ?>"><?= $row['level'] ?></td>
<td data-target="status" class="data" data-id="<?= $row['id_user'] ?>"><?= $row['status']?></td>
<td>
<button data-id="<?= $row['id_user'] ?>" data-role="update" class="btn btn-outline-primary openBtn">
<i class="fas fa-edit"></i> edit
</button>
</td>
</tr>
<?php endif; ?>
<?php endforeach; ?>
</table>
</div>
</div>
</div>
</div>
<!-- /bagian isi tabel -->
<!-- pagenation -->
<div class="panel-footer">
<nav class="float-right page">
<ul class="pagination">
<?php if ($halamanAktif > 1) : ?>
<li class="page-item">
<a href="?halaman=<?= $halamanAktif - 1 ?>" class="page-link">Previous</a>
</li>
<?php else : ?>
<li class="page-item">
<div class="page-link">Previous</div>
</li>
<?php endif; ?>
<?php for ($i = 1; $i <= $jumlahHalaman; $i++) : ?>
<?php if ($i == $halamanAktif) : ?>
<li class="page-item active" aria-current="page">
<a class="page-link" href="?halaman=<?= $i; ?>"><?= $i; ?></a>
</li>
<?php else : ?>
<li class="page-item" aria-current="page">
<a class="page-link" href="?halaman=<?= $i; ?>"><?= $i; ?></a>
</li>
<?php endif; ?>
<?php endfor; ?>
<?php if ($halamanAktif < $jumlahHalaman) : ?>
<li>
<a href="?halaman=<?= $halamanAktif + 1 ?>" class="page-link" href="#">Next</a>
</li>
<?php else : ?>
<li class="page-item">
<div class="page-link">Next</div>
</li>
<?php endif; ?>
</ul>
</nav>
</div>
<!-- /pagenation -->
</div>
</div>
</div>
<br>
<!-- Modal edit data -->
<div class="modal fade" id="myModal2" data-backdrop="static">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Ubah Data User</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- isi form -->
<div class="modal-body">
<input type="hidden" id="userId" class="form-control">
<div class="form-group">
<label for="id_user">ID User</label>
<input type="text" class="form-control" id="id_user" disabled>
</div>
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" id="username" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="text" class="form-control" id="email" required>
</div>
<div class="form-group">
<label for="status">Status</label>
<select class="form-control" id="status">
<option value="aktif">Aktif</option>
<option value="tidak aktif">Tidak Aktif</option>
</select>
</div>
</div>
<!-- footer form -->
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Tutup</button>
<button id="save" class="btn btn-primary">simpan</button>
</div>
</div>
</div>
</div>
<!-- Modal edit data -->
<!-- Modal user aktif -->
<div class="modal fade" id="myModal3" data-backdrop="static">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Data user aktif</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- isi form -->
<script type="text/javascript" src="js/pisahTitik.js"></script>
<div class="modal-body">
<div class="table-responsive">
<table class="table table-sm table-striped table-bordered">
<tr>
<th>ID User</th>
<th>Username</th>
<th>Email</th>
<th>Level</th>
<th>Status</th>
</tr>
<?php foreach($jumlahUserAktif as $row) : ?>
<?php if($row['username'] != 'admin') : ?>
<tr>
<td><?= $row['id_user'] ?></td>
<td><?= $row['username'] ?></td>
<td><?= $row['email'] ?></td>
<td><?= $row['level'] ?></td>
<td><?= $row['status']?></td>
</tr>
<?php endif; ?>
<?php endforeach; ?>
</table>
</div>
</div>
<!-- footer form -->
<div class="modal-footer">
<button type="button" class="btn btn-info" data-dismiss="modal">Tutup</button>
</div>
</div>
</div>
</div>
<!-- Modal user aktif -->
<!-- Modal user non-aktif -->
<div class="modal fade" id="myModal4" data-backdrop="static">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalCenterTitle">Data user tidak aktif</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- isi form -->
<script type="text/javascript" src="js/pisahTitik.js"></script>
<div class="modal-body">
<div class="table-responsive">
<table class="table table-sm table-striped table-bordered">
<tr>
<th>ID User</th>
<th>Username</th>
<th>Email</th>
<th>Level</th>
<th>Status</th>
</tr>
<?php foreach($jumlahUserTidakAktif as $row) : ?>
<tr>
<td><?= $row['id_user'] ?></td>
<td><?= $row['username'] ?></td>
<td><?= $row['email'] ?></td>
<td><?= $row['level'] ?></td>
<td><?= $row['status']?></td>
</tr>
<?php endforeach; ?>
</table>
</div>
</div>
<!-- footer form -->
<div class="modal-footer">
<button type="button" class="btn btn-info" data-dismiss="modal">Tutup</button>
</div>
</div>
</div>
</div>
<!-- Modal user non-aktif -->
<!-- banyak modal -->
<script>
$('.openBtn').click(function () {
$('#myModal2').modal({
show: true
});
})
$('.btn-userAktif').click(function () {
$('#myModal3').modal({
show: true
});
})
$('.btn-userNonAktif').click(function () {
$('#myModal4').modal({
show: true
});
})
</script>
<script src="ajax/js/updateUser.js"></script>
<script src="ajax/js/cariUser.js"></script>
<script src="js/bootstrap.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js"></script>
</body>
</html>