Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16912 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
66 efrain 1
<?php
2
use LeadersLinked\Model\CompanyService;
3
use LeadersLinked\Model\Company;
4
 
5
 
16822 efrain 6
//$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
7
//$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
66 efrain 8
 
16822 efrain 9
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
10
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
66 efrain 11
 
16822 efrain 12
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
13
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
14
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
15
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
16929 efrain 16
 
17
 
18
 
16822 efrain 19
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.js'));
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
89 steven 21
 
66 efrain 22
$this->inlineScript()->captureStart();
23
echo <<<JS
84 steven 24
		const classFormGenerator = function() {
25
			this.id 				= 0,
26
			this.table				= '',
27
			this.name 				= '',
28
			this.text 				= '',
29
			this.status				= 'a',
30
			this.sections 			= [],
31
			this.clear = function()
32
			{
33
				this.sections = [];
34
				this.render();
35
			},
36
			this.renderSection = function(section_slug)
37
			{
38
 
39
				var s = '';
40
				for(i = 0; i < this.sections.length; i++)
41
				{
42
					if(section_slug !=  this.sections[i].slug) {
43
						continue;
44
					}
45
 
46
					$('span.section-name' + section_slug).html(this.sections[i].name);
47
 
48
					let table = 'table-section-question-option' + this.sections[i].slug;
49
					$('#' + table  + ' tbody').empty();
50
 
51
					s = '<tr class="tr-section" data-slug="' + this.sections[i].slug + '">';
97 steven 52
					s = s  + '<td class="text-left">Seccion</td>';
84 steven 53
					s = s  + '<td class="text-left">' + this.sections[i].name +  '</td>';
54
					s = s  + '<td class="text-right">' + this.sections[i].value + '</td>';
55
					s = s  + '<td>&nbsp</td>';
56
					s = s  + '<td>';
100 steven 57
					s = s  + '<button class="btn btn-default btn-edit-section" data-slug="' + this.sections[i].slug + '" data-toggle="tooltip" title="LABEL_EDIT LABEL_SECTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_SECTION </button>&nbsp';
58
					s = s  + '<button class="btn btn-default btn-delete-section" data-slug="' + this.sections[i].slug + '" data-toggle="tooltip" title="LABEL_DELETE LABEL_SECTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_SECTION </button>&nbsp';
59
					s = s  + '<button class="btn btn-default btn-add-question" data-slug="' + this.sections[i].slug + '" data-toggle="tooltip" title="LABEL_ADD LABEL_QUESTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD LABEL_QUESTION </button>&nbsp';
84 steven 60
					s = s  + '</td>';
61
					s = s  + '</tr>';
62
					$('#' + table + ' tbody').append(s);
63
 
64
 
65
 
66
					for(j = 0; j < this.sections[i].questions.length; j++)
67
					{
68
						this.sections[i].questions[j].position = j;
69
 
70
						this.drawQuestion( this.sections[i].slug, this.sections[i].questions[j].slug, this.sections[i].questions[j].text, this.sections[i].questions[j].value , this.sections[i].questions[j].type);
71
						if(this.sections[i].questions[j].type == 'simple' || this.sections[i].questions[j].type == 'multiple'|| this.sections[i].questions[j].type == 'rating-open') {
72
 
73
 
74
							this.sections[i].questions[j].options.sort(function(a, b) {
75
										if (a.position > b.position) {
76
												return 1;
77
										}
78
										if (a.position < b.position) {
79
											return -1;
80
										}
81
										return 0;
82
									});
83
 
84
 
85
							for(k = 0; k < this.sections[i].questions[j].options.length; k++)
86
							{
87
								this.sections[i].questions[j].options[k].position = j;
88
								this.drawOption(
89
									this.sections[i].slug,
90
									this.sections[i].questions[j].slug,
91
									this.sections[i].questions[j].type,
92
									this.sections[i].questions[j].options[k].slug,
93
									this.sections[i].questions[j].options[k].text,
94
									this.sections[i].questions[j].options[k].type,
95
									this.sections[i].questions[j].options[k].correct,
96
									this.sections[i].questions[j].options[k].value
97
								);
98
							}
99
						}
100
					}
101
				}
102
 
103
				$('[data-toggle="tooltip"]').tooltip();
104
			},
105
			this.drawSection = function(section_slug, section_name, section_value)
106
			{
107
				let table = 'table-section-question-option' + section_slug;
108
				let collapse = 'collapse-' + section_slug;
109
 
110
				s = '<div class="panel panel-default" id="panel' + section_slug + '">';
111
				s = s + '	<div class="panel-heading">';
112
				s = s + '		<h4 class="panel-title">';
113
				s = s + '			<a class="accordion-toggle collapsed" data-toggle="collapse" data-parent="#accordion" href="#' + collapse + '"><span class="section-name' + section_slug + '">' + section_name + '</span></a>';
16845 efrain 114
				s = s + '		</h6>';
84 steven 115
				s = s + '	</div>';
116
				s = s + '	<div id="' + collapse + '" class="panel-collapse collapse">';
117
				s = s + '		<div class="panel-body">';
118
				s = s + '			<div class="table-responsive">';
119
				s = s + '				<table class="table table-bordered" id="' + table + '">';
120
				s = s + '					<thead>';
121
				s = s + '						<tr>';
100 steven 122
				s = s + '							<th>LABEL_ELEMENT</th>';
123
				s = s + '							<th>LABEL_TEXT</th>';
124
				s = s + '							<th>LABEL_VALUE</th>';
125
				s = s + '							<th>LABEL_TYPE</th>';
126
				s = s + '							<th>LABEL_ACTIONS</th>';
84 steven 127
				s = s + '						</tr>';
128
				s = s + '					</thead>';
129
				s = s + '					<tbody>';
130
				s = s + '					</tbody>';
131
				s = s + '				</table>';
132
				s = s + '			</div>';
133
				s = s + '		</div>';
134
				s = s + '	</div>';
135
				s = s + '</div>';
136
 
137
				$('#accordion').append(s);
138
 
139
 
140
				s = '<tr class="tr-section" data-slug="' + section_slug + '">';
100 steven 141
				s = s  + '<td class="text-left">LABEL_SECTION</td>';
84 steven 142
				s = s  + '<td class="text-left">' + section_name +  '</td>';
143
				s = s  + '<td class="text-right">' + section_value + '</td>';
144
				s = s  + '<td>&nbsp</td>';
145
				s = s  + '<td>';
100 steven 146
				s = s  + '<button class="btn btn-default btn-edit-section" data-slug="' + section_slug + '" data-toggle="tooltip" title="LABEL_EDIT LABEL_SECTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_SECTION </button>&nbsp';
147
				s = s  + '<button class="btn btn-default btn-delete-section" data-slug="' + section_slug + '" data-toggle="tooltip" title="LABEL_DELETE LABEL_SECTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_SECTION </button>&nbsp';
148
				s = s  + '<button class="btn btn-default btn-add-question" data-slug="' + section_slug + '" data-toggle="tooltip" title="LABEL_ADD LABEL_SECTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD LABEL_SECTION </button>&nbsp';
84 steven 149
				s = s  + '</td>';
150
				s = s  + '</tr>';
151
				$('#' + table + ' tbody').append(s);
152
			},
153
 
154
			this.drawQuestion = function(section_slug, question_slug, question_text, question_value, question_type)
155
			{
156
 
157
 
158
				s = '<tr class="tr-question" data-slug="' + question_slug + '">';
106 steven 159
				s = s  + '<td class="text-left">--LABEL_QUESTION</td>';
84 steven 160
				s = s  + '<td class="text-left">' + question_text +  '</td>';
161
				s = s  + '<td class="text-right"><font color="red">' + question_value + '</font></td>';
162
				s = s  + '<td>' + question_type.substr(0,1).toUpperCase() + question_type.substr(1) +  '</td>';
163
				s = s  + '<td>';
106 steven 164
				s = s  + '<button class="btn btn-default btn-edit-question" data-section="' + section_slug + '" data-slug="' + question_slug + '" data-toggle="tooltip" title="LABEL_EDIT LABEL_QUESTION"><i class="fa fa-edit" aria-hidden="true"></i> LABEL_EDIT LABEL_QUESTION</button>&nbsp';
165
				s = s  + '<button class="btn btn-default btn-delete-question" data-section="' + section_slug + '" data-slug="' + question_slug + '" data-toggle="tooltip" title="LABEL_DELETE LABEL_QUESTION"><i class="fa fa-ban" aria-hidden="true"></i> LABEL_DELETE LABEL_QUESTION</button>&nbsp';
84 steven 166
				if(question_type == 'simple' || question_type == 'multiple' || question_type == 'rating-open') {
106 steven 167
					s = s  + '<button class="btn btn-default btn-add-option" data-section="' + section_slug + '" data-slug="' + question_slug + '" data-toggle="tooltip" title="LABEL_ADD LABEL_OPTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD LABEL_OPTION</button>&nbsp';
84 steven 168
				}
169
 
170
				s = s  + '</td>';
171
 
172
				let table = 'table-section-question-option' + section_slug;
173
				$('#' + table + ' tbody').append(s);
174
			},
175
 
176
			this.drawOption = function(section_slug, question_slug,  question_type, option_slug, option_text, option_type, option_correct, option_value)
177
			{
178
 
179
 
180
				s = '<tr class="tr-option" data-slug="' + option_slug + '">';
106 steven 181
				s = s  + '<td class="text-left">---LABEL_OPTION</td>';
84 steven 182
				s = s  + '<td class="text-left">' + option_text +  '</td>';
183
				if(question_type == 'multiple' || question_type == 'rating-open') {
184
 
185
					if(question_type == 'multiple') {
186
						if(option_correct == 1) {
187
							s = s  + '<td class="text-right">' + option_value + '</td>';
188
						} else {
189
							s = s  + '<td>&nbsp</td>';
190
						}
191
					} else {
192
						s = s  + '<td class="text-right">' + option_value + '</td>';
193
					}
194
				} else {
195
					s = s  + '<td>&nbsp</td>';
196
				}
197
 
198
				if(question_type == 'simple' || question_type == 'multiple') {
199
					if(option_correct == 1) {
106 steven 200
						s = s  + '<td class="text-left"><font color="green">LABEL_CORRECT</font></td>';
84 steven 201
					} else {
106 steven 202
						s = s  + '<td class="text-left"><font color="red">LABEL_FAIL</font></td>';
84 steven 203
 
204
					}
205
				} else {
206
					s = s  + '<td>&nbsp</td>';
207
				}
208
 
209
 
210
				s = s  + '<td>';
106 steven 211
				s = s  + '<button class="btn btn-default btn-edit-option" data-section="' + section_slug + '" data-question="' + question_slug + '" data-slug="' + option_slug + '" data-toggle="tooltip" title="LABEL_EDIT LABEL_OPTION"><i class="fa fa-edit" aria-hidden="true"></i></button>&nbsp';
212
				s = s  + '<button class="btn btn-default btn-delete-option" data-section="' + section_slug + '" data-question="' + question_slug + '" data-slug="' + option_slug + '" data-toggle="tooltip" title="LABEL_DELETE LABEL_OPTION"><i class="fa fa-ban" aria-hidden="true"></i></button>&nbsp';
84 steven 213
				s = s  + '</td>';
214
 
215
				let table = 'table-section-question-option' + section_slug;
216
				$('#' + table + ' tbody').append(s);
217
 
218
			},
219
 
220
			this.render = function()
221
			{
222
				$('#accordion').empty();
223
 
224
				this.sections.sort(function(a, b) {
225
					if (a.position > b.position) {
226
							return 1;
227
					}
228
					if (a.position < b.position) {
229
						return -1;
230
					}
231
					return 0;
232
				});
233
 
234
				var s = '';
235
				for(i = 0; i < this.sections.length; i++)
236
				{
237
					this.sections[i].position = i;
238
 
239
 
240
					this.drawSection(this.sections[i].slug, this.sections[i].name, this.sections[i].value);
241
 
242
 
243
					this.sections[i].questions.sort(function(a, b) {
244
						if (a.position > b.position) {
245
								return 1;
246
						}
247
						if (a.position < b.position) {
248
							return -1;
249
						}
250
						return 0;
251
					});
252
 
253
 
254
					for(j = 0; j < this.sections[i].questions.length; j++)
255
					{
256
						this.sections[i].questions[j].position = j;
257
 
258
						this.drawQuestion( this.sections[i].slug, this.sections[i].questions[j].slug, this.sections[i].questions[j].text, this.sections[i].questions[j].value , this.sections[i].questions[j].type);
259
						if(this.sections[i].questions[j].type == 'simple' || this.sections[i].questions[j].type == 'multiple'|| this.sections[i].questions[j].type == 'rating-open') {
260
 
261
 
262
							this.sections[i].questions[j].options.sort(function(a, b) {
263
										if (a.position > b.position) {
264
												return 1;
265
										}
266
										if (a.position < b.position) {
267
											return -1;
268
										}
269
										return 0;
270
									});
271
 
272
 
273
							for(k = 0; k < this.sections[i].questions[j].options.length; k++)
274
							{
275
								this.sections[i].questions[j].options[k].position = j;
276
								this.drawOption(
277
									this.sections[i].slug,
278
									this.sections[i].questions[j].slug,
279
									this.sections[i].questions[j].type,
280
									this.sections[i].questions[j].options[k].slug,
281
									this.sections[i].questions[j].options[k].text,
282
									this.sections[i].questions[j].options[k].type,
283
									this.sections[i].questions[j].options[k].correct,
284
									this.sections[i].questions[j].options[k].value
285
								);
286
							}
287
						}
288
 
289
					}
290
 
291
 
292
				}
293
 
294
 
295
				$('[data-toggle="tooltip"]').tooltip();
296
 
297
			},
298
 
299
			this.addSection = function (name, text, value)
300
			{
301
				var d = new Date();
302
					var slug = 'section' + d.getTime();
303
 
304
					var position = 0;
305
					$.each(this.sections, function(index, section) {
306
						if(position < section.position) {
307
							position = section.position;
308
						}
309
					});
310
					position++;
311
 
312
				var section = {
313
					'slug' 		: slug,
314
					'name' 		: name,
315
					'text' 		: text,
316
					'value' 	: value,
317
					'position' 	: position,
318
					'questions' : [],
319
				}
320
 
321
				this.sections.push(section);
322
				this.drawSection(slug, name, text);
323
			},
324
			this.editSection = function (slug, name, text, value)
325
			{
326
				var renderTable = false;
327
				for(i = 0; i < this.sections.length; i++)
328
				{
329
						if(slug == this.sections[i].slug) {
330
							this.sections[i].name = name;
331
							this.sections[i].text = text;
332
							this.sections[i].value = value;
333
							renderTable = true;
334
 
335
							break;
336
						}
337
				}
338
				if(renderTable) {
339
					this.renderSection(slug);
340
				}
341
 
342
 
343
			},
344
			this.deleteSection = function(slug)
345
			{
346
				var renderTable = false;
347
				for(i = 0; i < this.sections.length; i++)
348
				{
349
						if(slug == this.sections[i].slug) {
350
							this.sections.splice(i, 1);
351
 
352
							renderTable = true;
353
							break;
354
					}
355
 
356
 
357
				}
358
				if(renderTable) {
359
					$('#panel' + slug).remove();
360
				}
361
			},
362
			this.addQuestion = function (section_slug, text, value, type, maxlength, multiline, range)
363
			{
364
				var d = new Date();
365
				var slug = 'question' + d.getTime();
366
 
367
				var position = 0;
368
				var renderTable = false;
369
				for(i = 0; i < this.sections.length; i++)
370
				{
371
					if(section_slug == this.sections[i].slug) {
372
						$.each(this.sections[i].questions, function(index, question) {
373
							if(position < question.position) {
374
								position = question.position;
375
							}
376
						});
377
						position++;
378
 
379
						var question = {
380
							'slug' : slug,
381
								'text' : text,
382
								'value' : value,
383
								'type' : type,
384
								'position' : position,
385
								'maxlength' :maxlength,
386
								'multiline' : multiline,
387
								'range' : range,
388
								'options' : [],
389
							}
390
 
391
						this.sections[i].questions.push(question);
392
						renderTable = true;
393
						break;
394
					}
395
				}
396
 
397
				if(renderTable) {
398
					this.renderSection(section_slug);
399
				}
400
			},
401
			this.editQuestion = function(section_slug, question_slug, text, value, type, maxlength, multiline, range)
402
			{
403
				var renderTable = false;
404
				for(i = 0; i < this.sections.length; i++)
405
				{
406
					if(section_slug == this.sections[i].slug) {
407
						for(j = 0; j < this.sections[i].questions.length; j++) {
408
							if(question_slug == this.sections[i].questions[j].slug) {
409
								this.sections[i].questions[j].text 	= text,
410
								this.sections[i].questions[j].value	= value,
411
								this.sections[i].questions[j].type 	= type;
412
 
413
								if(type == 'open') {
414
									this.sections[i].questions[j].maxlength	= maxlength;
415
									this.sections[i].questions[j].multiline	= multiline;
416
									this.sections[i].questions[j].options	= [];
417
								} else {
418
									this.sections[i].questions[j].maxlength	= 0;
419
									this.sections[i].questions[j].multiline	= 0;
420
								}
421
 
422
									if(type == 'rating-range') {
423
										this.sections[i].questions[j].range = range;
424
									} else {
425
										this.sections[i].questions[j].range = 0;
426
									}
427
								renderTable = true;
428
								break;
429
							}
430
						}
431
					}
432
					if(renderTable) {
433
						break;
434
					}
435
				}
436
				if(renderTable) {
437
					this.renderSection(section_slug);
438
				}
439
			},
440
			this.deleteQuestion = function(section_slug, question_slug)
441
			{
442
				var renderTable = false;
443
				for(i = 0; i < this.sections.length; i++)
444
				{
445
						if(section_slug == this.sections[i].slug) {
446
							for(j = 0; j < this.sections[i].questions.length; j++) {
447
							if(question_slug == this.sections[i].questions[j].slug) {
448
									this.sections[i].questions.splice(j, 1);
449
										renderTable = true;
450
										break;
451
							}
452
						}
453
					}
454
 
455
					if(renderTable) {
456
						break;
457
					}
458
				}
459
				if(renderTable) {
460
					this.renderSection(section_slug);
461
				}
462
			},
463
			this.addOption = function (section_slug, question_slug, text, correct, value)
464
			{
465
				var d = new Date();
466
				var slug = 'option' + d.getTime();
467
 
468
				var position = 0;
469
				var renderTable = false;
470
				for(i = 0; i < this.sections.length; i++)
471
				{
472
					if(section_slug == this.sections[i].slug) {
473
						for(j = 0; j < this.sections[i].questions.length; j++) {
474
							if(question_slug == this.sections[i].questions[j].slug) {
475
								$.each(this.sections[i].questions[j].options, function(index, option) {
476
										if(position < option.position) {
477
											position = option.position;
478
										}
479
									});
480
									position++;
481
 
482
									var option = {
483
										'slug' : slug,
484
											'text' : text,
485
											'correct' : correct,
486
											'value' : value
487
										}
488
 
489
										this.sections[i].questions[j].options.push(option);
490
									renderTable = true;
491
									break;
492
							}
493
 
494
									if(renderTable) {
495
								break;
496
							}
497
						}
498
					}
499
				}
500
				if(renderTable) {
501
					this.renderSection(section_slug);
502
				}
503
			},
504
			this.editOption = function(section_slug, question_slug, option_slug, text, correct, value)
505
			{
506
				var renderTable = false;
507
				for(i = 0; i < this.sections.length; i++)
508
				{
509
					if(section_slug == this.sections[i].slug) {
510
						for(j = 0; j < this.sections[i].questions.length; j++) {
511
							if(question_slug == this.sections[i].questions[j].slug) {
512
								for(k = 0; k < this.sections[i].questions[j].options.length; k++) {
513
									if(option_slug == this.sections[i].questions[j].options[k].slug) {
514
										this.sections[i].questions[j].options[k].text = text;
515
										this.sections[i].questions[j].options[k].correct = correct;
516
										this.sections[i].questions[j].options[k].value = value;
517
										renderTable = true;
518
												break;
519
									}
520
								}
521
							}
522
									if(renderTable) {
523
								break;
524
							}
525
						}
526
					}
527
						if(renderTable) {
528
							break;
529
						}
530
				}
531
 
532
				if(renderTable) {
533
					this.renderSection(section_slug);
534
				}
535
			},
536
			this.deleteOption = function(section_slug, question_slug, option_slug)
537
			{
538
				var renderTable = false;
539
				for(i = 0; i < this.sections.length; i++)
540
				{
541
						if(section_slug == this.sections[i].slug) {
542
							for(j = 0; j < this.sections[i].questions.length; j++) {
543
							if(question_slug == this.sections[i].questions[j].slug) {
544
								for(k = 0; k < this.sections[i].questions[j].options.length; k++) {
545
									if(option_slug == this.sections[i].questions[j].options[k].slug) {
546
										this.sections[i].questions[j].options.splice(k, 1);
547
										renderTable = true;
548
												break;
549
									}
550
								}
551
							}
552
									if(renderTable) {
553
								break;
554
							}
555
						}
556
					}
557
 
558
					if(renderTable) {
559
						break;
560
					}
561
				}
562
				if(renderTable) {
563
					this.renderSection(section_slug);
564
				}
565
			}
566
		}
