-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathedit_tipe_user.php
164 lines (146 loc) · 8.92 KB
/
edit_tipe_user.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
<?php
//cek session
if(empty($_SESSION['admin'])){
$_SESSION['err'] = '<center>Anda harus login terlebih dahulu!</center>';
header("Location: ./");
die();
} else {
if($_REQUEST['id_user'] == 1){
echo '<script language="javascript">
window.alert("ERROR! Super Admin tidak boleh diedit");
window.location.href="./admin.php?page=sett&sub=usr";
</script>';
} else {
if($_REQUEST['id_user'] == $_SESSION['id_user']){
echo '<script language="javascript">
window.alert("ERROR! Anda tidak diperbolehkan mengedit tipe akun Anda sendiri. Hubungi super admin untuk mengeditnya");
window.location.href="./admin.php?page=sett&sub=usr";
</script>';
} else {
if(isset($_REQUEST['submit'])){
$id_user = $_REQUEST['id_user'];
$admin = $_REQUEST['admin'];
if($id_user == $_SESSION['id_user']){
echo '<script language="javascript">
window.alert("ERROR! Anda tidak boleh mengedit akun Anda sendiri. Hubungi super admin untuk mengeditnya");
window.location.href="./admin.php?page=sett&sub=usr";
</script>';
} else {
if(!preg_match("/^[2-3]*$/", $admin)){
$_SESSION['tipeuser'] = 'Form Tipe User hanya boleh mengandung karakter angka 2 atau 3';
echo '<script language="javascript">window.history.back();</script>';
} else {
$query = mysqli_query($config, "UPDATE tbl_user SET admin='$admin' WHERE id_user='$id_user'");
if($query == true){
$_SESSION['succEdit'] = 'SUKSES! Tipe user berhasil diupdate';
header("Location: ./admin.php?page=sett&sub=usr");
die();
} else {
$_SESSION['errQ'] = 'ERROR! Ada masalah dengan query';
echo '<script language="javascript">
window.location.href="./admin.php?page=sett&sub=usr&act=edit&id_user='.$id_user.'";
</script>';
}
}
}
} else {
$id_user = mysqli_real_escape_string($config, $_REQUEST['id_user']);
$query = mysqli_query($config, "SELECT * FROM tbl_user WHERE id_user='$id_user'");
if(mysqli_num_rows($query) > 0){
$no = 1;
while($row = mysqli_fetch_array($query)){?>
<!-- Row Start -->
<div class="row">
<!-- Secondary Nav START -->
<div class="col s12">
<nav class="secondary-nav">
<div class="nav-wrapper blue-grey darken-1">
<ul class="left">
<li class="waves-effect waves-light tooltipped" data-position="right" data-tooltip="Menu ini hanya untuk mengedit tipe user. Username dan password bisa diganti lewat menu profil"><a href="#" class="judul"><i class="material-icons">mode_edit</i> Edit Tipe User</a></li>
</ul>
</div>
</nav>
</div>
<!-- Secondary Nav END -->
</div>
<!-- Row END -->
<?php
if(isset($_SESSION['errQ'])){
$errQ = $_SESSION['errQ'];
echo '<div id="alert-message" class="row">
<div class="col m12">
<div class="card red lighten-5">
<div class="card-content notif">
<span class="card-title red-text"><i class="material-icons md-36">clear</i> '.$errQ.'</span>
</div>
</div>
</div>
</div>';
unset($_SESSION['errQ']);
}
?>
<!-- Row form Start -->
<div class="row jarak-form">
<!-- Form START -->
<form class="col s12" method="post" action="?page=sett&sub=usr&act=edit">
<!-- Row in form START -->
<div class="row">
<div class="input-field col s6">
<input type="hidden" value="<?php echo $row['id_user'] ;?>" name="id_user">
<i class="material-icons prefix md-prefix">account_circle</i>
<input id="username" type="text" value="<?php echo $row['username'] ;?>" readonly class="grey-text">
<label for="username">Username</label>
</div>
<div class="input-field col s6">
<i class="material-icons prefix md-prefix">text_fields</i>
<input id="username" type="text" value="<?php echo $row['nama'] ;?>" readonly class="grey-text">
<label for="username">Nama</label>
</div>
<div class="input-field col s6">
<i class="material-icons prefix md-prefix">supervisor_account</i><label>Pilih tipe user</label><br/>
<div class="input-field col s11 right">
<select class="browser-default" name="admin" id="admin" required>
<option value="<?php echo $row['admin']; ?>">
<?php
if($row['admin'] == 2){
echo 'Administrator';
} else {
echo 'User Biasa';
}
?>
</option>
<option value="3">User Biasa</option>
<option value="2">Administrator</option>
</select>
</div>
<?php
if(isset($_SESSION['tipeuser'])){
$tipeuser = $_SESSION['tipeuser'];
echo '<div id="alert-message" class="callout bottom z-depth-1 red lighten-4 red-text">'.$tipeuser.'</div>';
unset($_SESSION['tipeuser']);
}
?>
</div>
</div>
<!-- Row in form END -->
<br/>
<div class="row">
<div class="col 6">
<button type="submit" name="submit" class="btn-large blue waves-effect waves-light">SIMPAN <i class="material-icons">done</i></button>
</div>
<div class="col 6">
<a href="?page=sett&sub=usr" class="btn-large deep-orange waves-effect waves-light">BATAL <i class="material-icons">clear</i></a>
</div>
</div>
</form>
<!-- Form END -->
</div>
<!-- Row form END -->
<?php
}
}
}
}
}
}
?>