-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.php
274 lines (222 loc) · 7.19 KB
/
index.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
<?php
require_once 'config.php';
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html lang="en" class="lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html lang="en" class="lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html lang="en" class="lt-ie9"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if gt IE 9]><!--> <html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<title>Simple Management Menu</title>
<link rel="stylesheet" type="text/css" href="./style.css">
<link rel="stylesheet" href="./font-awesome/css/font-awesome.min.css">
</head>
<body>
<div id="load"></div>
<menu id="nestable-menu">
<button type="button" data-action="expand-all">Expand All</button>
<button type="button" data-action="collapse-all">Collapse All</button>
</menu>
<table>
<tr>
<td>Label</td>
<td>:</td>
<td><input type="text" id="label" placeholder="Fill label" required></td>
</tr>
<tr>
<td>Link</td>
<td>:</td>
<td><input type="text" id="link" placeholder="Fill link" required></td>
</tr>
<tr>
<td></td>
<td></td>
<td><button id="submit">Submit</button> <button id="reset">Reset</button></td>
</tr>
</table>
<input type="hidden" id="id">
<br/><br />
<div class="cf nestable-lists">
<div class="dd" id="nestable">
<?php
$query = $db->query("select * from tbl_menu order by sort ");
$ref = [];
$items = [];
while($data = $query->fetch(PDO::FETCH_OBJ)) {
$thisRef = &$ref[$data->id];
$thisRef['parent'] = $data->parent;
$thisRef['label'] = $data->label;
$thisRef['link'] = $data->link;
$thisRef['id'] = $data->id;
if($data->parent == 0) {
$items[$data->id] = &$thisRef;
} else {
$ref[$data->parent]['child'][$data->id] = &$thisRef;
}
}
function get_menu($items,$class = 'dd-list') {
$html = "<ol class=\"".$class."\" id=\"menu-id\">";
foreach($items as $key=>$value) {
$html.= '<li class="dd-item dd3-item" data-id="'.$value['id'].'" >
<div class="dd-handle dd3-handle">Drag</div>
<div class="dd3-content"><span id="label_show'.$value['id'].'">'.$value['label'].'</span>
<span class="span-right">/<span id="link_show'.$value['id'].'">'.$value['link'].'</span>
<a class="edit-button" id="'.$value['id'].'" label="'.$value['label'].'" link="'.$value['link'].'" ><i class="fa fa-pencil"></i></a>
<a class="del-button" id="'.$value['id'].'"><i class="fa fa-trash"></i></a></span>
</div>';
if(array_key_exists('child',$value)) {
$html .= get_menu($value['child'],'child');
}
$html .= "</li>";
}
$html .= "</ol>";
return $html;
}
print get_menu($items);
?>
</div>
</div>
<p></p>
<input type="hidden" id="nestable-output">
<button id="save">Save</button>
<script src="./jquery.min.js"></script>
<script src="./jquery.nestable.js"></script>
<script>
$(document).ready(function()
{
var updateOutput = function(e)
{
var list = e.length ? e : $(e.target),
output = list.data('output');
if (window.JSON) {
output.val(window.JSON.stringify(list.nestable('serialize')));//, null, 2));
} else {
output.val('JSON browser support required for this demo.');
}
};
// activate Nestable for list 1
$('#nestable').nestable({
group: 1
})
.on('change', updateOutput);
// output initial serialised data
updateOutput($('#nestable').data('output', $('#nestable-output')));
$('#nestable-menu').on('click', function(e)
{
var target = $(e.target),
action = target.data('action');
if (action === 'expand-all') {
$('.dd').nestable('expandAll');
}
if (action === 'collapse-all') {
$('.dd').nestable('collapseAll');
}
});
});
</script>
<script>
$(document).ready(function(){
$("#load").hide();
$("#submit").click(function(){
$("#load").show();
var dataString = {
label : $("#label").val(),
link : $("#link").val(),
id : $("#id").val()
};
$.ajax({
type: "POST",
url: "save_menu.php",
data: dataString,
dataType: "json",
cache : false,
success: function(data){
if(data.type == 'add'){
$("#menu-id").append(data.menu);
} else if(data.type == 'edit'){
$('#label_show'+data.id).html(data.label);
$('#link_show'+data.id).html(data.link);
}
$('#label').val('');
$('#link').val('');
$('#id').val('');
$("#load").hide();
} ,error: function(xhr, status, error) {
alert(error);
},
});
});
$('.dd').on('change', function() {
$("#load").show();
var dataString = {
data : $("#nestable-output").val(),
};
$.ajax({
type: "POST",
url: "save.php",
data: dataString,
cache : false,
success: function(data){
$("#load").hide();
} ,error: function(xhr, status, error) {
alert(error);
},
});
});
$("#save").click(function(){
$("#load").show();
var dataString = {
data : $("#nestable-output").val(),
};
$.ajax({
type: "POST",
url: "save.php",
data: dataString,
cache : false,
success: function(data){
$("#load").hide();
alert('Data has been saved');
} ,error: function(xhr, status, error) {
alert(error);
},
});
});
$(document).on("click",".del-button",function() {
var x = confirm('Delete this menu?');
var id = $(this).attr('id');
if(x){
$("#load").show();
$.ajax({
type: "POST",
url: "delete.php",
data: { id : id },
cache : false,
success: function(data){
$("#load").hide();
$("li[data-id='" + id +"']").remove();
} ,error: function(xhr, status, error) {
alert(error);
},
});
}
});
$(document).on("click",".edit-button",function() {
var id = $(this).attr('id');
var label = $(this).attr('label');
var link = $(this).attr('link');
$("#id").val(id);
$("#label").val(label);
$("#link").val(link);
});
$(document).on("click","#reset",function() {
$('#label').val('');
$('#link').val('');
$('#id').val('');
});
});
</script>
</body>
</html>