567
 
568
		function htmlEntities(str) {
569
				return String(str).replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;');
570
		}
66 efrain 571
    jQuery( document ).ready(function( $ ) {
84 steven 572
			var objFormGenerator = new classFormGenerator();
573
	objFormGenerator.render();
66 efrain 574
 
84 steven 575
 
576
	var tableForm = $('#table-form').dataTable({
577
		select :true,
578
        bProcessing: true,
579
        bServerSide: true,
243 geraldo 580
        sAjaxSource: "ajax.<?php echo $this->module; ?>.php?action=gridview",
84 steven 581
        fnServerData: function (sSource, aoData, fnCallback) {
582
         	$.ajax({
583
               	dataType: 'json',
584
                type: "POST",
585
                url: sSource,
586
                data: aoData,
587
                success: fnCallback
588
          	});
589
        },
590
        aaSorting : [],
591
        aoColumns: [
85 steven 592
					{sName: "checkbox", sTitle : '<input type="checkbox" value="all" data-type="select_all" name="select_all" id="select_all">',bSortable:false,bSearchable:false},
106 steven 593
					{sName: "name", sTitle: 'LABEL_FIRST_NAME'},
594
					{sName: "language", sTitle: 'LABEL_LANGUAGE'},
595
					{sName: "added_on", sTitle : 'LABEL_ADDED_ON'},
596
					{sName: "status", sTitle: 'LABEL_STATUS', bSortable:false, bSearchable:false},
597
					{sName: "operation", sTitle: 'LABEL_OPERATION', bSortable: false, bSearchable: false},
84 steven 598
         ],
87 steven 599
        //  fnServerParams: function(aoData){
600
        //  	setTitle(aoData, this)
601
        //  },
84 steven 602
         fnDrawCallback: function(oSettings) {
85 steven 603
         		$('.make-switch-form').bootstrapSwitch();
84 steven 604
            $('.make-switch-form').bootstrapSwitch('setOnClass', 'success');
605
            $('.make-switch-form').bootstrapSwitch('setOffClass', 'danger');
606
         }
607
	});
66 efrain 608
 
84 steven 609
	$('body').on('click', 'a.btn-delete-form',function(e) {
610
		e.preventDefault();
611
		form_id =  $(this).data('id')
16822 efrain 612
 
613
          swal.fire({
614
            title: 'LABEL_ARE_YOU_SURE',
615
            message: "LABEL_DELETE LABEL_FORM",
616
            icon: 'question',
617
            cancelButtonText: 'LABEL_NO',
618
            showCancelButton: true,
619
            confirmButtonText: 'LABEL_YES'
620
          }).then((result) => {
621
            if (result.isConfirmed) {
622
            }
623
          });
624
 
625
          swal.fire({
626
            title: 'LABEL_ARE_YOU_SURE',
627
            icon: 'question',
628
            cancelButtonText: 'LABEL_NO',
629
            showCancelButton: true,
630
            confirmButtonText: 'LABEL_YES'
631
          }).then((result) => {
632
            if (result.isConfirmed) {
633
 
634
$.ajax({
84 steven 635
    	                'dataType': 'json',
636
    	                'method': 'post',
637
    	                'url' :  'ajax.<?php echo $this->module; ?>.php?action=delete',
638
    	                'data' :{
639
    	                    'form-id' : form_id
640
    	                },
641
    	            }).done(function(response) {
642
 
643
    	                if(response['success']) {
94 steven 644
    	                	$.fn.showSuccess(response['message']);
84 steven 645
    	                	tableForm.fnDraw();
646
    	                } else {
94 steven 647
    	                	$.fn.showError(response['message']);
84 steven 648
    	                }
649
    	            }).fail(function( jqXHR, textStatus, errorThrown) {
94 steven 650
    					$.fn.showError(textStatus);
84 steven 651
    	            });
16822 efrain 652
 
653
            }
654
          });
84 steven 655
 
16822 efrain 656
 
657
 
66 efrain 658
 
84 steven 659
    });
66 efrain 660
 
84 steven 661
    $(document).on('click','[data-action="delete"]',function(){
662
 
16822 efrain 663
          swal.fire({
664
            title: 'LABEL_ARE_YOU_SURE',
665
            message: "LABEL_DELETE LABEL_FORMS_2",
666
            icon: 'question',
667
            cancelButtonText: 'LABEL_NO',
668
            showCancelButton: true,
669
            confirmButtonText: 'LABEL_YES'
670
          }).then((result) => {
671
            if (result.isConfirmed) {
672
 
673
                var d = currentSelected();
84 steven 674
    		    	$.ajax({
675
    	                'dataType': 'json',
676
    	                'method': 'post',
677
    	                'url' :  'ajax.<?php echo $this->module; ?>.php?action=delete-selected',
678
    	                'data' :{
679
    	                	 selected : d
680
    	                },
681
    	            }).done(function(response) {
682
 
683
    	                if(response['success']) {
94 steven 684
    	                	$.fn.showSuccess(response['message']);
84 steven 685
    	                	tableForm.fnDraw();
686
    	                } else {
94 steven 687
    	                	$.fn.showError(response['message']);
84 steven 688
    	                }
689
    	            }).fail(function( jqXHR, textStatus, errorThrown) {
94 steven 690
    					$.fn.showError(textStatus);
84 steven 691
    	            });
16822 efrain 692
 
693
            }
694
          });
695
 
84 steven 696
 
66 efrain 697
    });
84 steven 698
 
699
 
700
    $('body').on('switch-change', 'input[type="checkbox"].make-switch-form', function(e) {
701
		e.preventDefault();
702
		e.stopPropagation();
703
 
704
		form_id =  $(this).data('id')
705
		form_status = $(this).prop('checked') ? 'A' : 'D';
706
 
707
 
708
		$.ajax({
709
        	'dataType': 'json',
710
            'method': 'post',
711
            'url' :  'ajax.<?php echo $this->module; ?>.php?action=status',
712
            'data' :{
713
            	'form-id' : form_id,
714
            	'form-status' : form_status
715
            },
716
        }).done(function(response) {
717
	        if(response['success']) {
94 steven 718
	        	$.fn.showSuccess(response['message']);
84 steven 719
	       } else {
94 steven 720
    	       	$.fn.showError(response['message']);
84 steven 721
            }
722
         }).fail(function( jqXHR, textStatus, errorThrown) {
94 steven 723
			$.fn.showError(textStatus);
84 steven 724
        })
725
    });
726
 
727
	$('body').on('click', 'a.btn-edit-form',function(e) {
728
		e.preventDefault();
729
		form_id =  $(this).data('id')
730
 
731
		$.ajax({
93 steven 732
			'dataType': 'json',
733
			'method': 'post',
734
			'url' :  '/test/method-one',
735
			'data' :{
736
				'form-id' : form_id
737
			},
738
		}).done(function(response) {
739
			if(response['success']) {
740
					validatorForm.resetForm();
84 steven 741
 
93 steven 742
					$('#form-main #form-id' ).val(response['id']),
743
					$('#form-main #form-continue').val('0');
744
					$('#form-main #form-name' ).val(response['name']),
84 steven 745
 
746
 
93 steven 747
					instanceName = 'form-description';
748
					let editor = CKEDITOR.instances[instanceName ];
749
					editor.setData(response['description'], function() {
750
							editor.focus();
751
					});
752
 
753
 
754
					instanceName = 'form-text';
755
					CKEDITOR.instances[instanceName ].setData(response['text']);
84 steven 756
 
93 steven 757
					$( '#form-main #form-language' ).val(response['language']),
758
					$( '#form-main #form-status' ).val(response['status']);
84 steven 759
 
93 steven 760
					objFormGenerator.clear();
761
					objFormGenerator.sections = response['sections'];
762
					objFormGenerator.render();
763
					$('#row-forms').hide();
764
					$('#row-edit').show();
84 steven 765
 
93 steven 766
					$('#form-main #form-name').focus();
767
 
768
				} else {
94 steven 769
					$.fn.showError(response['message']);
93 steven 770
				}
771
			}).fail(function( jqXHR, textStatus, errorThrown) {
94 steven 772
				$.fn.showError(textStatus);
93 steven 773
			});
84 steven 774
    });
775
 
776
	 $(document).on('click','[data-type="select_all"]',function(){
777
 
778
	        if($('input[name="select_all"]:checked').val() == 'all'){
779
	            $('[data-type="select"]').prop('checked', true);
780
	            $('[data-action="delete"]').removeClass('hide');
781
	        }else{
782
	            $('[data-type="select"]').prop('checked', false);
783
	            $('[data-action="delete"]').addClass('hide');
784
	        }
785
	    });
786
 
787
	    function getLength(){
788
	        return $('[data-type="select"]').length;
789
	    }
790
 
791
	    function currentSelected(){
792
	        var selected = [];
793
	        $.each($("input[name='select[]']:checked"), function(){
794
	            selected.push($(this).val());
795
	        });
796
 
797
	        return selected;
798
	    }
799
 
800
	    $(document).on('change',"input[name='select[]']",function(){
801
	        var c = currentSelected();
802
	        var cc = getLength();
803
 
804
 
805
	        if(c.length == cc){
806
	            if($('[data-action="delete"]').hasClass('hide')){
807
	                $('[data-action="delete"]').removeClass('hide');
808
	            }
809
	            return true;
810
	        }else{
811
	            $('input[name="select_all"]').prop('checked', false);
812
	        }
813
 
814
	        if(c.length > 0){
815
	            if($('[data-action="delete"]').hasClass('hide')){
816
	                $('[data-action="delete"]').removeClass('hide');
817
	            }
818
	        }else{
819
	            if(!$('[data-action="delete"]').hasClass('hide')){
820
	                $('[data-action="delete"]').addClass('hide');
821
	            }
822
	        }
823
	    });
824
 
825
	    var form3 = $('#form_sample_3');
826
        var error3 = $('.alert-danger', form3);
827
        var success3 = $('.alert-success', form3);
828
 
829
	//IMPORTANT: update CKEDITOR textarea with actual content before submit
830
 	$( "#form-main" ).on('submit', function() {
831
		for(var instanceName in CKEDITOR.instances) {
832
			CKEDITOR.instances[instanceName].updateElement();
833
		}
834
	})
835
 
836
	var validatorForm = $( "#form-main" ).validate( {
837
        ignore: [],
838
        errorClass: 'help-block',
839
        errorElement: 'span',
840
		rules: {
841
			'form-name':  {
842
				required: true,
843
				minlength: 2,
844
				maxlength: 50
845
			},
846
			'form-description' : {
847
				required: true,
848
			},
849
			'form-text' : {
850
				required: true,
851
			},
852
			'form-language' : {
853
				required: true,
854
			},
855
			'forrm-status' : {
856
				required: true,
857
			},
858
		},
16929 efrain 859
 
84 steven 860
        invalidHandler: function(form, validator) {
861
            if (!validator.numberOfInvalids())
862
                return;
863
            $('html, body').animate({
864
                scrollTop: $(validator.errorList[0].element).offset().top - 100
865
            }, 1000);
866
        },
867
		submitHandler: function(form) {
868
		    // do other things for a valid form
869
		    //form.submit();
870
 
871
 
872
		    var error = false;
873
		    if(objFormGenerator.sections.length == 0) {
94 steven 874
		    	$.fn.showError('There are no sections');
84 steven 875
		    	error = true;
876
		    } else {
877
 
878
		    	for(i = 0; i < objFormGenerator.sections.length; i++)
879
		    	{
880
 
881
		    		if(objFormGenerator.sections[i].questions.length == 0) {
108 steven 882
		    			$.fn.showError('El "' + objFormGenerator.sections[i].name + '" no tiene preguntas');
84 steven 883
		    			break;
884
		    		}
885
 
886
		    		var valueSection = parseInt(objFormGenerator.sections[i].value);
887
		    		var totalValueQuestion = 0;
888
 
889
 
890
		    		for(j = 0; j < objFormGenerator.sections[i].questions.length; j++)
891
		    		{
892
		    			valueQuestion = parseInt(objFormGenerator.sections[i].questions[j].value);
893
		    			totalValueQuestion = totalValueQuestion + valueQuestion;
894
		    			if(objFormGenerator.sections[i].questions[j].type == 'simple'
895
			    			|| objFormGenerator.sections[i].questions[j].type == 'multiple'
896
			    			|| objFormGenerator.sections[i].questions[j].type == 'rating-open' ) {
897
 
898
		    				var questionNumber = j + 1;
899
		    				var numberCorrect = 0;
900
 
901
 
902
		    				if(objFormGenerator.sections[i].questions[j].options.length == 0) {
108 steven 903
		    					$.fn.showError('El "' + objFormGenerator.sections[i].name + '" seccion, La pregunta #' + questionNumber + ' no tiene opciones');
904
									error = true;
905
									break;
84 steven 906
		    				}
907
 
908
 
909
		    				var totalOption = 0;
910
		    				var maxOption = 0;
911
		    				for(k = 0;  k < objFormGenerator.sections[i].questions[j].options.length; k++)
912
		    				{
913
		    					if(objFormGenerator.sections[i].questions[j].type == 'simple' || objFormGenerator.sections[i].questions[j].type == 'multiple' ) {
914
    		    					if(objFormGenerator.sections[i].questions[j].options[k].correct == 1) {
915
    		    						numberCorrect++;
916
    		    					}
917
		    					}
918
 
919
		    					if(objFormGenerator.sections[i].questions[j].type == 'multiple' && objFormGenerator.sections[i].questions[j].options[k].correct == 1) {
920
		    						totalOption = totalOption + parseInt(objFormGenerator.sections[i].questions[j].options[k].value);
921
			    				}
922
 
923
		    					if(objFormGenerator.sections[i].questions[j].type == 'rating-open') {
924
		    						if(parseInt(objFormGenerator.sections[i].questions[j].options[k].value) > maxOption) {
108 steven 925
											maxOption = parseInt(objFormGenerator.sections[i].questions[j].options[k].value);
84 steven 926
					    			}
927
			    				}
928
 
929
		    				}
930
 
931
		    				if(objFormGenerator.sections[i].questions[j].type == 'simple' || objFormGenerator.sections[i].questions[j].type == 'multiple' ) {
932
 
933
    		    				if(numberCorrect == 0) {
108 steven 934
    		    					$.fn.showError('El "' + objFormGenerator.sections[i].name + '" seccion, La pregunta #' + questionNumber + ' no tiene una opcion correcta');
84 steven 935
    		    					error = true;
936
    		    					break;
937
    		    				}
938
    		    				if(objFormGenerator.sections[i].questions[j].type == 'simple' && numberCorrect > 1) {
108 steven 939
    		    					$.fn.showError('El "' + objFormGenerator.sections[i].name + '" seccion, La pregunta #' + questionNumber + ' tiene más de una opción correcta');
84 steven 940
    		    					error = true;
941
    		    					break;
942
    		    				}
943
    		    				if(objFormGenerator.sections[i].questions[j].type == 'multiple' && numberCorrect == 1) {
108 steven 944
    		    					$.fn.showError('El "' + objFormGenerator.sections[i].name + '" seccion, La pregunta #' + questionNumber + ' solo tiene una opción correcta');
84 steven 945
    		    					error = true;
946
    		    					break;
947
    		    				}
948
		    				}
949
 
950
			    			//console.log('totalOption = ' + totalOption + ' valueQuestion = ' + valueQuestion );
951
 
952
			 				if(objFormGenerator.sections[i].questions[j].type == 'multiple' && totalOption > valueQuestion ) {
108 steven 953
		     					$.fn.showError('El "' + objFormGenerator.sections[i].name + '" seccion, La pregunta #' + questionNumber + ' la suma de los valores de las opciones es mayor que el valor de la pregunta');
84 steven 954
		    					error = true;
955
		    					break;
956
			    			}
957
 
958
							//console.log('maxOption = ' + maxOption + ' valueQuestion = ' + valueQuestion );
959
 
960
		    				if(objFormGenerator.sections[i].questions[j].type == 'rating-open' && maxOption > valueQuestion ) {
108 steven 961
		     					$.fn.showError('El "' + objFormGenerator.sections[i].name + '" seccion, La pregunta #' + questionNumber + ' ');
84 steven 962
		    					error = true;
963
		    					break;
964
			    			}
965
						}
966
 
967
 
968
		    		}
969
 
970
		    		if(valueSection != totalValueQuestion) {
108 steven 971
		    			$.fn.showError('El "' + objFormGenerator.sections[i].name + '" sección y las preguntas no son las mismas');
84 steven 972
		    			error = true;
973
		    			break;
974
					}
975
				}
976
 
977
 
978
 
979
    			if(error) {
980
    				return false;
981
    			} else {
982
 
983
 
984
    				var formId		= parseInt($( '#form-main #form-id' ).val());
985
    				var formContinue = parseInt($( '#form-main #form-continue' ).val());
986
 
987
    				var data = {
988
    	    			'form-id'	: formId,
989
        				'form-name' : $( '#form-main #form-name' ).val(),
990
        				'form-description' : $( '#form-main #form-description' ).val(),
991
        				'form-text' : $( '#form-main #form-text' ).val(),
992
        				'form-language' : $( '#form-main #form-language' ).val(),
993
        				'form-status' : $( '#form-main #form-status' ).val(),
994
        				'sections' : objFormGenerator.sections
995
    				}
996
 
997
 
998
    				$.ajax({
999
                        'dataType': 'json',
1000
                        'method': 'post',
93 steven 1001
                        'url' :  '/test/method-one',
84 steven 1002
                        'data' : data,
1003
                    }).done(function(response) {
1004
 
1005
                        if(response['success']) {
94 steven 1006
                        	$.fn.showSuccess(response['message']);
84 steven 1007
							if(formContinue == 1) {
1008
								$('#form-main #form-id').val(response['form-id']);
1009
								$('#form-main #form-continue').val(0);
1010
							} else {
1011
								$('#row-edit').hide();
1012
                        		$('#row-forms').show();
1013
							}
1014
 
1015
 
1016
							tableForm.fnDraw();
1017
 
1018
                        } else {
94 steven 1019
                        	$.fn.showError(response['message']);
84 steven 1020
                        }
1021
                    }).fail(function( jqXHR, textStatus, errorThrown) {
94 steven 1022
						$.fn.showError(textStatus);
84 steven 1023
                    });
1024
 
1025
                    return false;
1026
 
1027
 
1028
    			}
1029
			}
1030
 
1031
 
1032
		}
1033
	});
1034
 
1035
	//IMPORTANT: update CKEDITOR textarea with actual content before submit
1036
 	$( "#form-section" ).on('submit', function() {
1037
		for(var instanceName in CKEDITOR.instances) {
1038
			CKEDITOR.instances[instanceName].updateElement();
1039
		}
1040
	})
1041
 
1042
	var validatorFormSection = $( "#form-section" ).validate( {
1043
        ignore: [],
1044
        errorClass: 'help-block',
1045
        errorElement: 'span',
1046
		rules: {
1047
			'section-name':  {
1048
				required: true,
1049
				minlength: 2,
1050
				maxlength: 50
1051
			},
1052
			'section-text' : {
1053
				required: false,
1054
			},
1055
			'section-value' : {
1056
				required: true,
1057
				number: true,
1058
				min: 1
1059
			},
1060
		},
16929 efrain 1061
 
84 steven 1062
        invalidHandler: function(form, validator) {
1063
            if (!validator.numberOfInvalids())
1064
                return;
1065
            $('html, body').animate({
1066
                scrollTop: $(validator.errorList[0].element).offset().top - 100
1067
            }, 1000);
1068
        },
1069
		submitHandler: function(form) {
1070
		    // do other things for a valid form
1071
		    //form.submit();
1072
 
1073
		    var slug = $('#form-section #section-slug').val();
1074
		    if(slug) {
1075
		    	objFormGenerator.editSection(
1076
		    		$('#form-section #section-slug').val(),
1077
			    	$('#form-section #section-name').val(),
1078
			    	$('#form-section #section-text').val(),
1079
			    	$('#form-section #section-value').val()
1080
			  	);
1081
		    } else {
1082
		    	objFormGenerator.addSection(
1083
		    		$('#form-section #section-name').val(),
1084
		    		$('#form-section #section-text').val(),
1085
		    		$('#form-section #section-value').val()
1086
		    	);
1087
		    }
1088
 
1089
 
1090
 
1091
			$('#modal-section').modal('hide');
1092
			return false;
1093
		  }
1094
	} );
1095
 
1096
	//IMPORTANT: update CKEDITOR textarea with actual content before submit
1097
 	$( "#form-question" ).on('submit', function() {
1098
		for(var instanceName in CKEDITOR.instances) {
1099
			CKEDITOR.instances[instanceName].updateElement();
1100
		}
1101
	})
1102
 
1103
 
1104
	var validatorFormQuestion = $( "#form-question" ).validate( {
1105
        ignore: [],
1106
        errorClass: 'help-block',
1107
        errorElement: 'span',
1108
		rules: {
1109
			'question-text' : {
1110
				required: true,
1111
			},
1112
			'question-value' : {
1113
				required: true,
1114
				number: true,
1115
				min: 1
1116
			},
1117
			'question-type':  {
1118
				required: true,
1119
			},
1120
			'question-max-length' : {
1121
				required: true,
1122
				digits: true,
1123
				min: 0
1124
			},
1125
			'question-range' : {
1126
				required: true,
1127
				number: true,
1128
				min: 1
1129
			},
1130
		},
16929 efrain 1131
 
84 steven 1132
        invalidHandler: function(form, validator) {
1133
 
1134
			//console.log(validator);
1135
 
1136
            if (!validator.numberOfInvalids())
1137
                return;
1138
            $('html, body').animate({
1139
                scrollTop: $(validator.errorList[0].element).offset().top - 100
1140
            }, 1000);
1141
        },
1142
		submitHandler: function(form) {
1143
		    // do other things for a valid form
1144
		    //form.submit();
1145
 
1146
		    /*console.log('submitHandler');
1147
		    console.log('question-section = ' + $('#form-question #question-section').val());
1148
		    console.log('question-text = ' + $('#form-question #question-text').val());
1149
		    console.log('question-value = ' + $('#form-question #question-value').val());
1150
		    console.log('question-type = ' + $('#form-question #question-type').val());
1151
		    console.log('question-max-length = ' + $('#form-question #question-max-length').val());
1152
		    console.log('question-multiline = ' + $('#form-question #question-multiline').val());
1153
		    console.log('question-range = ' + $('#form-question #question-range').val());*/
1154
 
1155
 
1156
 
1157
		    if($('#form-question #question-slug').val()) {
1158
		    	console.log('editQuestion');
1159
 
1160
		    	objFormGenerator.editQuestion(
1161
		    		$('#form-question #question-section').val(),
1162
		    		$('#form-question #question-slug').val(),
1163
		    		$('#form-question #question-text').val(),
1164
		    		$('#form-question #question-value').val(),
1165
			    	$('#form-question #question-type').val(),
1166
			    	$('#form-question #question-max-length').val(),
1167
	    			$('#form-question #question-multiline').val(),
1168
	    			$('#form-question #question-range').val()
1169
			  	);
1170
		    } else {
1171
		    	console.log('addQuestion');
1172
 
1173
		    	objFormGenerator.addQuestion(
1174
			    	$('#form-question #question-section').val(),
1175
			    	$('#form-question #question-text').val(),
1176
			    	$('#form-question #question-value').val(),
1177
				    $('#form-question #question-type').val(),
1178
				    $('#form-question #question-max-length').val(),
1179
		    		$('#form-question #question-multiline').val(),
1180
		    		$('#form-question #question-range').val()
1181
		    	);
1182
		    }
1183
 
1184
			$('#modal-question').modal('hide');
1185
			return false;
1186
		  }
1187
	} );
1188
 
1189
	//IMPORTANT: update CKEDITOR textarea with actual content before submit
1190
 	$( "#form-option" ).on('submit', function() {
1191
		for(var instanceName in CKEDITOR.instances) {
1192
			CKEDITOR.instances[instanceName].updateElement();
1193
		}
1194
	})
1195
 
1196
	var validatorFormOption = $( "#form-option" ).validate( {
1197
        ignore: [],
1198
        errorClass: 'help-block',
1199
        errorElement: 'span',
1200
		rules: {
1201
			'option-text' : {
1202
				required: true,
1203
			},
1204
        	'option-value' : {
1205
				required: true,
1206
				number: true,
1207
				min: 1
1208
        	}
1209
		},
1210
        highlight: function (element) {
1211
            $(element).closest('.form-group').addClass('has-error');
1212
        },
1213
        unhighlight: function (element) {
1214
            $(element).closest('.form-group').removeClass('has-error');
1215
        },
1216
        errorPlacement: function (error, element) {
1217
            if (element.attr("data-error-container")) {
1218
                error.appendTo(element.attr("data-error-container"));
1219
            } else {
1220
                error.insertAfter(element);
1221
            }
1222
        },
1223
        invalidHandler: function(form, validator) {
1224
            if (!validator.numberOfInvalids())
1225
                return;
1226
            $('html, body').animate({
1227
                scrollTop: $(validator.errorList[0].element).offset().top - 100
1228
            }, 1000);
1229
        },
1230
		submitHandler: function(form) {
1231
		    // do other things for a valid form
1232
		    //form.submit();
1233
 
1234
 
1235
		    if($('#form-option #option-slug').val()) {
1236
		    	objFormGenerator.editOption(
1237
		    		$('#form-option #option-section').val(),
1238
		    		$('#form-option #option-question').val(),
1239
		    		$('#form-option #option-slug').val(),
1240
		    		$('#form-option #option-text').val(),
1241
		    		$('#form-option #option-correct').val(),
1242
		    		$('#form-option #option-value').val()
1243
			  	);
1244
		    } else {
1245
		    	objFormGenerator.addOption(
1246
			    	$('#form-option #option-section').val(),
1247
			    	$('#form-option #option-question').val(),
1248
			    	$('#form-option #option-text').val(),
1249
			    	$('#form-option #option-correct').val(),
1250
			    	$('#form-option #option-value').val()
1251
		    	);
1252
		    }
1253
 
1254
 
1255
 
1256
 
1257
			$('#modal-option').modal('hide');
1258
			return false;
1259
		  }
1260
	} );
1261
 
1262
	$('body').on('click', 'button[id="btn-add-section"]', function(e){
1263
		e.preventDefault();
1264
 
1265
		validatorFormSection.resetForm();
1266
		$('#form-section #section-slug').val('');
1267
		$('#form-section #section-name').val('');
1268
 
1269
		instanceName = 'section-text';
1270
		let editor = CKEDITOR.instances[instanceName ];
1271
		editor.setData( '', function() {
1272
		    editor.focus();
1273
		});
1274
 
1275
 
1276
		$('#form-section #section-value').val('0');
1277
		$('#modal-section h4[class="modal-title"]').html('New Section');
1278
		$('#modal-section').modal('show');
1279
	});
1280
 
1281
	$('body').on('click', 'button.btn-edit-section', function(e){
1282
	    e.preventDefault();
1283
 
1284
	    var slug = $(this).data('slug');
1285
	    var section;
1286
	    var showForm = false;
1287
 
1288
	    for(i = 0; i < objFormGenerator.sections.length; i++) {
1289
	        section = objFormGenerator.sections[i];
1290
 
1291
	    	if(slug == section.slug) {
1292
 
1293
		    	//console.log('btn-edit-section');
1294
		    	//console.log(section);
1295
 
1296
				validatorFormSection.resetForm();
1297
	    		$('#form-section #section-slug').val(section.slug);
1298
	    		$('#form-section #section-name').val(section.name);
1299
 
1300
	    		instanceName = 'section-text';
1301
	    		let editor = CKEDITOR.instances[instanceName ];
1302
	    		editor.setData( section.text, function() {
1303
	    		    editor.focus();
1304
	    		});
1305
 
1306
				$('#form-section #section-value').val(section.value);
1307
 
1308
				showForm = true;
1309
				break;
1310
	    	}
1311
	    }
1312
 
1313
	    if(showForm) {
1314
	    	$('#modal-section h4[class="modal-title"]').html('Edit Section');
1315
			$('#modal-section').modal('show');
1316
	    }
1317
 
1318
	});
1319
 
1320
	$('body').on('click', 'button.btn-delete-section', function(e){
1321
		e.preventDefault();
1322
		var slug = $(this).data('slug');
1323
 
16822 efrain 1324
          swal.fire({
1325
            title: 'LABEL_ARE_YOU_SURE',
1326
            message: "LABEL_DELETE LABEL_SECTION",
1327
            icon: 'question',
1328
            cancelButtonText: 'LABEL_NO',
1329
            showCancelButton: true,
1330
            confirmButtonText: 'LABEL_YES'
1331
          }).then((result) => {
1332
            if (result.isConfirmed) {
1333
            }
1334
          });
1335
 
84 steven 1336
 
16822 efrain 1337
 
84 steven 1338
 
1339
 
1340
	});
1341
 
1342
 
1343
	$('body').on('click', 'button.btn-add-question', function(e){
1344
		e.preventDefault();
1345
 
1346
		validatorFormQuestion.resetForm();
1347
		var slug = $(this).data('slug');
1348
 
1349
		$('#form-question #question-section').val(slug);
1350
		$('#form-question #question-slug').val('');
1351
 
1352
		instanceName = 'question-text';
1353
		let editor = CKEDITOR.instances[instanceName ];
1354
		editor.setData( '', function() {
1355
		    editor.focus();
1356
		});
1357
 
1358
 
1359
		$('#form-question #question-value').val('0');
1360
		$('#form-question #question-type').val($('#form-question #question-type option:first').val());
1361
 
1362
		$('#form-question #question-max-length').val('0');
1363
		$('#form-question #question-max-length').parent().show();
1364
 
1365
		$('#form-question #question-multiline').val('0');
1366
		$('#form-question #question-multiline').parent().show();
1367
 
1368
		$('#form-question #question-range').val('10');
1369
		$('#form-question #question-range').parent().hide();
1370
 
1371
		$('#modal-question h4[class="modal-title"]').html('New Question');
1372
		$('#modal-question').modal('show');
1373
 
1374
	});
1375
 
1376
 
1377
 
1378
	$('body').on('click', 'button.btn-edit-question', function(e){
1379
	    e.preventDefault();
1380
 
1381
	    var slug_section	= $(this).data('section');
1382
	    var slug 			= $(this).data('slug');
1383
	    var showForm 		= false;
1384
 
1385
	    for(i = 0; i < objFormGenerator.sections.length; i++) {
1386
 
1387
	    	if(slug_section == objFormGenerator.sections[i].slug) {
1388
 
1389
	    		for(j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
1390
 
1391
	    			if(slug == objFormGenerator.sections[i].questions[j].slug) {
1392
	    				validatorFormQuestion.resetForm();
1393
 
1394
	    				$('#form-question #question-section').val(objFormGenerator.sections[i].slug);
1395
	    				$('#form-question #question-slug').val(objFormGenerator.sections[i].questions[j].slug);
1396
 
1397
	    	    		instanceName = 'question-text';
1398
	    	    		let editor = CKEDITOR.instances[instanceName ];
1399
	    	    		editor.setData( objFormGenerator.sections[i].questions[j].text, function() {
1400
	    	    		    editor.focus();
1401
	    	    		});
1402
 
1403
 
1404
	        			$('#form-question #question-value').val(objFormGenerator.sections[i].questions[j].value);
1405
	        			$('#form-question #question-type').val(objFormGenerator.sections[i].questions[j].type);
1406
 
1407
 
1408
 
1409
	        			if(objFormGenerator.sections[i].questions[j].type == 'open') {
1410
		        			$('#form-question #question-max-length').val(objFormGenerator.sections[i].questions[j].maxlength);
1411
		        			$('#form-question #question-max-length').parent().show();
1412
 
1413
		        			$('#form-question #question-multiline').val(objFormGenerator.sections[i].questions[j].multiline);
1414
							$('#form-question #question-multiline').parent().show();
1415
	        			} else {
1416
		        			$('#form-question #question-max-length').val('0');
1417
		        			$('#form-question #question-max-length').parent().hide();
1418
 
1419
		        			$('#form-question #question-multiline').val('0');
1420
							$('#form-question #question-multiline').parent().hide();
1421
	        			}
1422
 
1423
	        			if(objFormGenerator.sections[i].questions[j].type == 'rating-range') {
1424
	            			$('#form-question #question-range').val(objFormGenerator.sections[i].questions[j].range);
1425
		        			$('#form-question #question-range').parent().show();
1426
 
1427
	        			} else {
1428
	            			$('#form-question #question-range').val('10');
1429
		        			$('#form-question #question-range').parent().hide();
1430
		        		}
1431
 
1432
    					showForm = true;
1433
    					break;
1434
 
1435
	    			}
1436
 
1437
	    		}
1438
 
1439
	    		break;
1440
	    	}
1441
	    }
1442
 
1443
	    if(showForm) {
108 steven 1444
	    	$('#modal-question h4[class="modal-title"]').html('LABEL_EDIT LABEL_QUESTION');
1445
				$('#modal-question').modal('show');
84 steven 1446
	    }
1447
 
1448
	});
1449
 
1450
 
1451
 
1452
 
1453
	$('body').on('click', 'button.btn-delete-question', function(e){
1454
		e.preventDefault();
1455
 
1456
		var slug_section	= $(this).data('section');
1457
		var slug 			= $(this).data('slug');
1458
 
16822 efrain 1459
          swal.fire({
1460
            title: 'LABEL_ARE_YOU_SURE',
1461
            message: "LABEL_DELETE LABEL_QUESTION",
1462
            icon: 'question',
1463
            cancelButtonText: 'LABEL_NO',
1464
            showCancelButton: true,
1465
            confirmButtonText: 'LABEL_YES'
1466
          }).then((result) => {
1467
            if (result.isConfirmed) {
1468
                objFormGenerator.deleteQuestion(slug_section, slug);
1469
            }
1470
          });
1471
 
1472
 
84 steven 1473
	});
1474
 
1475
 
1476
	$('body').on('click', 'button.btn-add-option', function(e){
1477
		e.preventDefault();
1478
	    var slug_section	= $(this).data('section');
1479
		var slug_question 	= $(this).data('slug');
1480
		var showForm 		= false;
1481
 
1482
	    for(i = 0; i < objFormGenerator.sections.length; i++) {
1483
	    	if(slug_section == objFormGenerator.sections[i].slug) {
1484
	    		for(j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
1485
	    			if(slug_question == objFormGenerator.sections[i].questions[j].slug) {
1486
 
1487
                		validatorFormOption.resetForm();
1488
                		$('#form-option #option-section').val(slug_section);
1489
                		$('#form-option #option-question').val(slug_question);
1490
                		$('#form-option #option-slug').val('');
1491
 
1492
                		instanceName = 'option-text';
1493
	    	    		let editor = CKEDITOR.instances[instanceName ];
1494
	    	    		editor.setData( '', function() {
1495
	    	    		    editor.focus();
1496
	    	    		});
1497
 
1498
 
1499
	    	    		$('#form-option #option-correct').val('0');
1500
                		if(objFormGenerator.sections[i].questions[j].type == 'rating-open') {
1501
                    		$('#form-option #option-correct').parent().hide();
1502
                        } else {
1503
                    		$('#form-option #option-correct').parent().show();
1504
                        }
1505
 
1506
                		if(objFormGenerator.sections[i].questions[j].type == 'multiple' || objFormGenerator.sections[i].questions[j].type == 'rating-open') {
1507
                			$('#form-option #option-value').val('0');
1508
                			$('#form-option #option-value').parent().show();
1509
                		} else {
1510
                			$('#form-option #option-value').val('1');
1511
                			$('#form-option #option-value').parent().hide();
1512
 
1513
                       	}
1514
                		showForm = true;
1515
	    			}
1516
	    		}
1517
	    	}
1518
	    }
1519
 
1520
		if(showForm) {
1521
    		$('#modal-option h4[class="modal-title"]').html('New Option');
1522
    		$('#modal-option').modal('show');
1523
		}
1524
 
1525
	});
1526
 
1527
 
1528
 
1529
	$('body').on('click', 'button.btn-edit-option', function(e){
1530
	    e.preventDefault();
1531
 
1532
	    var slug_section	= $(this).data('section');
1533
	    var slug_question	= $(this).data('question');
1534
	    var slug 			= $(this).data('slug');
1535
	    var showForm 		= false;
1536
 
1537
	    for(i = 0; i < objFormGenerator.sections.length; i++) {
1538
	    	if(slug_section == objFormGenerator.sections[i].slug) {
1539
	    		for(j = 0; j < objFormGenerator.sections[i].questions.length; j++) {
1540
	    			if(slug_question == objFormGenerator.sections[i].questions[j].slug) {
1541
	    				for(k = 0; k < objFormGenerator.sections[i].questions[j].options.length; k++) {
1542
	    					if(slug == objFormGenerator.sections[i].questions[j].options[k].slug) {
1543
	    						validatorFormOption.resetForm();
1544
	    						$('#form-option #option-section').val(objFormGenerator.sections[i].slug);
1545
	    						$('#form-option #option-question').val(objFormGenerator.sections[i].questions[j].slug);
1546
    		    				$('#form-option #option-slug').val(objFormGenerator.sections[i].questions[j].options[k].slug);
1547
 
1548
    		    				instanceName = 'option-text';
1549
    		    	    		let editor = CKEDITOR.instances[instanceName ];
1550
    		    	    		editor.setData( objFormGenerator.sections[i].questions[j].options[k].text, function() {
1551
    		    	    		    editor.focus();
1552
    		    	    		});
1553
 
1554
 
1555
    		    				$('#form-option #option-correct').val(objFormGenerator.sections[i].questions[j].options[k].correct);
1556
    		    				if(objFormGenerator.sections[i].questions[j].type == 'multiple' || objFormGenerator.sections[i].questions[j].type == 'simple') {
1557
    		    					$('#form-option #option-correct').parent().show();
1558
    		    				} else {
1559
    		    					$('#form-option #option-correct').parent().hide();
1560
            		    		}
1561
 
1562
    		    				$('#form-option #option-value').val(objFormGenerator.sections[i].questions[j].options[k].value);
1563
 
1564
								if(objFormGenerator.sections[i].questions[j].type == 'multiple' || objFormGenerator.sections[i].questions[j].type == 'rating-open') {
1565
    		    					$('#form-option #option-value').parent().show();
1566
								} else {
1567
									$('#form-option #option-value').parent().hide();
1568
								}
1569
 
1570
 
1571
 
1572
    		    				showForm = true;
1573
    	    					break;
1574
	    					}
1575
	    				}
1576
	    			}
1577
	    			if(showForm) {
1578
		    			break;
1579
		    		}
1580
	    		}
1581
	    	}
1582
			if(showForm) {
1583
    			break;
1584
    		}
1585
	    }
1586
 
1587
	    if(showForm) {
108 steven 1588
	    	$('#modal-option h4[class="modal-title"]').html('LABEL_EDIT LABEL_OPTION');
1589
				$('#modal-option').modal('show');
84 steven 1590
	    }
1591
	});
1592
 
1593
	$('body').on('click', 'button.btn-delete-option', function(e){
1594
		e.preventDefault();
1595
		var slug_section	= $(this).data('section');
1596
		var slug_question	= $(this).data('question');
1597
		    var slug 			= $(this).data('slug');
1598
 
16822 efrain 1599
          swal.fire({
1600
            title: 'LABEL_ARE_YOU_SURE',
1601
            message: "LABEL_DELETE LABEL_OPTION",
1602
            icon: 'question',
1603
            cancelButtonText: 'LABEL_NO',
1604
            showCancelButton: true,
1605
            confirmButtonText: 'LABEL_YES'
1606
          }).then((result) => {
1607
            if (result.isConfirmed) {
1608
            }
1609
          });
84 steven 1610
 
16822 efrain 1611
 
84 steven 1612
	})
1613
 
1614
	$('#form-section #section-value').inputNumberFormat({'decimal' : 2});
1615
 
1616
	$('#form-question #question-value').inputNumberFormat({'decimal' : 2});
1617
	$('#form-question #question-max-length').inputNumberFormat({'decimal' : 0});
1618
 
1619
	$('#form-option #option-value').inputNumberFormat({'decimal' : 2});
1620
 
1621
	$('#form-question #question-type').change(function(e) {
1622
		e.preventDefault();
1623
 
1624
		if($('#form-question #question-type').val() == 'open') {
1625
			$('#form-question #question-max-length').parent().show();
1626
			$('#form-question #question-multiline').parent().show();
1627
 
1628
		} else {
1629
			$('#form-question #question-max-length').val('0');
1630
			$('#form-question #question-max-length').parent().hide();
1631
 
1632
			$('#form-question #question-multiline').val('0');
1633
			$('#form-question #question-multiline').parent().hide();
1634
		}
1635
 
1636
		$('#form-question #question-range').val('10');
1637
		if($('#form-question #question-type').val() == 'rating-range') {
1638
			$('#form-question #question-range').parent().show();
1639
		} else {
1640
			$('#form-question #question-range').parent().hide();
1641
		}
1642
 
1643
 
1644
 
1645
	});
1646
 
1647
	$('button.btn-add-form').click(function(e) {
1648
		e.preventDefault();
1649
 
1650
		objFormGenerator.clear();
1651
		objFormGenerator.render();
1652
		validatorForm.resetForm();
1653
 
1654
		$('#form-main #form-id').val('0');
1655
		$('#form-main #form-continue').val('0');
1656
		$('#form-main #form-name').val('');
1657
 
1658
		instanceName = 'form-text';
1659
		let editor = CKEDITOR.instances[instanceName ];
1660
		editor.setData('', function() {
1661
		    editor.focus();
1662
		});
1663
 
1664
 
1665
		instanceName = 'form-description';
1666
		CKEDITOR.instances[instanceName ].setData('');
1667
 
1668
		$( '#form-main #form-language' ).val('EN'),
1669
		$( '#form-main #form-status' ).val('D');
1670
 
1671
		$('#row-forms').hide();
1672
		$('#row-edit').show();
1673
		$('#form-main #form-name').focus();
1674
 
1675
        /*$('html, body').animate({
1676
            scrollTop: $('#form-main #form-name').offset().top - 100
1677
        }, 1000);*/
1678
	});
1679
 
1680
	$('button.btn-edit-cancel').click(function(e) {
1681
		e.preventDefault();
1682
		$('#row-edit').hide();
1683
		$('#row-forms').show();
1684
 
1685
	});
1686
 
1687
 
1688
	$('button.btn-form-save-continue').click(function(e) {
1689
		e.preventDefault();
1690
		$('#form-main #form-continue').val('1')
1691
		$('#form-main').submit();
1692
	});
1693
 
1694
	$('button.btn-form-save-close').click(function(e) {
1695
		e.preventDefault();
1696
		$('#form-main #form-continue').val('0')
1697
		$('#form-main').submit();
1698
 
1699
	});
1700
 
1701
	$('#modal-section, #modal-question, #modal-option').modal({
108 steven 1702
			backdrop: 'static',
1703
			keyboard: false,
1704
			show: false
1705
		});
84 steven 1706
	});
