-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpollBlock.php
More file actions
executable file
·431 lines (217 loc) · 15.2 KB
/
pollBlock.php
File metadata and controls
executable file
·431 lines (217 loc) · 15.2 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
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
<style>
.poll
{
border:1px solid #CCCCCC;
margin-bottom:10px;
padding-bottom:10px;
background-color:#fff;
padding-top:17px;
}
.poll:hover
{
box-shadow:0px 5px 0px #804A92 inset;
}
.fa-trash
{
color:maroon;
}
.fa-pencil
{
color:#0041CF;
}
#pollQuestion
{
font-weight:bold;
}
</style>
<div class="col-md-7" id="polls">
<div class="row pollMenu topMenu" style="z-index:2;">
<div class="btn-group btn-group-justified" style="padding:10px;">
<div class="btn-group">
<button type="button" id="pollCreateButton" class="btn btn-warning" data-toggle="modal" data-target="#pollCreateModal"><a style="color:white;" ><i class="fa fa-plus"></i> Create Poll</a></button>
</div>
<div class="btn-group">
<button type="button" id="latestPollsButton" onclick="fetchLatestPolls(1,'empty');" class="btn btn-danger"><a style="color:white;" ><i class="fa fa-calendar"></i> Latest Polls</a></button>
</div>
<!-- <div class="btn-group">
<button type="button" id="completedPollsButton" class="btn btn-primary"><a style="color:white;" ><i class="fa fa-clock-o"></i> Completed Polls</a></button>
</div> -->
</div>
</div><!-- end class pollMenu.topMenu -->
<br/><br/>
<!-- Modals for create poll -->
<!-- there is no modal for edit poll because users might have already voted for the poll -->
<div class="modal fade slow" id="pollCreateModal" tabindex="-1" role="dialog" aria-labelledby="" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="createModalLabel"><i class="fa fa-plus"></i> Create Poll <small>[<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="The poll will be shown to the users of 4pi only after SAC speaker's approval. You will not allowed to edit the poll once created."></i>]</small></h4>
</div>
<div class="modal-body">
<form role="form">
<div class="form-group has-error">
<label for="pollName">Poll on <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="In short, the poll question."></i>]
<input type="text" name="pollQuestion" class="form-control input-sm" style="background-color:white !important;border-radius:0px;resize:none;" id="createPollQuestion" placeholder="Poll question. Required."></input>
</div>
<!-- <div class="form-group">
<label for="pollDuration">Poll duration</label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Basically, how long the poll should be conduted."></i>]
<input type="text" name="pollDuration" class="form-control input-sm" style="background-color:white !important;border-radius:0px;resize:none;" id="createPollDuration" placeholder="Poll on"></input>
</div> -->
<div class="form-group">
<label for="pollName">Poll option type <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Single option selection or multiple option types."></i>]
<select name="pollType" class="form-control input-sm" style="background-color:white !important;border-radius:0px;" id="createPollOptionType" >
<option value="1">Single option selection</option>
<option value="2">Multiple options selection</option>
</select>
</div>
<div class="form-group">
<label for="pollName">Poll type <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Self explanatory"></i>]
<select name="pollType" class="form-control input-sm" style="background-color:white !important;border-radius:0px;" id="createPollType" >
<option value="1">Display results after the user votes</option>
<option value="2">Display results along with options</option>
<option value="3">Display results after the poll has ended</option>
</select>
</div>
<div class="form-group has-error">
<label for="pollShareWith">Share with <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Enter 'All' for to provide universal visibility. Otherwise enter 'COE12' for 2012 COE batch or just 'COE' for complete COE stream. For just B.Tech enter B, or for a particular batch you can enter iB, i can be the batch number. If you want this post to be visible for B.Tech and M.Des enter 'B,M'. (without quotes)"></i>]
<input name="pollShareWith" class="popOver form-control input-sm" style="background-color:white !important;border-radius:0px;" id="createPollSharedWith" value="All" data-trigger="hover" data-toggle="popover" data-placement="top" data-content="Enter 'All' for to provide universal visibility. Otherwise enter 'COE12' for 2012 COE batch or just 'COE' for complete COE stream. For just B.Tech enter B, or for a particular batch you can enter iB, i can be the batch number. If you want this post to be visible for B.Tech and M.Des enter 'B,M'. (without quotes)">
</div>
<div class="row">
<div class="form-group col-md-6 has-error" id="option1">
<label for="pollOptions">Option <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Option for poll."></i>]
<!-- <div class="input-group"> -->
<input type="text" name="pollOptions" class="inputOption form-control input-sm" style="background-color:white !important;border-radius:0px;" placeholder="Option"></textarea>
<!-- <span class="input-group-addon">
<i class="fa fa-plus" onclick="createPollAddInput();"></i>
</span>
<span class="input-group-addon hidden">
<i class="fa fa-minus" onclick="createPollDeleteInput();"></i>
</span> -->
<!-- </div> -->
</div>
<div class="form-group col-md-6 has-error" id="option2">
<label for="pollOptions">Option <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Option for poll. If you want to add one more click '+'. To delete click '-'"></i>]
<div class="input-group">
<input type="text" name="pollOptions" class="inputOption form-control input-sm" style="background-color:white !important;border-radius:0px;"placeholder="Option 2"></textarea>
<span style="cursor:pointer;" class="input-group-addon" onclick="createPollAddInput();" id="addOption">
<i class="fa fa-plus" ></i>
</span>
<span class="input-group-addon hidden" id="deleteOption">
<i class="fa fa-minus" onclick="createPollDeleteInput(this);"></i>
</span>
</div>
</div>
</div>
</form>
<br/>
</div>
<div class="modal-footer">
<div class="row">
<div class="col-md-1 col-md-offset-5">
<img src="/4pi/img/728.gif" id="loadingImage" class="hidden">
</div>
<div class="col-md-2 col-md-offset-4">
<button onclick="createPollSP();" id="createPollButton" class="btn btn-primary">Create Poll</button>
</div>
</div>
</div>
</div>
</div>
</div> <!-- end modals -->
<div id="pollArea" style="margin-top:10px;">
</div>
<div id="pollEmptyMessage" class="text-center">
<p class="text-center" id="messageEmpty"></p>
</div>
<div class="row">
<div class="text-center">
<button style="display:block;width:100%;" class="btn btn-lg btn-success" id="loadMorePollsButton" onclick="fetchLatestPolls(1,'noempty');">Load more</button>
</div>
</div>
</div><!-- end polls -->
<script src="/4pi/js/cs/retrievePolls.js?v=randomNumber"></script>
<script>
$(document).ready(function(){
fetchLatestPolls(1,"empty");
});
</script>
<div class="modal fade slow" id="pollEditModal" tabindex="-1" role="dialog" aria-labelledby="" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="editModalLabel"><i class="fa fa-plus"></i> Edit Poll <small>[<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="The poll will be shown to the users of 4pi only after SAC speaker's approval. You will not allowed to edit the poll once approved."></i>]</small></h4>
</div>
<div class="hidden" id="editPollModalPollId"></div>
<div class="modal-body">
<form role="form">
<div class="form-group has-error">
<label for="pollName">Poll on <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="In short, the poll question."></i>]
<input type="text" name="pollQuestion" class="form-control input-sm" style="background-color:white !important;border-radius:0px;resize:none;" id="editPollQuestion" placeholder="Poll question. Required"></input>
</div>
<!-- <div class="form-group">
<label for="pollDuration">Poll duration</label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Basically, how long the poll should be conduted."></i>]
<input type="text" name="pollDuration" class="form-control input-sm" style="background-color:white !important;border-radius:0px;resize:none;" id="createPollDuration" placeholder="Poll on"></input>
</div> -->
<div class="form-group">
<label for="pollName">Poll option type <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Single option selection or multiple option types."></i>]
<select name="pollType" class="form-control input-sm" style="background-color:white !important;border-radius:0px;" id="editPollOptionType" >
<option value="1">Single option selection</option>
<option value="2">Multiple options selection</option>
</select>
</div>
<div class="form-group">
<label for="pollName">Poll type <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Self explanatory"></i>]
<select name="pollType" class="form-control input-sm" style="background-color:white !important;border-radius:0px;" id="editPollType" >
<option value="1">Display results after the user votes</option>
<option value="2">Display results along with options</option>
<option value="3">Display results after the poll has ended</option>
</select>
</div>
<div class="form-group has-error">
<label for="pollShareWith">Share with <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover" data-toggle="popover" data-placement="top" data-content="Enter 'All' for to provide universal visibility. Otherwise enter 'COE12' for 2012 COE batch or just 'COE' for complete COE stream. For just B.Tech enter B, or for a particular batch you can enter iB, i can be the batch number. If you want this post to be visible for B.Tech and M.Des enter 'B,M'. (without quotes)"></i>]
<input name="pollShareWith" class="popOver form-control input-sm" style="background-color:white !important;border-radius:0px;" id="editPollSharedWith" placeholder="Required." data-trigger="hover" data-toggle="popover" data-placement="top" data-content="Enter 'All' for to provide universal visibility. Otherwise enter 'COE12' for 2012 COE batch or just 'COE' for complete COE stream. For just B.Tech enter B, or for a particular batch you can enter iB, i can be the batch number. If you want this post to be visible for B.Tech and M.Des enter 'B,M'. (without quotes)">
</div>
<div class="row" id="pollOptionsDiv">
<div class="form-group has-error col-md-6" id="option1">
<label for="pollOptions">Option <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Option for poll."></i>]
<!-- <div class="input-group"> -->
<input type="text" name="pollOptions" class="inputOption form-control input-sm" style="background-color:white !important;border-radius:0px;" placeholder="Option"></input>
<!-- <span class="input-group-addon">
<i class="fa fa-plus" onclick="createPollAddInput();"></i>
</span>
<span class="input-group-addon hidden">
<i class="fa fa-minus" onclick="createPollDeleteInput();"></i>
</span> -->
<!-- </div> -->
</div>
<div class="form-group has-error col-md-6" id="option2">
<label for="pollOptions">Option <span style="color:red;">*</span></label> [<i class="fa fa-question popOver" data-trigger="hover click" data-toggle="popover" data-content="Option for poll. If you want to add one more click '+'. To delete click '-'"></i>]
<div class="input-group">
<input type="text" name="pollOptions" class="inputOption form-control input-sm" style="background-color:white !important;border-radius:0px;"placeholder="Option 2"></input>
<span class="input-group-addon" id="addOption">
<i class="fa fa-plus" onclick="editPollAddInput();"></i>
</span>
<span class="input-group-addon hidden" id="deleteOption">
<i class="fa fa-minus" onclick="editPollDeleteInput(this);"></i>
</span>
</div>
</div>
</div>
</form>
<br/>
</div>
<div class="modal-footer">
<div class="row">
<div class="col-md-1 col-md-offset-5">
<img src="/4pi/img/728.gif" id="loadingImage" class="hidden">
</div>
<div class="col-md-2 col-md-offset-4">
<button onclick="editedPollSend();" id="editPollButton" class="btn btn-primary">Edit Poll</button>
</div>
</div>
</div>
</div>
</div>
</div> <!-- end modals -->