-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_class.php
313 lines (301 loc) · 8.23 KB
/
admin_class.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
<?php
session_start();
ini_set('display_errors', 1);
Class Action {
private $db;
public function __construct() {
ob_start();
include 'db_connect.php';
$this->db = $conn;
}
function __destruct() {
$this->db->close();
ob_end_flush();
}
function login(){
extract($_POST);
$qry = $this->db->query("SELECT * FROM users where username = '".$username."' and password = '".md5($password)."' ");
if($qry->num_rows > 0){
foreach ($qry->fetch_array() as $key => $value) {
if($key != 'passwors' && !is_numeric($key))
$_SESSION['login_'.$key] = $value;
}
return 1;
}else{
return 3;
}
}
function login2(){
extract($_POST);
$qry = $this->db->query("SELECT * FROM complainants where email = '".$email."' and password = '".md5($password)."' ");
if($qry->num_rows > 0){
foreach ($qry->fetch_array() as $key => $value) {
if($key != 'passwors' && !is_numeric($key))
$_SESSION['login_'.$key] = $value;
}
return 1;
}else{
return 3;
}
}
function logout(){
session_destroy();
foreach ($_SESSION as $key => $value) {
unset($_SESSION[$key]);
}
header("location:login.php");
}
function logout2(){
session_destroy();
foreach ($_SESSION as $key => $value) {
unset($_SESSION[$key]);
}
header("location:../index.php");
}
function save_user(){
extract($_POST);
$data = " name = '$name' ";
$data .= ", username = '$username' ";
if(!empty($password))
$data .= ", password = '".md5($password)."' ";
$data .= ", type = '$type' ";
$chk = $this->db->query("Select * from users where username = '$username' and id !='$id' ")->num_rows;
if($chk > 0){
return 2;
exit;
}
if(empty($id)){
$save = $this->db->query("INSERT INTO users set ".$data);
}else{
$save = $this->db->query("UPDATE users set ".$data." where id = ".$id);
}
if($save){
return 1;
}
}
function delete_user(){
extract($_POST);
$delete = $this->db->query("DELETE FROM users where id = ".$id);
if($delete)
return 1;
}
function signup(){
extract($_POST);
$data = " name = '$name' ";
$data .= ", email = '$email' ";
$data .= ", address = '$address' ";
$data .= ", contact = '$contact' ";
$data .= ", password = '".md5($password)."' ";
$chk = $this->db->query("SELECT * from complainants where email ='$email' ".(!empty($id) ? " and id != '$id' " : ''))->num_rows;
if($chk > 0){
return 3;
exit;
}
if(empty($id))
$save = $this->db->query("INSERT INTO complainants set $data");
else
$save = $this->db->query("UPDATE complainants set $data where id=$id ");
if($save){
if(empty($id))
$id = $this->db->insert_id;
$qry = $this->db->query("SELECT * FROM complainants where id = $id ");
if($qry->num_rows > 0){
foreach ($qry->fetch_array() as $key => $value) {
if($key != 'password' && !is_numeric($key))
$_SESSION['login_'.$key] = $value;
}
return 1;
}else{
return 3;
}
}
}
function update_account(){
extract($_POST);
$data = " name = '".$firstname.' '.$lastname."' ";
$data .= ", username = '$email' ";
if(!empty($password))
$data .= ", password = '".md5($password)."' ";
$chk = $this->db->query("SELECT * FROM users where username = '$email' and id != '{$_SESSION['login_id']}' ")->num_rows;
if($chk > 0){
return 2;
exit;
}
$save = $this->db->query("UPDATE users set $data where id = '{$_SESSION['login_id']}' ");
if($save){
$data = '';
foreach($_POST as $k => $v){
if($k =='password')
continue;
if(empty($data) && !is_numeric($k) )
$data = " $k = '$v' ";
else
$data .= ", $k = '$v' ";
}
if($_FILES['img']['tmp_name'] != ''){
$fname = strtotime(date('y-m-d H:i')).'_'.$_FILES['img']['name'];
$move = move_uploaded_file($_FILES['img']['tmp_name'],'assets/uploads/'. $fname);
$data .= ", avatar = '$fname' ";
}
$save_alumni = $this->db->query("UPDATE alumnus_bio set $data where id = '{$_SESSION['bio']['id']}' ");
if($data){
foreach ($_SESSION as $key => $value) {
unset($_SESSION[$key]);
}
$login = $this->login2();
if($login)
return 1;
}
}
}
function save_settings(){
extract($_POST);
$data = " name = '".str_replace("'","’",$name)."' ";
$data .= ", email = '$email' ";
$data .= ", contact = '$contact' ";
$data .= ", about_content = '".htmlentities(str_replace("'","’",$about))."' ";
if($_FILES['img']['tmp_name'] != ''){
$fname = strtotime(date('y-m-d H:i')).'_'.$_FILES['img']['name'];
$move = move_uploaded_file($_FILES['img']['tmp_name'],'assets/uploads/'. $fname);
$data .= ", cover_img = '$fname' ";
}
// echo "INSERT INTO system_settings set ".$data;
$chk = $this->db->query("SELECT * FROM system_settings");
if($chk->num_rows > 0){
$save = $this->db->query("UPDATE system_settings set ".$data);
}else{
$save = $this->db->query("INSERT INTO system_settings set ".$data);
}
if($save){
$query = $this->db->query("SELECT * FROM system_settings limit 1")->fetch_array();
foreach ($query as $key => $value) {
if(!is_numeric($key))
$_SESSION['system'][$key] = $value;
}
return 1;
}
}
function save_category(){
extract($_POST);
$data = "";
foreach($_POST as $k => $v){
if(!in_array($k, array('id')) && !is_numeric($k)){
if(empty($data)){
$data .= " $k='$v' ";
}else{
$data .= ", $k='$v' ";
}
}
}
$check = $this->db->query("SELECT * FROM categories where name ='$name' ".(!empty($id) ? " and id != {$id} " : ''))->num_rows;
if($check > 0){
return 2;
exit;
}
if(empty($id)){
$save = $this->db->query("INSERT INTO categories set $data");
}else{
$save = $this->db->query("UPDATE categories set $data where id = $id");
}
if($save)
return 1;
}
function delete_category(){
extract($_POST);
$delete = $this->db->query("DELETE FROM categories where id = ".$id);
if($delete){
return 1;
}
}
function save_product(){
extract($_POST);
$data = "";
foreach($_POST as $k => $v){
if(!in_array($k, array('id','status')) && !is_numeric($k)){
if($k == 'price'){
$v= str_replace(',', '', $v);
}
if(empty($data)){
$data .= " $k='$v' ";
}else{
$data .= ", $k='$v' ";
}
}
}
if(isset($status)){
$data .= ", status=1 ";
}else{
$data .= ", status=0 ";
}
$check = $this->db->query("SELECT * FROM products where name ='$name' ".(!empty($id) ? " and id != {$id} " : ''))->num_rows;
if($check > 0){
return 2;
exit;
}
if(empty($id)){
$save = $this->db->query("INSERT INTO products set $data");
}else{
$save = $this->db->query("UPDATE products set $data where id = $id");
}
if($save)
return 1;
}
function delete_product(){
extract($_POST);
$delete = $this->db->query("DELETE FROM products where id = ".$id);
if($delete){
return 1;
}
}
function save_order(){
extract($_POST);
$data = " total_amount = '$total_amount' ";
$data .= ", amount_tendered = '$total_tendered' ";
$data .= ", order_number = '$order_number' ";
if(empty($id)){
$i = 0;
while($i == 0){
$ref_no = mt_rand(1,999999999999);
$ref_no = sprintf("%'012d", $ref_no);
$chk = $this->db->query("SELECT * FROM orders where ref_no ='$ref_no' ");
if($chk->num_rows <= 0){
$i = 1;
}
}
$data .= ", ref_no = '$ref_no' ";
$save = $this->db->query("INSERT INTO orders set $data");
if($save){
$id = $this->db->insert_id;
}
}else{
$save = $this->db->query("UPDATE orders set $data where id = $id");
}
if($save){
$ids = array_filter($item_id);
$ids = implode(',',$ids);
if(!empty($ids))
$this->db->query("DELETE FROM order_items where order_id = $id and id not ($ids) ");
foreach($item_id as $k=>$v){
$data = " order_id = $id ";
$data .= ", product_id = '{$product_id[$k]}' ";
$data .= ", qty = '{$qty[$k]}' ";
$data .= ", price = '{$price[$k]}' ";
$data .= ", amount = '{$amount[$k]}' ";
if(empty($v)){
$this->db->query("INSERT INTO order_items set $data");
}else{
$this->db->query("UPDATE order_items set $data where id = $v");
}
}
return $id;
}
}
function delete_order(){
extract($_POST);
$delete = $this->db->query("DELETE FROM orders where id = ".$id);
$delete2 = $this->db->query("DELETE FROM order_items where order_id = ".$id);
if($delete){
return 1;
}
}
}