66 efrain 1707
JS;
1708
$this->inlineScript()->captureEnd();
1709
?>
83 steven 1710
<style type="text/css">
1711
    /*#uniform-select_all{0
1712
        margin-left: 15px;
1713
    }*/
66 efrain 1714
 
83 steven 1715
    tbody input[type="checkbox"]{
1716
        margin-left: 14px;
1717
    }
1718
 
101 steven 1719
   .panel-heading .accordion-toggle:after {
83 steven 1720
        /* symbol for "opening" panels */
100 steven 1721
        display: inline-block;
1722
				font: normal normal normal 14px/1 FontAwesome;
1723
				font-size: inherit;
105 steven 1724
				content: "\f077" ;
101 steven 1725
				float: right;        /* adjust as needed */
1726
        color: grey;         /* adjust as needed */
102 steven 1727
				text-rendering: auto;
100 steven 1728
				-webkit-font-smoothing: antialiased;
83 steven 1729
    }
102 steven 1730
    .panel-heading .accordion-toggle.collapsed:after {
1731
        /* symbol for "collapsed" panels */
105 steven 1732
        content: "\f078";    /* adjust as needed, taken from bootstrap.css */
102 steven 1733
    }
83 steven 1734
 
1735
 
1736
</style>
66 efrain 1737
<!-- Content Header (Page header) -->
1738
<section class="content-header">
1739
	<div class="container-fluid">
