-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathajax.php
More file actions
71 lines (70 loc) · 1.24 KB
/
ajax.php
File metadata and controls
71 lines (70 loc) · 1.24 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
<?php
ob_start();
$action = $_GET['action'];
include 'admin_class.php';
$crud = new Action();
if($action == 'login'){
$login = $crud->login();
if($login)
echo $login;
}
if($action == 'logout'){
$logout = $crud->logout();
if($logout)
echo $logout;
}
if($action == 'save_user'){
$save = $crud->save_user();
if($save)
echo $save;
}
if($action == 'save_category'){
$save = $crud->save_category();
if($save)
echo $save;
}
if($action == 'delete_category'){
$delete = $crud->delete_category();
if($delete)
echo $delete;
}
if($action == 'save_voting'){
$save = $crud->save_voting();
if($save)
echo $save;
}
if($action == 'get_voting'){
$get = $crud->get_voting();
if($get)
echo $get;
}
if($action == 'update_voting'){
$update = $crud->update_voting();
if($update)
echo $update;
}
if($action == 'delete_voting'){
$delete = $crud->delete_voting();
if($delete)
echo $delete;
}
if($action == 'save_opt'){
$save = $crud->save_opt();
if($save)
echo $save;
}
if($action == 'delete_candidate'){
$delete = $crud->delete_candidate();
if($delete)
echo $delete;
}
if($action == 'save_settings'){
$save = $crud->save_settings();
if($save)
echo $save;
}
if($action == 'submit_vote'){
$save = $crud->submit_vote();
if($save)
echo $save;
}