1740
    	<div class="row mb-2">
1741
        	<div class="col-sm-12">
1742
            	<h1>LABEL_TEST</h1>
1743
			</div>
1744
		</div>
1745
	</div><!-- /.container-fluid -->
1746
</section>
1747
 
1748
<section class="content">
1749
	<div class="container-fluid">
1750
		<div class="row">
1751
			<div class="col-md-12 col-sm-12">
79 steven 1752
				<!-- Content -->
1753
				<div class="row" id="row-forms">
1754
					<div class="col-md-12">
1755
							<!-- Begin: life time stats -->
80 steven 1756
						<div class="portlet box blue-dark">
1757
								<div class="portlet-title ">
1758
										<div class="caption">
109 steven 1759
												<i class="fa fa-dot-circle-o"></i>LABEL_PERFORMANCE_EVALUATION
80 steven 1760
										</div>
1761
										<div class="actions portlet-toggler">
113 steven 1762
												<button class="btn blue btn-add-form"  data-toggle="tooltip" title="LABEL_ADD">
109 steven 1763
													<i class="fa fa-plus"></i> LABEL_ADD
80 steven 1764
													</button>
118 steven 1765
												<button class="btn red hide btn-delete-forms" data-action="delete" data-toggle="tooltip" title="LABEL_DELETE LABEL_SELECTED">
1766
													<i class="fa fa-minus"></i> LABEL_DELETE LABEL_SELECTED
1767
												</button>
80 steven 1768
												<div class="btn-group"></div>
1769
										</div>
79 steven 1770
 
80 steven 1771
								</div>
1772
								<div class="portlet-body portlet-toggler">
16912 efrain 1773
									<table id="table-form" class="table  table-bordered table-bordered">
80 steven 1774
 
1775
									</table>
1776
								</div>
1777
								<div class="portlet-body portlet-toggler pageform" style="display:none;"></div>
1778
						</div>
1779
					</div>
1780
				</div>
1781
				<!-- End Content -->
1782
				<!-- Row Edit -->
91 steven 1783
				<div class="row" id="row-edit" style="display: none">
80 steven 1784
					<div class="col-xs-12 col-md-12">
1785
						<form action="#" name="form-main" id="form-main">
1786
							<input type="hidden" name="form-id" id="form-id" value="0" />
1787
							<input type="hidden" name="form-continue" id="form-continue" value="0" />
1788
									<div class="form-group">
109 steven 1789
										<label for="form-name">LABEL_FIRST_NAME</label>
80 steven 1790
										<input type="text" name="form-name" id="form-name" class="form-control" maxlength="50" />
79 steven 1791
									</div>
80 steven 1792
									<div class="form-group">
109 steven 1793
										<label for="form-description">LABEL_DESCRIPTION</label>
80 steven 1794
										<!--  ckeditor -->
1795
										<textarea  name="form-description" id="form-description" rows="5" class="ckeditor form-control"></textarea>
1796
									</div>
1797
									<div class="form-group">
109 steven 1798
										<label for="form-text">LABEL_TEXT</label>
80 steven 1799
										<!--  ckeditor -->
1800
										<textarea  name="form-text" id="form-text" rows="5" class="ckeditor form-control"></textarea>
79 steven 1801
									</div>
80 steven 1802
									<div class="form-group">
109 steven 1803
										<label for="form-language">LABEL_LANGUAGES</label>
80 steven 1804
										<select name="form-language" id="form-language" class="form-control">
109 steven 1805
											<option value="EN">LABEL_ENGLISH</option>
1806
											<option value="SP">LABEL_SPANISH</option>
80 steven 1807
										</select>
1808
									</div>
1809
									<div class="form-group">
109 steven 1810
										<label for="form-status">LABEL_STATUS</label>
80 steven 1811
										<select name="form-status" id="form-status" class="form-control">
109 steven 1812
											<option value="D">LABEL_INACTIVE</option>
1813
											<option value="A">LABEL_ACTIVE</option>
80 steven 1814
										</select>
1815
									</div>
1816
									<br/>
1817
									<div class="row">
1818
								<div class="col-xs-12 col-md-12 text-right">
111 steven 1819
									<button class="btn btn-primary" id="btn-add-section" data-toggle="tooltip" title="LABEL_ADD LABEL_SECTION"><i class="fa fa-plus" aria-hidden="true"></i> LABEL_ADD LABEL_SECTION</button>
80 steven 1820
								</div>
79 steven 1821
							</div>
85 steven 1822
							<br />
80 steven 1823
							<div class="row">
1824
								<div class="col-xs-12 col-md-12">
1825
									<div class="panel-group" id="accordion">
1826
 
1827
 
1828
 
1829
									</div>
1830
								</div>
1831
							</div>
1832
 
1833
 
1834
							<div class="form-group">
109 steven 1835
								<button type="submit" form="form-main" class="btn btn-info btn-form-save-continue">LABEL_SAVE & LABEL_CONTINUE</button>
1836
								<button type="button" class="btn btn-primary btn-form-save-close">LABEL_SAVE & LABEL_CLOSE</button>
16822 efrain 1837
								<button type="button" class="btn btn-light btn-edit-cancel">LABEL_CANCEL</button>
80 steven 1838
							</div>
1839
						</form>
79 steven 1840
					</div>
1841
				</div>
80 steven 1842
				<!-- End Row Edit -->
82 steven 1843
				<!-- Modals -->
119 steven 1844
					<!-- Section Modal -->
82 steven 1845
					<div  id="modal-section" class="modal" tabindex="-1" role="dialog">
1846
						<div class="modal-dialog" role="document">
1847
								<form action="#" name="form-section" id="form-section">
1848
									<input type="hidden" name="section-slug" id="section-slug" value="" />
1849
									<div class="modal-content">
1850
											<div class="modal-header">
16845 efrain 1851
												<!-- <h6 class="modal-title">Modal title</h6> -->
16864 efrain 1852
												<!--  <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
82 steven 1853
											<span aria-hidden="true">&times;</span>
1854
												</button> -->
1855
											</div>
1856
											<div class="modal-body">
1857
										<div class="form-group">
109 steven 1858
											<label for="section-name">LABEL_FIRST_NAME</label>
82 steven 1859
													<input type="text" name="section-name" id="section-name" class="form-control" maxlength="50" value="" />
1860
												</div>
1861
												<div class="form-group">
109 steven 1862
													<label for="section-text">LABEL_TEXT</label>
82 steven 1863
													<!--  ckeditor -->
1864
													<textarea  name="section-text" id="section-text" rows="5" class="ckeditor form-control"></textarea>
1865
												</div>
1866
												<div class="form-group">
109 steven 1867
													<label for="section-value">LABEL_VALUE</label>
82 steven 1868
													<input type="text" name="section-value" id="section-value"  class="form-control" value="0" />
1869
												</div>
1870
											</div>
16891 efrain 1871
											<div class="modal-footer text-right">
109 steven 1872
												<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
16864 efrain 1873
												<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close">LABEL_CLOSE</button>
82 steven 1874
											</div>
1875
									</div>
1876
								</form>
1877
						</div>
1878
					</div>
1879
					<!-- End Modal Section -->
1880
					<!-- Question Modal -->
1881
						<div  id="modal-question" class="modal" tabindex="-1" role="dialog">
1882
							<div class="modal-dialog" role="document">
1883
								<form action="#" name="form-question" id="form-question">
1884
									<input type="hidden" name="question-section" id="question-section" />
1885
									<input type="hidden" name="question-slug" id="question-slug" />
1886
										<div class="modal-content">
1887
											<div class="modal-header">
16845 efrain 1888
													<h6 class="modal-title">LABEL_ADD LABEL_QUESTION</h6>
16864 efrain 1889
													 <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
109 steven 1890
														<span aria-hidden="true">&times;</span>
82 steven 1891
													</button>
1892
												</div>
1893
											<div class="modal-body">
1894
													<div class="form-group">
109 steven 1895
														<label for="question-text">LABEL_TEXT</label>
82 steven 1896
														<!--  ckeditor -->
1897
														<textarea  name="question-text" id="question-text" rows="5" class="ckeditor form-control"></textarea>
1898
													</div>
1899
													<div class="form-group">
109 steven 1900
														<label for="question-value">LABEL_VALUE</label>
82 steven 1901
														<input type="text" name="question-value" id="question-value"  class="form-control" />
1902
													</div>
1903
													<div class="form-group">
109 steven 1904
														<label for="question-type">LABEL_TYPE</label>
82 steven 1905
														<select name="question-type" id="question-type" class="form-control">
109 steven 1906
															<option value="open">LABEL_OPEN</option>
82 steven 1907
															<option value="simple">Simple</option>
1908
															<option value="multiple">Multiple</option>
109 steven 1909
															<option value="rating-open">LABEL_RATING_OPEN</option>
1910
															<option value="rating-range">LABEL_RATING_RANGE</option>
82 steven 1911
														</select>
1912
													</div>
1913
													<div class="form-group">
109 steven 1914
														<label for="question-max-length">LABEL_MAXLENGTH</label>
82 steven 1915
														<input type="text" name="question-max-length" id="question-max-length"  class="form-control" />
1916
													</div>
1917
													<div class="form-group">
109 steven 1918
														<label for="question-multiline">LABEL_MULTI_LINE</label>
82 steven 1919
														<select name="question-multiline" id="question-multiline" class="form-control">
109 steven 1920
															<option value="1">LABEL_YES</option>
82 steven 1921
															<option value="0">No</option>
1922
														</select>
1923
													</div>
1924
													<div class="form-group">
109 steven 1925
														<label for="question-range">LABEL_RANGE</label>
82 steven 1926
														<select name="question-range" id="question-range" class="form-control">
1927
															<option value="10">1-10</option>
1928
															<option value="6">1-6</option>
1929
															<option value="5">1-5</option>
1930
														</select>
1931
													</div>
1932
												</div>
16891 efrain 1933
												<div class="modal-footer text-right">
109 steven 1934
													<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
16864 efrain 1935
													<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close">LABEL_CLOSE</button>
82 steven 1936
												</div>
1937
										</div>
1938
									</form>
1939
							</div>
1940
						</div>
1941
					<!-- End Modal Question -->
83 steven 1942
					<!-- MOdal Options -->
1943
					<div  id="modal-option" class="modal" tabindex="-1" role="dialog">
1944
						<div class="modal-dialog" role="document">
1945
							<form action="#" name="form-option" id="form-option">
1946
									<input type="hidden" name="option-section" id="option-section" value="" />
1947
									<input type="hidden" name="option-question" id="option-question" value="" />
1948
									<input type="hidden" name="option-slug" id="option-slug" value="" />
1949
										<div class="modal-content">
1950
											<div class="modal-header">
16845 efrain 1951
												<h6 class="modal-title">LABEL_OPTION</h6>
16864 efrain 1952
												 <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
110 steven 1953
													<span aria-hidden="true">&times;</span>
83 steven 1954
												</button>
1955
											</div>
1956
											<div class="modal-body">
1957
												<div class="form-group">
110 steven 1958
													<label for="option-text">LABEL_TEXT</label>
83 steven 1959
													<!--  ckeditor -->
1960
													<textarea  name="option-text" id="option-text" rows="5" class="ckeditor form-control"></textarea>
1961
												</div>
1962
												<div class="form-group">
110 steven 1963
													<label for="option-correct">LABEL_ANSWER_CORRECT</label>
83 steven 1964
													<select name="option-correct" id="option-correct" class="form-control">
110 steven 1965
														<option value="1">LABEL_YES</option>
83 steven 1966
														<option value="0">No</option>
1967
													</select>
1968
												</div>
1969
												<div class="form-group">
110 steven 1970
													<label for="option-value">LABEL_VALUE</label>
1971
													<input type="text" name="option-value" id="option-value" class="form-control" />
83 steven 1972
												</div>
1973
											</div>
16891 efrain 1974
											<div class="modal-footer text-right">
110 steven 1975
												<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
16864 efrain 1976
												<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close">LABEL_CLOSE</button>
83 steven 1977
											</div>
1978
									</div>
1979
								</form>
1980
						</div>
1981
					</div>
1982
					<!-- End Modal Options -->
82 steven 1983
				<!-- End Modals -->
66 efrain 1984
			</div>
1985
		</div>
1986
 	</div>
1987
</section>