Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16910 | Rev 16929 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
$roleName       = $currentUser->getUserTypeId();
5
 
6
$routeDatatable = $this->url('microlearning/content/slides');
7
 
8
$allowAdd = $acl->isAllowed($roleName, 'microlearning/content/slides/add') ? 1 : 0;
9
$allowEdit = $acl->isAllowed($roleName, 'microlearning/content/slides/edit') ? 1 : 0;
10
$allowDelete = $acl->isAllowed($roleName, 'microlearning/content/slides/delete') ? 1 : 0;
11
 
12
 
16822 efrain 13
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
14
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
1 www 15
 
16
 
17
 
18
 
19
 
20
 
16822 efrain 21
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/css/fileinput.min.css'));
22
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fa/theme.css'));
12071 nelberth 23
 
16843 efrain 24
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/piexif.js'));
25
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/sortable.js'));
16822 efrain 26
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/fileinput.js'));
27
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/locales/es.js'));
28
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/fa/theme.js'));
29
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fa/theme.js'));
1 www 30
 
16822 efrain 31
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
32
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
33
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
1 www 34
 
16822 efrain 35
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
36
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.js'));
1 www 37
 
16822 efrain 38
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
39
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
1 www 40
 
16822 efrain 41
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
42
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
43
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
44
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
1 www 45
 
46
 
16822 efrain 47
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
48
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
1 www 49
 
50
 
51
 
52
 
16822 efrain 53
 
54
 
1 www 55
$this->inlineScript()->captureStart();
56
echo <<<JS
57
 
58
 
59
jQuery( document ).ready(function( $ ) {
60
 
61
        var routeAdd = '';
62
 
63
        $.validator.setDefaults({
64
            debug: true,
65
            highlight: function(element) {
66
                $(element).addClass('is-invalid');
67
            },
68
            unhighlight: function(element) {
69
                $(element).removeClass('is-invalid');
70
            },
71
            errorElement: 'span',
72
            errorClass: 'error invalid-feedback',
73
            errorPlacement: function(error, element) {
6192 nelberth 74
 
1 www 75
            }
76
        });
77
 
78
 
79
        $.fn.showFormErrorValidator = function(fieldname, errors) {
80
            var field = $(fieldname);
81
            if(field) {
82
                $(field).addClass('is-invalid');
83
 
84
 
85
                var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
6622 nelberth 86
                if(element.parent('.btn-file').length) {
1 www 87
                    error.insertAfter(element.parent().parent());
88
                } else if(element.parent('.toggle').length) {
89
                    error.insertAfter(element.parent().parent());
90
                } else {
91
                    error.insertAfter(element.parent());
6622 nelberth 92
                }
1 www 93
            }
94
        };
95
 
96
    var allowEdit   = $allowEdit;
97
        var allowDelete = $allowDelete;
98
 
99
        var gridTable = $('#gridTable').dataTable( {
100
            'processing': true,
101
            'serverSide': true,
102
            'searching': true,
103
            'order': [[ 0, 'asc' ]],
104
            'ordering':  true,
105
            'ordenable' : true,
106
            'responsive': true,
107
            'select' : false,
108
        	'paging': true,
109
            'pagingType': 'simple_numbers',
110
 
111
    		'ajax': {
112
    			'url' : '$routeDatatable',
113
    			'type' : 'get',
114
                'data': function ( d ) {
115
                    d.topic_uuid = $('#form-filter #topic_uuid').val();
116
                    d.capsule_uuid = $('#form-filter #capsule_uuid').val();
117
 
118
                },
119
                'beforeSend': function (request) {
120
                  NProgress.start();
121
                },
122
                'dataFilter': function(response) {
123
                    var response = jQuery.parseJSON( response );
124
 
125
                    var json                = {};
126
                    json.recordsTotal       = 0;
127
                    json.recordsFiltered    = 0;
128
                    json.data               = [];
129
 
130
                    if(response.success) {
131
                        $('#form-capsule-add').attr('action', response.data.link_add );
132
 
133
                        if(response.data.capsules) {
134
                            $('#form-filter #capsule_uuid').empty();
135
                            $.each(response.data.capsules, function(index, value) {
136
                                  $('#form-filter #capsule_uuid').append('<option value="' + index + '">' + value + '</option>')
137
                            });
138
                        }
139
 
140
                        routeAdd = response.data.link_add;
141
                        if(response.data.link_add) {
142
 
143
                            $('button.btn-add').removeAttr('disabled');
144
                        } else {
145
                            $('button.btn-add').attr('disabled', 'disabled');
146
                        }
147
 
148
                        json.recordsTotal       = response.data.total;
149
                        json.recordsFiltered    = response.data.total;
150
                        json.data               = response.data.items;
151
                    } else {
152
                        $.fn.showError(response.data)
153
                    }
154
 
155
                    return JSON.stringify( json );
156
                }
157
    		},
158
            'language' : {
159
                'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
160
                'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
161
                'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
162
                'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
163
                'sInfo':           'LABEL_DATATABLE_SINFO',
164
                'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
165
                'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
166
                'sInfoPostFix':    '',
167
                'sSearch':         'LABEL_DATATABLE_SSEARCH',
168
                'sUrl':            '',
169
                'sInfoThousands':  ',',
170
                'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
171
                'oPaginate': {
172
                    'sFirst':    'LABEL_DATATABLE_SFIRST',
173
                    'sLast':     'LABEL_DATATABLE_SLAST',
174
                    'sNext':     'LABEL_DATATABLE_SNEXT',
175
                    'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
176
                },
177
                'oAria': {
178
                    'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
179
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
180
                },
181
            },
182
            'drawCallback': function( settings ) {
183
                NProgress.done();
16822 efrain 184
 
1 www 185
            },
186
            'aoColumns': [
187
                { 'mDataProp': 'name' },
188
                { 'mDataProp': 'details' },
189
                { 'mDataProp': 'media' },
190
                { 'mDataProp': 'actions' },
191
    	    ],
192
            'columnDefs': [
193
                {
194
                    'targets': 0,
195
                    'className' : 'text-vertical-middle',
196
                },
197
                {
198
                    'targets': -3,
199
                    'orderable': false,
200
                    'render' : function ( data, type, row ) {
201
                        var s = '';
202
                        s += 'LABEL_TYPE: ' + data['type']  + '<br/>';
203
                        return s;
204
                    }
205
                },
206
                {
207
                    'targets': -2,
208
                    'orderable': false,
209
                    'render' : function ( data, type, row ) {
210
                        s = '';
211
                        if( data['image'] )  {
212
                            s = s + '&nbsp; <img class="btn-view-image"" data-href="' + data['image'] + '" data-toggle="tooltip" src="'+data['image']+'" title="LABEL_VIEW" style="width: 40px; object-fit: cover; height: 40px;" /> ';
213
                        }
214
 
215
                        if( data['audio'] )  {
216
                            s = s + '&nbsp;<button class="btn btn-play-audio" data-href="' + data['audio'] + '" data-toggle="tooltip" title="LABEL_PLAY_AUDIO"><i class="fa fa-play"></i></button> <br>';
217
                        }
218
 
219
                        if( data['video'] )  {
220
                            s = s + '&nbsp;<button class="btn btn-play-video" data-href="' + data['video'] + '" data-toggle="tooltip" title="LABEL_PLAY_VIDEO"><i class="fa fa-video-camera"></i></button> <br>';
221
                        }
222
 
223
 
224
                        if( data['document'] )  {
225
                            s = s + '&nbsp;<button class="btn btn-view-document" data-href="' + data['document'] + '" data-toggle="tooltip" title="LABEL_VIEW_DOCUMENT"><i class="fa fa-file"></i></button> <br>';
226
                        }
227
 
228
                        if( data['text'] )  {
229
                            s = s + '&nbsp;<button class="btn btn-view-text" data-href="' + data['text'] + '" data-toggle="tooltip" title="LABEL_VIEW_TEXT"><i class="fa fa-text-width"></i></button> <br>';
230
                        }
231
 
232
                        return s;
233
                    }
234
                },
235
 
236
 
237
                {
238
                    'targets': -1,
239
                    'orderable': false,
240
                    'render' : function ( data, type, row ) {
241
                        s = '';
242
 
243
                        if(allowEdit && data['link_edit']  ) {
16906 efrain 244
                            s = s + '<button class="btn btn-info btn-sm btn-edit" data-href="' + data['link_edit']+ '" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pen"></i> Editar </button>&nbsp;';
1 www 245
                        }
246
                        if(allowDelete && data['link_delete']  ) {
247
                            s = s + '<button class="btn btn-danger btn-sm btn-delete" data-href="' + data['link_delete']+ '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> Eliminar</button>&nbsp;';
248
                        }
249
                        return s;
250
                    }
251
                }
252
              ],
253
        });
16905 efrain 254
 
255
 
1 www 256
    var validatorTextAdd  = $('#form-slide-text-add').validate({
257
        debug: true,
258
        onclick: false,
259
        onkeyup: false,
260
        ignore: [],
261
        rules: {
262
            'name': {
263
                required: true,
264
                maxlength: 128,
265
            },
266
            'description': {
267
                updateCkeditor:function() {
268
                        CKEDITOR.instances.description_add.updateElement();
269
                },
270
                required: true
271
            },
272
           'background': {
273
                required: true,
16905 efrain 274
                extension: 'jpg|jpeg|png',
275
                accept: 'image/jpg,image/jpeg,image/png'
1 www 276
            },
277
            'order' : {
278
                required: true,
279
                digits: true,
280
                min: 1,
281
                max: 250
282
            }
283
        },
284
        submitHandler: function(form)
285
        {
286
 
287
            var formdata = false;
288
            if (window.FormData){
289
                formdata = new FormData(form); //form[0]);
290
            }
291
 
6591 nelberth 292
            NProgress.start();
1 www 293
            $.ajax({
294
                'dataType'  : 'json',
295
                'accept'    : 'application/json',
296
                'method'    : 'post',
297
                'url'       :  routeAdd,
298
                'data'      :  formdata,
299
                'processData': false,
300
                'contentType': false,
301
            }).done(function(response) {
302
                if(response['success']) {
303
                    $.fn.showSuccess(response['data']);
16906 efrain 304
 
1 www 305
 
306
                    gridTable.api().ajax.reload(null, false);
16906 efrain 307
 
308
    	    	    $('#row-text-add-box').hide();
309
                	$('#row-text-edit-box').hide();
310
                	$('#row-image-add-box').hide();
311
                	$('#row-image-edit-box').hide();
312
                	$('#row-video-add-box').hide();
313
                	$('#row-video-edit-box').hide();
314
                	$('#row-document-add-box').hide();
315
                	$('#row-document-edit-box').hide();
316
                	$('#row-audio-add-box').hide();
317
                	$('#row-audio-edit-box').hide();
318
                	$('#row-quizz-add-box').hide();
319
                    $('#row-quizz-edit-box').hide();
320
                    $('#row-listing').show();
1 www 321
                } else {
322
                    validatorTextAdd.resetForm();
323
                    if(jQuery.type(response['data']) == 'string') {
324
                        $.fn.showError(response['data']);
325
                    } else  {
326
                        $.each(response['data'], function( fieldname, errors ) {
327
                            $.fn.showFormErrorValidator('#form-slide-text-add #' + fieldname, errors);
328
                        });
329
                    }
330
                }
331
            }).fail(function( jqXHR, textStatus, errorThrown) {
332
                $.fn.showError(textStatus);
333
            }).always(function() {
334
                NProgress.done();
7060 nelberth 335
 
16906 efrain 336
 
1 www 337
            });
338
            return false;
339
        },
340
        invalidHandler: function(form, validator) {
341
 
342
        }
343
    });
344
 
345
    var validatorTextEdit = $('#form-slide-text-edit').validate({
346
        debug: true,
347
        onclick: false,
348
        onkeyup: false,
349
        ignore: [],
350
        rules: {
351
            'name': {
352
                required: true,
353
                maxlength: 128,
354
            },
355
            'description': {
356
                updateCkeditor:function() {
357
                        CKEDITOR.instances.description_edit.updateElement();
358
                },
359
                required: true
360
            },
361
           'background': {
16906 efrain 362
                required: false,
363
                extension: 'jpg|jpeg|png',
364
                accept: 'image/jpg,image/jpeg,image/png'
1 www 365
            },
366
            'order' : {
367
                required: true,
368
                digits: true,
369
                min: 1,
370
                max: 250
371
            }
372
        },
373
        submitHandler: function(form)
374
        {
375
            var formdata = false;
376
            if (window.FormData){
377
                formdata = new FormData(form); //form[0]);
378
            }
379
 
7060 nelberth 380
 
16906 efrain 381
 
6595 nelberth 382
            NProgress.start();
1 www 383
            $.ajax({
384
                'dataType'  : 'json',
385
                'accept'    : 'application/json',
386
                'method'    : 'post',
387
                'url'       :  $('#form-slide-text-edit').attr('action'),
388
                'data'      :  formdata,
389
                'processData': false,
390
                'contentType': false,
391
            }).done(function(response) {
392
                if(response['success']) {
393
                    $.fn.showSuccess(response['data']);
6595 nelberth 394
 
16906 efrain 395
 
1 www 396
                    gridTable.api().ajax.reload(null, false);
16906 efrain 397
 
398
    	    	    $('#row-text-add-box').hide();
399
                	$('#row-text-edit-box').hide();
400
                	$('#row-image-add-box').hide();
401
                	$('#row-image-edit-box').hide();
402
                	$('#row-video-add-box').hide();
403
                	$('#row-video-edit-box').hide();
404
                	$('#row-document-add-box').hide();
405
                	$('#row-document-edit-box').hide();
406
                	$('#row-audio-add-box').hide();
407
                	$('#row-audio-edit-box').hide();
408
                	$('#row-quizz-add-box').hide();
409
                    $('#row-quizz-edit-box').hide();
410
                    $('#row-listing').show();
1 www 411
                } else {
412
                    validatorTextEdit.resetForm();
413
                    if(jQuery.type(response['data']) == 'string') {
414
                        $.fn.showError(response['data']);
415
                    } else  {
416
                        $.each(response['data'], function( fieldname, errors ) {
417
                            $.fn.showFormErrorValidator('#form-slide-text-edit #' + fieldname, errors);
418
                        });
419
                    }
420
                }
421
            }).fail(function( jqXHR, textStatus, errorThrown) {
422
                $.fn.showError(textStatus);
423
            }).always(function() {
424
                NProgress.done();
7060 nelberth 425
 
16906 efrain 426
 
1 www 427
            });
428
            return false;
429
        },
430
        invalidHandler: function(form, validator) {
431
 
432
        }
433
    });
434
 
435
    var validatorImageAdd  = $('#form-slide-image-add').validate({
436
        debug: true,
437
        onclick: false,
438
        onkeyup: false,
439
        ignore: [],
440
        rules: {
441
            'name': {
442
                required: true,
443
                maxlength: 128,
444
            },
445
           'file': {
446
                required: true,
16906 efrain 447
                extension: 'jpg|jpeg|png',
448
                accept: 'image/jpg,image/jpeg,image/png'
1 www 449
            },
450
            'order' : {
451
                required: true,
452
                digits: true,
453
                min: 1,
454
                max: 250
455
            }
456
        },
457
        submitHandler: function(form)
458
        {
459
            var formdata = false;
460
            if (window.FormData){
461
                formdata = new FormData(form); //form[0]);
462
            }
463
 
7060 nelberth 464
 
16906 efrain 465
 
6499 nelberth 466
            NProgress.start();
1 www 467
            $.ajax({
468
                'dataType'  : 'json',
469
                'accept'    : 'application/json',
470
                'method'    : 'post',
471
                'url'       :  routeAdd,
472
                'data'      :  formdata,
473
                'processData': false,
474
                'contentType': false,
475
            }).done(function(response) {
6192 nelberth 476
                console.log(response)
1 www 477
                if(response['success']) {
478
                    $.fn.showSuccess(response['data']);
16906 efrain 479
 
1 www 480
 
481
                    gridTable.api().ajax.reload(null, false);
16906 efrain 482
 
483
    	    	    $('#row-text-add-box').hide();
484
                	$('#row-text-edit-box').hide();
485
                	$('#row-image-add-box').hide();
486
                	$('#row-image-edit-box').hide();
487
                	$('#row-video-add-box').hide();
488
                	$('#row-video-edit-box').hide();
489
                	$('#row-document-add-box').hide();
490
                	$('#row-document-edit-box').hide();
491
                	$('#row-audio-add-box').hide();
492
                	$('#row-audio-edit-box').hide();
493
                	$('#row-quizz-add-box').hide();
494
                    $('#row-quizz-edit-box').hide();
495
                    $('#row-listing').show();
1 www 496
                } else {
497
                    validatorImageAdd.resetForm();
498
                    if(jQuery.type(response['data']) == 'string') {
499
                        $.fn.showError(response['data']);
500
                    } else  {
501
                        $.each(response['data'], function( fieldname, errors ) {
502
                            $.fn.showFormErrorValidator('#form-slide-image-add #' + fieldname, errors);
503
                        });
504
                    }
505
                }
506
            }).fail(function( jqXHR, textStatus, errorThrown) {
507
                $.fn.showError(textStatus);
508
            }).always(function() {
509
                NProgress.done();
7060 nelberth 510
 
16906 efrain 511
 
1 www 512
            });
513
            return false;
514
        },
515
        invalidHandler: function(form, validator) {
516
 
517
        }
518
    });
519
 
520
    var validatorImageEdit = $('#form-slide-image-edit').validate({
521
        debug: true,
522
        onclick: false,
523
        onkeyup: false,
524
        ignore: [],
525
        rules: {
526
            'name': {
527
                required: true,
528
                maxlength: 128,
529
            },
530
            'file': {
16906 efrain 531
                required: false,
532
                extension: 'jpg|jpeg|png',
533
                accept: 'image/jpg,image/jpeg,image/png'
1 www 534
            },
535
            'order' : {
536
                required: true,
537
                digits: true,
538
                min: 1,
539
                max: 250
540
            }
541
        },
542
        submitHandler: function(form)
543
        {
544
            var formdata = false;
545
            if (window.FormData){
546
                formdata = new FormData(form); //form[0]);
547
            }
7060 nelberth 548
 
16906 efrain 549
 
6500 nelberth 550
            NProgress.start();
1 www 551
            $.ajax({
552
                'dataType'  : 'json',
553
                'accept'    : 'application/json',
554
                'method'    : 'post',
555
                'url'       :  $('#form-slide-image-edit').attr('action'),
556
                'data'      :  formdata,
557
                'processData': false,
558
                'contentType': false,
559
            }).done(function(response) {
560
                if(response['success']) {
561
                    $.fn.showSuccess(response['data']);
16906 efrain 562
 
1 www 563
 
564
                    gridTable.api().ajax.reload(null, false);
16906 efrain 565
 
566
    	    	    $('#row-text-add-box').hide();
567
                	$('#row-text-edit-box').hide();
568
                	$('#row-image-add-box').hide();
569
                	$('#row-image-edit-box').hide();
570
                	$('#row-video-add-box').hide();
571
                	$('#row-video-edit-box').hide();
572
                	$('#row-document-add-box').hide();
573
                	$('#row-document-edit-box').hide();
574
                	$('#row-audio-add-box').hide();
575
                	$('#row-audio-edit-box').hide();
576
                	$('#row-quizz-add-box').hide();
577
                    $('#row-quizz-edit-box').hide();
578
                    $('#row-listing').show();
1 www 579
                } else {
580
                    validatorImageEdit.resetForm();
581
                    if(jQuery.type(response['data']) == 'string') {
582
                        $.fn.showError(response['data']);
583
                    } else  {
584
                        $.each(response['data'], function( fieldname, errors ) {
585
                            $.fn.showFormErrorValidator('#form-slide-image-edit #' + fieldname, errors);
586
                        });
587
                    }
588
                }
589
            }).fail(function( jqXHR, textStatus, errorThrown) {
590
                $.fn.showError(textStatus);
591
            }).always(function() {
592
                NProgress.done();
7060 nelberth 593
 
16906 efrain 594
 
1 www 595
            });
596
            return false;
597
        },
598
        invalidHandler: function(form, validator) {
599
 
600
        }
601
    });
602
 
603
    var validatorVideoAdd  = $('#form-slide-video-add').validate({
604
        debug: true,
605
        onclick: false,
606
        onkeyup: false,
607
        ignore: [],
608
        rules: {
609
            'name': {
610
                required: true,
611
                maxlength: 128,
612
            },
613
           'file': {
614
                required: true,
615
                extension: 'webm,mp4,webm',
616
                accept: 'video/webm,video/mpeg,video/mp4'
617
            },
618
            'background': {
6620 nelberth 619
                required: true,
16906 efrain 620
                extension: 'jpg|jpeg|png',
621
                accept: 'image/jpg,image/jpeg,image/png'
1 www 622
            },
623
            'order' : {
624
                required: true,
625
                digits: true,
626
                min: 1,
627
                max: 250
628
            }
629
        },
630
        submitHandler: function(form)
631
        {
632
            var formdata = false;
633
            if (window.FormData){
634
                formdata = new FormData(form); //form[0]);
635
            }
636
 
7060 nelberth 637
 
16906 efrain 638
 
6620 nelberth 639
            NProgress.start();
1 www 640
            $.ajax({
641
                'dataType'  : 'json',
642
                'accept'    : 'application/json',
643
                'method'    : 'post',
644
                'url'       :  routeAdd,
645
                'data'      :  formdata,
646
                'processData': false,
647
                'contentType': false,
648
            }).done(function(response) {
649
                if(response['success']) {
650
                    $.fn.showSuccess(response['data']);
16906 efrain 651
 
652
 
1 www 653
                    gridTable.api().ajax.reload(null, false);
16906 efrain 654
 
655
    	    	    $('#row-text-add-box').hide();
656
                	$('#row-text-edit-box').hide();
657
                	$('#row-image-add-box').hide();
658
                	$('#row-image-edit-box').hide();
659
                	$('#row-video-add-box').hide();
660
                	$('#row-video-edit-box').hide();
661
                	$('#row-document-add-box').hide();
662
                	$('#row-document-edit-box').hide();
663
                	$('#row-audio-add-box').hide();
664
                	$('#row-audio-edit-box').hide();
665
                	$('#row-quizz-add-box').hide();
666
                    $('#row-quizz-edit-box').hide();
667
                    $('#row-listing').show();
1 www 668
                } else {
669
                    validatorVideoAdd.resetForm();
670
                    if(jQuery.type(response['data']) == 'string') {
671
                        $.fn.showError(response['data']);
672
                    } else  {
673
                        $.each(response['data'], function( fieldname, errors ) {
674
                            $.fn.showFormErrorValidator('#form-slide-video-add #' + fieldname, errors);
675
                        });
676
                    }
677
                }
678
            }).fail(function( jqXHR, textStatus, errorThrown) {
679
                $.fn.showError(textStatus);
680
            }).always(function() {
681
                NProgress.done();
16906 efrain 682
 
1 www 683
            });
684
            return false;
685
        },
686
        invalidHandler: function(form, validator) {
687
 
688
        }
689
    });
690
 
691
    var validatorVideoEdit = $('#form-slide-video-edit').validate({
692
        debug: true,
693
        onclick: false,
694
        onkeyup: false,
695
        ignore: [],
696
        rules: {
697
            'name': {
698
                required: true,
699
                maxlength: 128,
700
            },
701
            'file': {
702
                required: false,
703
                extension: 'webm,mp4,webm',
704
                accept: 'video/webm,video/mpeg,video/mp4'
705
            },
706
            'background': {
16906 efrain 707
                required: false,
708
                extension: 'jpg|jpeg|png',
709
                accept: 'image/jpg,image/jpeg,image/png'
1 www 710
            },
711
            'order' : {
712
                required: true,
713
                digits: true,
714
                min: 1,
715
                max: 250
716
            }
717
        },
718
        submitHandler: function(form)
719
        {
720
            var formdata = false;
721
            if (window.FormData){
722
                formdata = new FormData(form); //form[0]);
723
            }
724
 
7060 nelberth 725
 
16906 efrain 726
 
6650 nelberth 727
            NProgress.start();
1 www 728
            $.ajax({
729
                'dataType'  : 'json',
730
                'accept'    : 'application/json',
731
                'method'    : 'post',
732
                'url'       :  $('#form-slide-video-edit').attr('action'),
733
                'data'      :  formdata,
734
                'processData': false,
735
                'contentType': false,
736
            }).done(function(response) {
737
                if(response['success']) {
738
                    $.fn.showSuccess(response['data']);
16906 efrain 739
 
6643 nelberth 740
 
1 www 741
                    gridTable.api().ajax.reload(null, false);
16906 efrain 742
 
743
    	    	    $('#row-text-add-box').hide();
744
                	$('#row-text-edit-box').hide();
745
                	$('#row-image-add-box').hide();
746
                	$('#row-image-edit-box').hide();
747
                	$('#row-video-add-box').hide();
748
                	$('#row-video-edit-box').hide();
749
                	$('#row-document-add-box').hide();
750
                	$('#row-document-edit-box').hide();
751
                	$('#row-audio-add-box').hide();
752
                	$('#row-audio-edit-box').hide();
753
                	$('#row-quizz-add-box').hide();
754
                    $('#row-quizz-edit-box').hide();
755
                    $('#row-listing').show();
1 www 756
                } else {
757
                    validatorVideoEdit.resetForm();
758
                    if(jQuery.type(response['data']) == 'string') {
759
                        $.fn.showError(response['data']);
760
                    } else  {
761
                        $.each(response['data'], function( fieldname, errors ) {
762
                            $.fn.showFormErrorValidator('#form-slide-video-edit #' + fieldname, errors);
763
                        });
764
                    }
765
                }
766
            }).fail(function( jqXHR, textStatus, errorThrown) {
767
                $.fn.showError(textStatus);
768
            }).always(function() {
16906 efrain 769
 
1 www 770
                NProgress.done();
771
            });
772
            return false;
773
        },
774
        invalidHandler: function(form, validator) {
775
 
776
        }
777
    });
778
 
779
 
780
    var validatorDocumentAdd  = $('#form-slide-document-add').validate({
781
        debug: true,
782
        onclick: false,
783
        onkeyup: false,
784
        ignore: [],
785
        rules: {
786
            'name': {
787
                required: true,
788
                maxlength: 128,
789
            },
790
           'file': {
791
                required: true,
792
                extension: 'pdf',
793
                accept: 'application/pdf'
794
            },
795
           'background': {
796
                required: true,
16906 efrain 797
                extension: 'jpg|jpeg|png',
798
                accept: 'image/jpg,image/jpeg,image/png'
1 www 799
            },
800
            'order' : {
801
                required: true,
802
                digits: true,
803
                min: 1,
804
                max: 250
805
            }
806
        },
807
        submitHandler: function(form)
808
        {
809
            var formdata = false;
810
            if (window.FormData){
811
                formdata = new FormData(form); //form[0]);
812
            }
813
 
7060 nelberth 814
 
16906 efrain 815
 
6650 nelberth 816
            NProgress.start();
1 www 817
            $.ajax({
818
                'dataType'  : 'json',
819
                'accept'    : 'application/json',
820
                'method'    : 'post',
821
                'url'       :  routeAdd,
822
                'data'      :  formdata,
823
                'processData': false,
824
                'contentType': false,
825
            }).done(function(response) {
826
                if(response['success']) {
827
                    $.fn.showSuccess(response['data']);
16906 efrain 828
 
1 www 829
 
830
                    gridTable.api().ajax.reload(null, false);
16906 efrain 831
 
832
    	    	    $('#row-text-add-box').hide();
833
                	$('#row-text-edit-box').hide();
834
                	$('#row-image-add-box').hide();
835
                	$('#row-image-edit-box').hide();
836
                	$('#row-video-add-box').hide();
837
                	$('#row-video-edit-box').hide();
838
                	$('#row-document-add-box').hide();
839
                	$('#row-document-edit-box').hide();
840
                	$('#row-audio-add-box').hide();
841
                	$('#row-audio-edit-box').hide();
842
                	$('#row-quizz-add-box').hide();
843
                    $('#row-quizz-edit-box').hide();
844
                    $('#row-listing').show();
1 www 845
                } else {
846
                    validatorDocumentAdd.resetForm();
847
                    if(jQuery.type(response['data']) == 'string') {
848
                        $.fn.showError(response['data']);
849
                    } else  {
850
                        $.each(response['data'], function( fieldname, errors ) {
851
                            $.fn.showFormErrorValidator('#form-slide-document-add #' + fieldname, errors);
852
                        });
853
                    }
854
                }
855
            }).fail(function( jqXHR, textStatus, errorThrown) {
856
                $.fn.showError(textStatus);
857
            }).always(function() {
16906 efrain 858
 
1 www 859
                NProgress.done();
860
            });
861
            return false;
862
        },
863
        invalidHandler: function(form, validator) {
864
 
865
        }
866
    });
867
 
868
    var validatorDocumentEdit = $('#form-slide-document-edit').validate({
869
        debug: true,
870
        onclick: false,
871
        onkeyup: false,
872
        ignore: [],
873
        rules: {
874
            'name': {
875
                required: true,
876
                maxlength: 128,
877
            },
878
           'file': {
6667 nelberth 879
                required: false,
1 www 880
                extension: 'pdf',
881
                accept: 'application/pdf'
882
            },
883
           'background': {
16906 efrain 884
                required: false,
885
                extension: 'jpg|jpeg|png',
886
                accept: 'image/jpg,image/jpeg,image/png'
1 www 887
            },
888
            'order' : {
889
                required: true,
890
                digits: true,
891
                min: 1,
892
                max: 250
893
            }
894
        },
895
        submitHandler: function(form)
896
        {
897
            var formdata = false;
898
            if (window.FormData){
899
                formdata = new FormData(form); //form[0]);
900
            }
901
 
7060 nelberth 902
 
16906 efrain 903
 
6650 nelberth 904
            NProgress.start();
1 www 905
            $.ajax({
906
                'dataType'  : 'json',
907
                'accept'    : 'application/json',
908
                'method'    : 'post',
909
                'url'       :  $('#form-slide-document-edit').attr('action'),
910
                'data'      :  formdata,
911
                'processData': false,
912
                'contentType': false,
913
            }).done(function(response) {
914
                if(response['success']) {
915
                    $.fn.showSuccess(response['data']);
16906 efrain 916
 
1 www 917
 
918
                    gridTable.api().ajax.reload(null, false);
16906 efrain 919
 
920
    	    	    $('#row-text-add-box').hide();
921
                	$('#row-text-edit-box').hide();
922
                	$('#row-image-add-box').hide();
923
                	$('#row-image-edit-box').hide();
924
                	$('#row-video-add-box').hide();
925
                	$('#row-video-edit-box').hide();
926
                	$('#row-document-add-box').hide();
927
                	$('#row-document-edit-box').hide();
928
                	$('#row-audio-add-box').hide();
929
                	$('#row-audio-edit-box').hide();
930
                	$('#row-quizz-add-box').hide();
931
                    $('#row-quizz-edit-box').hide();
932
                    $('#row-listing').show();
1 www 933
                } else {
934
                    validatorDocumentEdit.resetForm();
935
                    if(jQuery.type(response['data']) == 'string') {
936
                        $.fn.showError(response['data']);
937
                    } else  {
938
                        $.each(response['data'], function( fieldname, errors ) {
939
                            $.fn.showFormErrorValidator('#form-slide-document-edit #' + fieldname, errors);
940
                        });
941
                    }
942
                }
943
            }).fail(function( jqXHR, textStatus, errorThrown) {
944
                $.fn.showError(textStatus);
945
            }).always(function() {
16906 efrain 946
 
1 www 947
                NProgress.done();
948
            });
949
            return false;
950
        },
951
        invalidHandler: function(form, validator) {
952
 
953
        }
954
    });
955
 
956
    var validatorAudioAdd  = $('#form-slide-audio-add').validate({
957
        debug: true,
958
        onclick: false,
959
        onkeyup: false,
960
        ignore: [],
961
        rules: {
962
            'name': {
963
                required: true,
964
                maxlength: 128,
965
            },
966
           'file': {
967
                required: true,
968
                extension: 'wav|mp3',
969
                accept: 'audio/wav, audio/mpeg'
970
            },
971
 
972
           'background': {
16906 efrain 973
                required: true,
974
                extension: 'jpg|jpeg|png',
975
                accept: 'image/jpg,image/jpeg,image/png'
1 www 976
            },
977
            'order' : {
978
                required: true,
979
                digits: true,
980
                min: 1,
981
                max: 250
982
            }
983
        },
984
        submitHandler: function(form)
985
        {
986
            var formdata = false;
987
            if (window.FormData){
988
                formdata = new FormData(form); //form[0]);
989
            }
990
 
7060 nelberth 991
 
16906 efrain 992
 
6650 nelberth 993
            NProgress.start();
1 www 994
            $.ajax({
995
                'dataType'  : 'json',
996
                'accept'    : 'application/json',
997
                'method'    : 'post',
998
                'url'       :  routeAdd,
999
                'data'      :  formdata,
1000
                'processData': false,
1001
                'contentType': false,
1002
            }).done(function(response) {
1003
                if(response['success']) {
1004
                    $.fn.showSuccess(response['data']);
16906 efrain 1005
 
1 www 1006
 
1007
                    gridTable.api().ajax.reload(null, false);
16906 efrain 1008
 
1009
    	    	    $('#row-text-add-box').hide();
1010
                	$('#row-text-edit-box').hide();
1011
                	$('#row-image-add-box').hide();
1012
                	$('#row-image-edit-box').hide();
1013
                	$('#row-video-add-box').hide();
1014
                	$('#row-video-edit-box').hide();
1015
                	$('#row-document-add-box').hide();
1016
                	$('#row-document-edit-box').hide();
1017
                	$('#row-audio-add-box').hide();
1018
                	$('#row-audio-edit-box').hide();
1019
                	$('#row-quizz-add-box').hide();
1020
                    $('#row-quizz-edit-box').hide();
1021
                    $('#row-listing').show();
1 www 1022
                } else {
1023
                    validatorAudioAdd.resetForm();
1024
                    if(jQuery.type(response['data']) == 'string') {
1025
                        $.fn.showError(response['data']);
1026
                    } else  {
1027
                        $.each(response['data'], function( fieldname, errors ) {
1028
                            $.fn.showFormErrorValidator('#form-slide-audio-add #' + fieldname, errors);
1029
                        });
1030
                    }
1031
                }
1032
            }).fail(function( jqXHR, textStatus, errorThrown) {
1033
                $.fn.showError(textStatus);
1034
            }).always(function() {
1035
                NProgress.done();
7060 nelberth 1036
 
16906 efrain 1037
 
1 www 1038
            });
1039
            return false;
1040
        },
1041
        invalidHandler: function(form, validator) {
1042
 
1043
        }
1044
    });
1045
 
1046
    var validatorAudioEdit = $('#form-slide-audio-edit').validate({
1047
        debug: true,
1048
        onclick: false,
1049
        onkeyup: false,
1050
        ignore: [],
1051
        rules: {
1052
            'name': {
1053
                required: true,
1054
                maxlength: 128,
1055
            },
1056
           'file': {
6667 nelberth 1057
                required: false,
1 www 1058
                extension: 'wav|mp3',
1059
                accept: 'audio/wav, audio/mpeg'
1060
            },
1061
 
1062
           'background': {
16906 efrain 1063
                required: false,
1064
                extension: 'jpg|jpeg|png',
1065
                accept: 'image/jpg,image/jpeg,image/png'
1 www 1066
            },
1067
            'order' : {
1068
                required: true,
1069
                digits: true,
1070
                min: 1,
1071
                max: 250
1072
            }
1073
        },
1074
        submitHandler: function(form)
1075
        {
1076
            var formdata = false;
1077
            if (window.FormData){
1078
                formdata = new FormData(form); //form[0]);
1079
            }
1080
 
7060 nelberth 1081
 
16906 efrain 1082
 
6650 nelberth 1083
            NProgress.start();
1 www 1084
            $.ajax({
1085
                'dataType'  : 'json',
1086
                'accept'    : 'application/json',
1087
                'method'    : 'post',
1088
                'url'       :  $('#form-slide-audio-edit').attr('action'),
1089
                'data'      :  formdata,
1090
                'processData': false,
1091
                'contentType': false,
1092
            }).done(function(response) {
1093
                if(response['success']) {
1094
                    $.fn.showSuccess(response['data']);
16906 efrain 1095
 
1 www 1096
 
1097
                    gridTable.api().ajax.reload(null, false);
16906 efrain 1098
 
1099
    	    	    $('#row-text-add-box').hide();
1100
                	$('#row-text-edit-box').hide();
1101
                	$('#row-image-add-box').hide();
1102
                	$('#row-image-edit-box').hide();
1103
                	$('#row-video-add-box').hide();
1104
                	$('#row-video-edit-box').hide();
1105
                	$('#row-document-add-box').hide();
1106
                	$('#row-document-edit-box').hide();
1107
                	$('#row-audio-add-box').hide();
1108
                	$('#row-audio-edit-box').hide();
1109
                	$('#row-quizz-add-box').hide();
1110
                    $('#row-quizz-edit-box').hide();
1111
                    $('#row-listing').show();
1 www 1112
                } else {
1113
                    validatorAudioEdit.resetForm();
1114
                    if(jQuery.type(response['data']) == 'string') {
1115
                        $.fn.showError(response['data']);
1116
                    } else  {
1117
                        $.each(response['data'], function( fieldname, errors ) {
1118
                            $.fn.showFormErrorValidator('#form-slide-audio-edit #' + fieldname, errors);
1119
                        });
1120
                    }
1121
                }
1122
            }).fail(function( jqXHR, textStatus, errorThrown) {
1123
                $.fn.showError(textStatus);
1124
            }).always(function() {
16906 efrain 1125
 
1 www 1126
                NProgress.done();
1127
            });
1128
            return false;
1129
        },
1130
        invalidHandler: function(form, validator) {
1131
 
1132
        }
1133
    });
1134
 
1135
    var validatorQuizzAdd  = $('#form-slide-quizz-add').validate({
1136
        debug: true,
1137
        onclick: false,
1138
        onkeyup: false,
1139
        ignore: [],
1140
        rules: {
1141
            'name': {
1142
                required: true,
1143
                maxlength: 128,
1144
            },
1145
           'file': {
1146
                required: true,
1147
                extension: 'wav|mp3',
1148
                accept: 'quizz/wav, quizz/mpeg'
1149
            },
6667 nelberth 1150
            'background': {
1151
                required: true,
16906 efrain 1152
                extension: 'jpg|jpeg|png',
1153
                accept: 'image/jpg,image/jpeg,image/png'
6667 nelberth 1154
            },
1 www 1155
            'quiz_id': {
1156
                required: true,
1157
            },
1158
            'order' : {
1159
                required: true,
1160
                digits: true,
1161
                min: 1,
1162
                max: 250
1163
            }
1164
        },
1165
        submitHandler: function(form)
1166
        {
1167
 
7060 nelberth 1168
 
16906 efrain 1169
 
6650 nelberth 1170
            NProgress.start();
1 www 1171
            var formdata = false;
1172
            if (window.FormData){
1173
                formdata = new FormData(form); //form[0]);
1174
            }
1175
 
1176
            $.ajax({
1177
                'dataType'  : 'json',
1178
                'accept'    : 'application/json',
1179
                'method'    : 'post',
1180
                'url'       :  routeAdd,
1181
                'data'      :  formdata,
1182
                'processData': false,
1183
                'contentType': false,
1184
            }).done(function(response) {
1185
                if(response['success']) {
1186
                    $.fn.showSuccess(response['data']);
16906 efrain 1187
 
1 www 1188
 
1189
                    gridTable.api().ajax.reload(null, false);
16906 efrain 1190
 
1191
    	    	    $('#row-text-add-box').hide();
1192
                	$('#row-text-edit-box').hide();
1193
                	$('#row-image-add-box').hide();
1194
                	$('#row-image-edit-box').hide();
1195
                	$('#row-video-add-box').hide();
1196
                	$('#row-video-edit-box').hide();
1197
                	$('#row-document-add-box').hide();
1198
                	$('#row-document-edit-box').hide();
1199
                	$('#row-audio-add-box').hide();
1200
                	$('#row-audio-edit-box').hide();
1201
                	$('#row-quizz-add-box').hide();
1202
                    $('#row-quizz-edit-box').hide();
1203
                    $('#row-listing').show();
1 www 1204
                } else {
1205
                    validatorQuizzAdd.resetForm();
1206
                    if(jQuery.type(response['data']) == 'string') {
1207
                        $.fn.showError(response['data']);
1208
                    } else  {
1209
                        $.each(response['data'], function( fieldname, errors ) {
1210
                            $.fn.showFormErrorValidator('#form-slide-quizz-add #' + fieldname, errors);
1211
                        });
1212
                    }
1213
                }
1214
            }).fail(function( jqXHR, textStatus, errorThrown) {
1215
                $.fn.showError(textStatus);
1216
            }).always(function() {
1217
                NProgress.done();
7060 nelberth 1218
 
16906 efrain 1219
 
1 www 1220
            });
1221
            return false;
1222
        },
1223
        invalidHandler: function(form, validator) {
1224
 
1225
        }
1226
    });
1227
 
1228
    var validatorQuizzEdit = $('#form-slide-quizz-edit').validate({
1229
        debug: true,
1230
        onclick: false,
1231
        onkeyup: false,
1232
        ignore: [],
1233
        rules: {
1234
            'name': {
1235
                required: true,
1236
                maxlength: 128,
1237
            },
1238
           'background': {
16906 efrain 1239
                required: false,
1240
                extension: 'jpg|jpeg|png',
1241
                accept: 'image/jpg,image/jpeg,image/png',
1 www 1242
            },
1243
            'quiz_id': {
1244
                required: true,
1245
            },
1246
            'order' : {
1247
                required: true,
1248
                digits: true,
1249
                min: 1,
1250
                max: 250
1251
            }
1252
        },
1253
        submitHandler: function(form)
1254
        {
1255
 
16906 efrain 1256
 
6650 nelberth 1257
            NProgress.start();
1 www 1258
            var formdata = false;
1259
            if (window.FormData){
1260
                formdata = new FormData(form); //form[0]);
1261
            }
1262
            $.ajax({
1263
                'dataType'  : 'json',
1264
                'accept'    : 'application/json',
1265
                'method'    : 'post',
6673 nelberth 1266
                'url'       :  $('#form-slide-quizz-edit').attr('action'),
1 www 1267
                'data'      :  formdata,
1268
                'processData': false,
1269
                'contentType': false,
1270
            }).done(function(response) {
1271
                if(response['success']) {
1272
                    $.fn.showSuccess(response['data']);
16906 efrain 1273
 
1 www 1274
 
1275
                    gridTable.api().ajax.reload(null, false);
16906 efrain 1276
 
1277
    	    	    $('#row-text-add-box').hide();
1278
                	$('#row-text-edit-box').hide();
1279
                	$('#row-image-add-box').hide();
1280
                	$('#row-image-edit-box').hide();
1281
                	$('#row-video-add-box').hide();
1282
                	$('#row-video-edit-box').hide();
1283
                	$('#row-document-add-box').hide();
1284
                	$('#row-document-edit-box').hide();
1285
                	$('#row-audio-add-box').hide();
1286
                	$('#row-audio-edit-box').hide();
1287
                	$('#row-quizz-add-box').hide();
1288
                    $('#row-quizz-edit-box').hide();
1289
                    $('#row-listing').show();
1 www 1290
                } else {
1291
                    validatorQuizzEdit.resetForm();
1292
                    if(jQuery.type(response['data']) == 'string') {
1293
                        $.fn.showError(response['data']);
1294
                    } else  {
1295
                        $.each(response['data'], function( fieldname, errors ) {
1296
                            $.fn.showFormErrorValidator('#form-slide-quizz-edit #' + fieldname, errors);
1297
                        });
1298
                    }
1299
                }
1300
            }).fail(function( jqXHR, textStatus, errorThrown) {
1301
                $.fn.showError(textStatus);
1302
            }).always(function() {
1303
                NProgress.done();
7060 nelberth 1304
 
16906 efrain 1305
 
1 www 1306
            });
1307
            return false;
1308
        },
1309
        invalidHandler: function(form, validator) {
1310
 
1311
        }
1312
    });
6591 nelberth 1313
 
1 www 1314
    $('body').on('click', 'button.btn-edit', function(e) {
1315
        e.preventDefault();
6651 nelberth 1316
        NProgress.start();
1 www 1317
        var url = $(this).data('href');
1318
        $.ajax({
1319
            'dataType'  : 'json',
1320
            'accept'    : 'application/json',
1321
            'method'    : 'get',
1322
            'url'       :  url,
1323
        }).done(function(response) {
1324
            if(response['success']) {
1325
 
16906 efrain 1326
                $('#row-listing').hide();
1327
 
1328
	    	    $('#row-text-add-box').hide();
1329
            	$('#row-text-edit-box').hide();
1330
            	$('#row-image-add-box').hide();
1331
            	$('#row-image-edit-box').hide();
1332
            	$('#row-video-add-box').hide();
1333
            	$('#row-video-edit-box').hide();
1334
            	$('#row-document-add-box').hide();
1335
            	$('#row-document-edit-box').hide();
1336
            	$('#row-audio-add-box').hide();
1337
            	$('#row-audio-edit-box').hide();
1338
            	$('#row-quizz-add-box').hide();
1339
                $('#row-quizz-edit-box').hide();
1340
 
1341
 
1 www 1342
                if(response['data']['type'] == 'text') {
1343
                    $('#form-slide-text-edit').attr('action',url);
1344
                    $('#form-slide-text-edit #name').val(response['data']['name']);
1345
                    $('#form-slide-text-edit #order').val(response['data']['order']);
16906 efrain 1346
                    $('#form-slide-text-edit #file').fileinput('reset');
1347
                    $('#form-slide-text-edit #file').val('');
1348
 
1 www 1349
                    CKEDITOR.instances.description_edit.setData(response['data']['description']);
1350
                    validatorTextEdit.resetForm();
1351
 
1352
 
16906 efrain 1353
                    $('#row-text-edit-box').show();
6595 nelberth 1354
 
1 www 1355
                }
1356
                if(response['data']['type'] == 'image') {
6510 nelberth 1357
                    console.log(response['data']['file'])
1 www 1358
                    $('#form-slide-image-edit').attr('action',url);
1359
                    $('#form-slide-image-edit #name').val(response['data']['name']);
1360
                    $('#form-slide-image-edit #order').val(response['data']['order']);
16906 efrain 1361
                    $('#form-slide-image-edit #background').fileinput('reset');
1362
                    $('#form-slide-image-edit #background').val('');
1 www 1363
                    validatorImageEdit.resetForm();
1364
 
16906 efrain 1365
                    $('#row-image-edit-box').show();
1 www 1366
 
1367
                }
1368
                if(response['data']['type'] == 'video') {
1369
                    $('#form-slide-video-edit').attr('action',url);
1370
                    $('#form-slide-video-edit #name').val(response['data']['name']);
1371
                    $('#form-slide-video-edit #order').val(response['data']['order']);
1372
                    $('#form-slide-video-edit #file').fileinput('reset');
16906 efrain 1373
                    $('#form-slide-video-edit #file').val('');
1374
                    $('#form-slide-video-edit #background').fileinput('reset');
1375
                    $('#form-slide-video-edit #background').val('');
1376
 
1 www 1377
 
16906 efrain 1378
                   $('#row-video-edit-box').show();
1 www 1379
 
1380
                }
1381
                if(response['data']['type'] == 'document') {
1382
                    $('#form-slide-document-edit').attr('action',url);
1383
                    $('#form-slide-document-edit #name').val(response['data']['name']);
1384
                    $('#form-slide-document-edit #order').val(response['data']['order']);
1385
                    $('#form-slide-document-edit #file').fileinput('reset');
1386
                    $('#form-slide-document-edit #file').val('');
16906 efrain 1387
                    $('#form-slide-document-edit #background').fileinput('reset');
1388
                    $('#form-slide-document-edit #background').val('');
1 www 1389
                    validatorDocumentEdit.resetForm();
1390
 
16906 efrain 1391
                    $('#row-document-edit-box').show();
1 www 1392
 
1393
                }
1394
                if(response['data']['type'] == 'audio') {
1395
                    $('#form-slide-audio-edit').attr('action',url);
1396
                    $('#form-slide-audio-edit #name').val(response['data']['name']);
1397
                    $('#form-slide-audio-edit #order').val(response['data']['order']);
1398
                    $('#form-slide-audio-edit #file').fileinput('reset');
1399
                    $('#form-slide-audio-edit #file').val('');
16905 efrain 1400
                    $('#form-slide-audio-edit #background').fileinput('reset');
1401
                    $('#form-slide-audio-edit #background').val('');
1 www 1402
                    validatorAudioEdit.resetForm();
1403
 
16906 efrain 1404
                    $('#row-audio-edit-box').show();
1 www 1405
 
6613 nelberth 1406
 
1 www 1407
                }
1408
                if(response['data']['type'] == 'quiz') {
1409
                    $('#form-slide-quizz-edit').attr('action',url);
1410
                    $('#form-slide-quizz-edit #name').val(response['data']['name']);
1411
                    $('#form-slide-quizz-edit #order').val(response['data']['order']);
1412
                    $('#form-slide-quizz-edit #quiz_id').val(response['data']['quiz_id']);
16906 efrain 1413
                    $('#form-slide-quizz-edit #background').fileinput('reset');
1414
                    $('#form-slide-quizz-edit #background').val('');
1 www 1415
                    validatorQuizzEdit.resetForm();
1416
 
16906 efrain 1417
                    $('#row-quizz-add-box').show();
1 www 1418
 
1419
                }
1420
 
1421
            } else {
1422
                validatorTextEdit.resetForm();
1423
                if(jQuery.type(response['data']) == 'string') {
1424
                    $.fn.showError(response['data']);
1425
                } else  {
1426
                    $.each(response['data'], function( fieldname, errors ) {
1427
                        $.fn.showFormErrorValidator('#form-slide-image-edit #' + fieldname, errors);
1428
                    });
1429
                }
1430
            }
1431
        }).fail(function( jqXHR, textStatus, errorThrown) {
1432
            $.fn.showError(textStatus);
1433
        }).always(function() {
1434
            NProgress.done();
1435
        });
1436
    });
16905 efrain 1437
 
16906 efrain 1438
    $(".btn-cancel").on("click", function(e){
1 www 1439
        e.preventDefault();
1440
 
16905 efrain 1441
 
16906 efrain 1442
    	$('#row-text-add-box').hide();
1443
    	$('#row-text-edit-box').hide();
1444
    	$('#row-image-add-box').hide();
1445
    	$('#row-image-edit-box').hide();
1446
    	$('#row-video-add-box').hide();
1447
    	$('#row-video-edit-box').hide();
1448
    	$('#row-document-add-box').hide();
1449
    	$('#row-document-edit-box').hide();
1450
    	$('#row-audio-add-box').hide();
1451
    	$('#row-audio-edit-box').hide();
1452
    	$('#row-quizz-add-box').hide();
1453
        $('#row-quizz-edit-box').hide();
1 www 1454
 
16906 efrain 1455
        $('#modal-play-video-box').modal('hide');
1456
        $('#modal-play-audio-box').modal('hide');
16910 efrain 1457
 
16905 efrain 1458
 
1 www 1459
         document.getElementById('microlearning-play-video').pause();
1460
         document.getElementById('microlearning-play-audio').pause();
16906 efrain 1461
 
1462
        $('#row-listing').show();
1 www 1463
 
1464
        return false;
1465
    });
1466
 
16910 efrain 1467
    $('#btn-add-quizz').click(function(e) {
1 www 1468
        e.preventDefault();
16906 efrain 1469
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1470
 
1471
 
1472
        $('#form-slide-quizz-add #name').val('');
1473
        $('#form-slide-quizz-add #order').val('1');
1474
        $('#form-slide-quizz-add #quiz_id').val('');
16905 efrain 1475
        $('#form-slide-quizz-add #file').fileinput('reset');
1476
        $('#form-slide-quizz-add #file').val('');
1 www 1477
        CKEDITOR.instances.description_add.setData('');
1478
        validatorQuizzAdd.resetForm();
1479
 
1480
 
16905 efrain 1481
        $('#row-listing').hide();
16906 efrain 1482
    	$('#row-quizz-add-box').show();
1483
 
1 www 1484
 
1485
        return false;
1486
    });
1487
 
16910 efrain 1488
    $('#btn-add-text').click(function(e) {
1 www 1489
        e.preventDefault();
1490
 
16906 efrain 1491
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1492
 
1493
        $('#form-slide-text-add #name').val('');
1494
        $('#form-slide-text-add #order').val('1');
16905 efrain 1495
        $('#form-slide-text-add #file').fileinput('reset');
1496
        $('#form-slide-text-add #file').val('');
1497
 
1 www 1498
        CKEDITOR.instances.description_add.setData('');
1499
        validatorTextAdd.resetForm();
1500
 
16905 efrain 1501
        $('#row-listing').hide();
16906 efrain 1502
    	$('#row-text-add-box').show();
1503
 
1 www 1504
    });
1505
 
1506
 
16910 efrain 1507
    $('#btn-add-image').click(function(e) {
1 www 1508
        e.preventDefault();
1509
 
16906 efrain 1510
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1511
        $('#form-slide-image-add #name').val('');
1512
        $('#form-slide-image-add #order').val('1');
16905 efrain 1513
        $('#form-slide-image-add #file').fileinput('reset');
1514
        $('#form-slide-image-add #file').val('');
6112 nelberth 1515
 
1 www 1516
        validatorImageAdd.resetForm();
1517
 
16905 efrain 1518
        $('#row-listing').hide();
16906 efrain 1519
    	$('#row-image-add-box').show();
1520
 
6122 nelberth 1521
 
1 www 1522
        return false;
1523
    });
1524
 
16910 efrain 1525
    $('#btn-add-video').click(function(e) {
1 www 1526
        e.preventDefault();
1527
 
16906 efrain 1528
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1529
        $('#form-slide-video-add #name').val('');
1530
        $('#form-slide-video-add #order').val('1');
1531
        $('#form-slide-video-add #file').fileinput('reset');
1532
        $('#form-slide-video-add #file').val('');
16905 efrain 1533
        $('#form-slide-video-add #background').fileinput('reset');
1534
        $('#form-slide-video-add #backgroud').val('');
1 www 1535
        validatorVideoAdd.resetForm();
1536
 
6616 nelberth 1537
 
16905 efrain 1538
        $('#row-listing').hide();
16906 efrain 1539
    	$('#row-video-add-box').show();
1540
 
1 www 1541
 
1542
        return false;
1543
    });
1544
 
16910 efrain 1545
    $('#btn-add-document').click(function(e) {
1 www 1546
        e.preventDefault();
1547
 
1548
 
16906 efrain 1549
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1550
        $('#form-slide-document-add #name').val('');
1551
        $('#form-slide-document-add #order').val('1');
1552
        $('#form-slide-document-add #file').fileinput('reset');
1553
        $('#form-slide-document-add #file').val('');
16905 efrain 1554
        $('#form-slide-document-add #background').fileinput('reset');
1555
        $('#form-slide-document-add #background').val('');
1 www 1556
        validatorDocumentAdd.resetForm();
1557
 
16905 efrain 1558
        $('#row-listing').hide();
16906 efrain 1559
    	$('#row-document-add-box').show();
1560
 
1 www 1561
 
1562
        return false;
1563
    });
1564
 
16910 efrain 1565
    $('#btn-add-audio').click(function(e) {
1 www 1566
        e.preventDefault();
1567
 
16906 efrain 1568
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1569
        $('#form-slide-audio-add #name').val('');
1570
        $('#form-slide-audio-add #order').val('1');
1571
        $('#form-slide-audio-add #file').fileinput('reset');
1572
        $('#form-slide-audio-add #file').val('');
16905 efrain 1573
        $('#form-slide-audio-add #background').fileinput('reset');
1574
        $('#form-slide-audio-add #background').val('');
1 www 1575
        validatorAudioAdd.resetForm();
1576
 
16905 efrain 1577
        $('#row-listing').hide();
16906 efrain 1578
    	$('#row-audio-add-box').show();
1579
 
1 www 1580
 
1581
        return false;
1582
    });
1583
 
16905 efrain 1584
 
1 www 1585
 
16906 efrain 1586
    $('#modal-play-video-box, #modal-play-audio-box').on("hide.bs.modal", function() {
1 www 1587
 
1588
 
1589
        document.getElementById('microlearning-play-video').pause();
1590
        document.getElementById('microlearning-play-audio').pause();
1591
    })
1592
 
1593
 
1594
    $('#form-slide-text-add #order').inputNumberFormat({decimal: 0});
16906 efrain 1595
    $('#form-slide-text-edit #order').inputNumberFormat({decimal: 0});
1 www 1596
 
16906 efrain 1597
    $('#form-slide-text-add #background').fileinput({
1598
        theme: 'fa',
1599
        language: 'es',
1600
        showUpload: false,
1601
        dropZoneEnabled: false,
1602
        maxFileCount: 1,
16928 efrain 1603
        msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1604
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1605
    });
1 www 1606
 
1607
 
16906 efrain 1608
    $('#form-slide-text-edit #background').fileinput({
1609
        theme: 'fa',
1610
        language: 'es',
1611
        showUpload: false,
1612
        dropZoneEnabled: false,
1613
        maxFileCount: 1,
16928 efrain 1614
       msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1615
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1616
    });
1 www 1617
 
6591 nelberth 1618
 
16906 efrain 1619
 
1 www 1620
    $('#form-slide-image-add #order').inputNumberFormat({decimal: 0});
16906 efrain 1621
    $('#form-slide-image-edit #order').inputNumberFormat({decimal: 0});
1 www 1622
 
16906 efrain 1623
    $('#form-slide-image-add #file').fileinput({
1624
        theme: 'fa',
1625
        language: 'es',
1626
        showUpload: false,
1627
        dropZoneEnabled: false,
1628
        maxFileCount: 1,
16928 efrain 1629
        msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1630
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1631
    });
1 www 1632
 
1633
 
16906 efrain 1634
    $('#form-slide-image-edit #file').fileinput({
1635
        theme: 'fa',
1636
        language: 'es',
1637
        showUpload: false,
1638
        dropZoneEnabled: false,
1639
        maxFileCount: 1,
16928 efrain 1640
        msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1641
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1642
    });
1 www 1643
 
1644
    $('#form-slide-video-add #order').inputNumberFormat({decimal: 0});
16906 efrain 1645
    $('#form-slide-video-edit #order').inputNumberFormat({decimal: 0});
1 www 1646
 
1647
    $('#form-slide-video-add #file').fileinput({
12077 nelberth 1648
        theme: 'fa',
1 www 1649
        language: 'es',
1650
        showUpload: false,
1651
        dropZoneEnabled: false,
1652
        maxFileCount: 1,
1653
        allowedFileExtensions: ['mp4', 'mpeg','webm'],
1654
        msgPlaceholder: 'Video de extensión mp4, mpeg, webm',
1655
    });
1656
 
1657
 
1658
    $('#form-slide-video-edit #file').fileinput({
12077 nelberth 1659
        theme: 'fa',
1 www 1660
        language: 'es',
1661
        showUpload: false,
1662
        dropZoneEnabled: false,
1663
        maxFileCount: 1,
1664
        allowedFileExtensions: ['mp4', 'mpeg','webm'],
1665
        msgPlaceholder: 'Video de extensión mp4, mpeg, webm',
1666
    });
1667
 
16906 efrain 1668
    $('#form-slide-video-add #background').fileinput({
1669
        theme: 'fa',
1670
        language: 'es',
1671
        showUpload: false,
1672
        dropZoneEnabled: false,
1673
        maxFileCount: 1,
16928 efrain 1674
        msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1675
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1676
    });
1 www 1677
 
6591 nelberth 1678
 
16906 efrain 1679
    $('#form-slide-video-edit #background').fileinput({
1680
        theme: 'fa',
1681
        language: 'es',
1682
        showUpload: false,
1683
        dropZoneEnabled: false,
1684
        maxFileCount: 1,
16928 efrain 1685
        msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1686
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1687
    });
1688
 
1689
 
1 www 1690
 
1691
 
1692
    $('#form-slide-document-add #order').inputNumberFormat({decimal: 0});
1693
 
1694
    $('#form-slide-document-add #file').fileinput({
12077 nelberth 1695
        theme: 'fa',
1 www 1696
        language: 'es',
1697
        showUpload: false,
1698
        dropZoneEnabled: false,
1699
        maxFileCount: 1,
1700
        allowedFileExtensions: ['pdf'],
1701
        msgPlaceholder: 'Documentos de extensión pdf',
1702
    });
1703
 
1704
 
1705
 
6591 nelberth 1706
 
1 www 1707
    $('#form-slide-document-edit #order').inputNumberFormat({decimal: 0});
1708
 
1709
    $('#form-slide-document-edit #file').fileinput({
12077 nelberth 1710
        theme: 'fa',
1 www 1711
        language: 'es',
1712
        showUpload: false,
1713
        dropZoneEnabled: false,
1714
        maxFileCount: 1,
1715
        allowedFileExtensions: ['pdf'],
1716
        msgPlaceholder: 'Documentos de extensión pdf',
1717
    });
1718
 
16906 efrain 1719
    $('#form-slide-document-add #background').fileinput({
1720
        theme: 'fa',
1721
        language: 'es',
1722
        showUpload: false,
1723
        dropZoneEnabled: false,
1724
        maxFileCount: 1,
16928 efrain 1725
       msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1726
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1727
    });
1 www 1728
 
1729
 
16906 efrain 1730
    $('#form-slide-document-edit #background').fileinput({
1731
        theme: 'fa',
1732
        language: 'es',
1733
        showUpload: false,
1734
        dropZoneEnabled: false,
1735
        maxFileCount: 1,
16928 efrain 1736
        msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1737
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1738
    });
6591 nelberth 1739
 
16906 efrain 1740
 
1 www 1741
    $('#form-slide-audio-add #order').inputNumberFormat({decimal: 0});
1742
 
1743
    $('#form-slide-audio-add #file').fileinput({
12077 nelberth 1744
        theme: 'fa',
1 www 1745
        language: 'es',
1746
        showUpload: false,
1747
        dropZoneEnabled: false,
1748
        maxFileCount: 1,
1749
        allowedFileExtensions: ['wav', 'mp3'],
1750
        msgPlaceholder: 'Audios de extensión wav y mp3',
1751
    });
1752
 
1753
 
1754
 
6591 nelberth 1755
 
1 www 1756
    $('#form-slide-audio-edit #order').inputNumberFormat({decimal: 0});
1757
 
1758
    $('#form-slide-audio-edit #file').fileinput({
12077 nelberth 1759
        theme: 'fa',
1 www 1760
        language: 'es',
1761
        showUpload: false,
1762
        dropZoneEnabled: false,
1763
        maxFileCount: 1,
1764
        allowedFileExtensions: ['wav', 'mp3'],
1765
        msgPlaceholder: 'Audios de extensión wav y mp3',
1766
    });
1767
 
16906 efrain 1768
    $('#form-slide-audio-add #background').fileinput({
1769
        theme: 'fa',
1770
        language: 'es',
1771
        showUpload: false,
1772
        dropZoneEnabled: false,
1773
        maxFileCount: 1,
16928 efrain 1774
        msgPlaceholder: 'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1775
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1776
    });
1 www 1777
 
1778
 
16906 efrain 1779
    $('#form-slide-audio-edit #background').fileinput({
1780
        theme: 'fa',
1781
        language: 'es',
1782
        showUpload: false,
1783
        dropZoneEnabled: false,
1784
        maxFileCount: 1,
16928 efrain 1785
       msgPlaceholder: 'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1786
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1787
    });
6591 nelberth 1788
 
16906 efrain 1789
 
1790
 
1 www 1791
    $('#form-slide-quizz-add #order').inputNumberFormat({decimal: 0});
1792
 
1793
 
1794
 
6591 nelberth 1795
 
1 www 1796
    $('#form-slide-quizz-edit #order').inputNumberFormat({decimal: 0});
1797
 
6591 nelberth 1798
 
1 www 1799
 
16906 efrain 1800
    $('#form-slide-quizz-add #background').fileinput({
1801
        theme: 'fa',
1802
        language: 'es',
1803
        showUpload: false,
1804
        dropZoneEnabled: false,
1805
        maxFileCount: 1,
16928 efrain 1806
        msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1807
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1808
    });
1 www 1809
 
16906 efrain 1810
 
1811
    $('#form-slide-quizz-edit #background').fileinput({
1812
        theme: 'fa',
1813
        language: 'es',
1814
        showUpload: false,
1815
        dropZoneEnabled: false,
1816
        maxFileCount: 1,
16928 efrain 1817
        msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16906 efrain 1818
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1819
    });
1 www 1820
 
1821
 
1822
 
1823
 
1824
 
8290 stevensc 1825
    CKEDITOR.replace('description_add', {
1826
        toolbar: [
1827
                    { name: 'editing', items: ['Scayt'] },
1828
                    { name: 'links', items: ['Link', 'Unlink'] },
1829
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
1830
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
1831
                    '/',
1832
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
1833
                    { name: 'styles', items: ['Styles', 'Format'] },
1834
                    { name: 'tools', items: ['Maximize'] }
1835
                ],
1836
                removePlugins: 'elementspath,Anchor',
1837
                heigth: 100
1838
    });
1839
    CKEDITOR.replace('description_edit',{
1840
        toolbar: [
1841
                    { name: 'editing', items: ['Scayt'] },
1842
                    { name: 'links', items: ['Link', 'Unlink'] },
1843
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
1844
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
1845
                    '/',
1846
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
1847
                    { name: 'styles', items: ['Styles', 'Format'] },
1848
                    { name: 'tools', items: ['Maximize'] }
1849
                ],
1850
                removePlugins: 'elementspath,Anchor',
1851
                heigth: 100
1852
    });
1 www 1853
 
1854
 
1855
   $('body').on('click', '.btn-view-image', function(e) {
1856
        e.preventDefault();
1857
 
16906 efrain 1858
        $('#modal-view-image-box').modal('show');
1 www 1859
 
1860
        $('#image-view').attr('src', $(this).data('href'));
1861
 
1862
        return false;
1863
    });
1864
 
1865
 
1866
    $('body').on('click', '.btn-play-video', function(e) {
1867
        e.preventDefault();
1868
 
1869
        $('#microlearning-play-video').attr('src', $(this).data('href'));
16906 efrain 1870
        $('#modal-play-video-box').modal('show');
1 www 1871
 
1872
        return false;
1873
    });
1874
 
1875
    $('body').on('click', '.btn-play-audio', function(e) {
1876
        e.preventDefault();
1877
 
1878
 
1879
        $('#microlearning-play-audio').attr('src', $(this).data('href'));
16906 efrain 1880
        $('#modal-play-audio-box').modal('show');
1 www 1881
 
1882
        return false;
1883
    });
1884
 
1885
    $('body').on('click', '.btn-view-document', function(e) {
1886
        e.preventDefault();
1887
 
1888
 
1889
        $('#document-view').attr('src', $(this).data('href'));
16906 efrain 1890
        $('#modal-view-document-box').modal('show');
1 www 1891
 
1892
        return false;
1893
    });
1894
 
1895
    $('body').on('click', '.btn-view-text', function(e) {
1896
        e.preventDefault();
1897
 
1898
        var url = $(this).data('href');
1899
        $.ajax({
1900
            'dataType'  : 'json',
1901
            'accept'    : 'application/json',
1902
            'method'    : 'get',
1903
            'url'       :  url,
1904
        }).done(function(response) {
1905
            if(response['success']) {
1906
                $('#document-text').html( response['data']  );
1907
            }
1908
 
1909
        }).fail(function( jqXHR, textStatus, errorThrown) {
1910
            $.fn.showError(textStatus);
1911
        }).always(function() {
1912
            NProgress.done();
1913
        });
1914
 
1915
 
16906 efrain 1916
        $('#modal-view-text-box').modal('show');
1 www 1917
 
1918
        return false;
1919
    });
1920
 
1921
 
1922
 
1923
    $('#form-filter #topic_uuid').change(function(e) {
1924
        e.preventDefault();
1925
 
1926
        $('#form-filter #capsule_uuid').empty();
1927
        gridTable.api().ajax.reload(null, false);
1928
    })
1929
 
1930
 
1931
    $('#form-filter #capsule_uuid').change(function(e) {
1932
        e.preventDefault();
1933
 
1934
        gridTable.api().ajax.reload(null, false);
1935
    })
1936
 
1937
    $('button.btn-add').click(function(e) {
1938
        e.preventDefault()
1939
 
16906 efrain 1940
        $('#modal-add-capsule-type-box').modal('show');
1 www 1941
 
1942
    } );
1943
 
16822 efrain 1944
    $('body').on('click', 'button.btn-delete', function(e) {
1945
        e.preventDefault();
1946
        var action = $(this).data('href');
1 www 1947
 
1948
 
16822 efrain 1949
          swal.fire({
1950
            title: 'LABEL_ARE_YOU_SURE',
1951
            icon: 'question',
1952
            cancelButtonText: 'LABEL_NO',
1953
            showCancelButton: true,
1954
            confirmButtonText: 'LABEL_YES'
1955
          }).then((result) => {
1956
            if (result.isConfirmed) {
1957
 
1958
                    NProgress.start();
1959
                    $.ajax({
1960
                        'dataType'  : 'json',
1961
                        'accept'    : 'application/json',
1962
                        'method'    : 'post',
1963
                        'url'       :  action,
1964
                    }).done(function(response) {
1965
                        if(response['success']) {
1966
                            $.fn.showSuccess(response['data']);
1967
                            gridTable.api().ajax.reload(null, false);
1968
                        } else {
1969
                            $.fn.showError(response['data']);
1970
                        }
1971
                    }).fail(function( jqXHR, textStatus, errorThrown) {
1972
                        $.fn.showError(textStatus);
1973
                    }).always(function() {
1974
                        NProgress.done();
1975
                    });
1976
            }
1977
       });
1978
    });
1979
 
1980
 
1 www 1981
    $('body').on('click', 'button.btn-refresh', function(e) {
1982
        e.preventDefault();
1983
        gridTable.api().ajax.reload(null, false);
1984
    });
1985
 
6113 nelberth 1986
 
1 www 1987
});
1988
JS;
1989
$this->inlineScript()->captureEnd();
1990
?>
1991
 
16905 efrain 1992
<div class="container">
1993
	<div class="card" id="row-listing">
1994
	 	<div class="card-header">
1995
	 		<h6 class="card-title">LABEL_SLIDES</h6>
1996
	 	</div>
1997
	 	<div class="card-body">
1 www 1998
 
16905 efrain 1999
	 			<?php
2000
                $form = $this->form;
2001
                $form->setAttributes([
2002
                    'name'    => 'form-filter',
2003
                    'id'      => 'form-filter',
2004
                ]);
1 www 2005
 
16905 efrain 2006
                $form->prepare();
2007
                echo $this->form()->openTag($form);
2008
                ?>
2009
             	<div class="row">
2010
                	<div class="col-md-6 mt-3">
2011
               			<?php
2012
                        $element = $form->get('topic_uuid');
2013
                        $element->setOptions(['label' => 'LABEL_TOPIC']);
2014
 
2015
                        $element->setAttributes(['class' => 'form-control']);
2016
                        echo $this->formLabel($element);
2017
                        echo $this->formSelect($element);
1 www 2018
                        ?>
16905 efrain 2019
                   	</div>
2020
 
2021
         	    	<div class="col-md-6 mt-3">
2022
        				<?php
2023
                        $element = $form->get('capsule_uuid');
2024
                        $element->setOptions(['label' => 'LABEL_CAPSULE']);
2025
                        $element->setAttributes(['class' => 'form-control']);
2026
                        echo $this->formLabel($element);
2027
                        echo $this->formSelect($element);
2028
                        ?>
2029
                	</div>
2030
              	</div>
2031
 
2032
				<?php echo $this->form()->closeTag($form); ?>
2033
 
2034
 
2035
				<div class="row">
2036
    	 	 		<div class="col-12 mt-3">
2037
 
2038
    	 	 			<table id="gridTable" class="table   table-bordered">
1 www 2039
                      		<thead>
2040
        						<tr>
2041
                                	<th>LABEL_NAME</th>
2042
                                  	<th>LABEL_DETAILS</th>
2043
                                  	<th>LABEL_MEDIA</th>
2044
                                  	<th>LABEL_ACTIONS</th>
2045
                                </tr>
2046
                       		</thead>
2047
                         	<tbody>
2048
                         	</tbody>
2049
                    	</table>
16905 efrain 2050
 
2051
  					</div>
2052
				</div>
2053
		</div>
1 www 2054
 
16905 efrain 2055
	 	<div class="card-footer text-right">
2056
	 	     <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
2057
			<?php if($allowAdd) : ?>
16910 efrain 2058
			<div class="btn-group dropup">
2059
            	<button type="button" class="btn btn-secondary dropdown-toggle" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
2060
            		<i class="fa fa-plus"></i> LABEL_ADD
2061
            	</button>
2062
            	<div class="dropdown-menu">
2063
 
2064
            		<a class="dropdown-item" href="#" id="btn-add-image"><i class="fa fa-image mr-2" aria-hidden="true"></i> LABEL_IMAGE </a>
2065
                   	<a class="dropdown-item" href="#" id="btn-add-text"><i class="fa fa-file mr-2" aria-hidden="true"></i> LABEL_TEXT </a>
2066
                    <a class="dropdown-item" href="#" id="btn-add-video"><i class="fa fa-video mr-2" aria-hidden="true"></i> LABEL_VIDEO </a>
2067
                    <a class="dropdown-item" href="#" id="btn-add-document"><i class="fa fa-file mr-2" aria-hidden="true"></i> LABEL_DOCUMENT </a>
2068
                    <a class="dropdown-item" href="#" id="btn-add-audio"><i class="fa fa-music mr-2" aria-hidden="true"></i> LABEL_AUDIO </a>
2069
                    <a class="dropdown-item" href="#" id="btn-add-quizz"><i class="fa fa-question mr-2" aria-hidden="true"></i> LABEL_QUIZ </a>
2070
 
2071
 
2072
            	</div>
2073
            </div>
2074
 
2075
 
16905 efrain 2076
			<?php endif; ?>
2077
	 	</div>
2078
	</div>
6528 nelberth 2079
 
16905 efrain 2080
 
16906 efrain 2081
	<div class="card" id="row-text-add-box" style="display: none">
16905 efrain 2082
	 	<div class="card-header">
2083
	 		<h6 class="card-title">LABEL_ADD_TEXT_SLIDE</h6>
2084
	 	</div>
2085
	 	<?php
1 www 2086
    	    $form = $this->formTextAdd;
2087
    	    $form->setAttributes([
2088
    	       'method'    => 'post',
2089
    	       'name'      => 'form-slide-text-add',
2090
    	       'id'        => 'form-slide-text-add'
2091
    	    ]);
2092
    	    $form->prepare();
2093
    	    echo $this->form()->openTag($form);
2094
 
2095
    	    $element = $form->get('type');
2096
    	    echo $this->formHidden($element);
2097
 
2098
    	    ?>
16905 efrain 2099
	 	<div class="card-body">
1 www 2100
 
16905 efrain 2101
	 		<div class="row">
2102
	 	         <div class="col-12 mt-3">
1 www 2103
    				<?php
2104
                        $element = $form->get('name');
2105
                        $element->setAttributes(['class' => 'form-control']);
2106
                        $element->setOptions(['label' => 'LABEL_NAME']);
2107
                        echo $this->formLabel($element);
2108
                        echo $this->formText($element);
2109
                    ?>
16905 efrain 2110
	 	         </div>
2111
	 	     </div>
2112
	 		<div class="row">
2113
	 	         <div class="col-12 mt-3">
1 www 2114
                	<?php
2115
                    $element = $form->get('description');
2116
                    $element->setOptions(['label' => 'LABEL_DESCRIPTION']);
6600 nelberth 2117
                    $element->setAttributes(['id' => 'description_add', 'rows' => '2',  'class' => 'form-control']);
1 www 2118
                    echo $this->formLabel($element);
2119
                    echo $this->formTextArea($element);
2120
                    ?>
16905 efrain 2121
	 	         </div>
2122
	 	     </div>
2123
	 		<div class="row">
2124
	 	         <div class="col-12 mt-3">
1 www 2125
    				<?php
2126
                        $element = $form->get('order');
2127
                        $element->setAttributes(['class' => 'form-control']);
2128
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2129
                        echo $this->formLabel($element);
2130
                        echo $this->formText($element);
2131
                    ?>
2132
				</div>
16906 efrain 2133
			</div>
16905 efrain 2134
	 		<div class="row">
2135
	 	         <div class="col-12 mt-3">
6529 nelberth 2136
                <?php
2137
                    $element = $form->get('background');
16905 efrain 2138
                    $element->setAttributes([ 'class' => 'form-control']);
2139
					$element->setOptions(['label' => 'LABEL_IMAGE']);
2140
					$element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2141
					echo $this->formLabel($element);
2142
                    echo $this->formFile($element);
2143
                ?>
2144
	 	         </div>
2145
	 	     </div>
2146
	 	</div>
2147
	 	<div class="card-footer text-right">
2148
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2149
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2150
	 	</div>
2151
	 	<?php echo $this->form()->closeTag($form); ?>
2152
	</div>
2153
 
16906 efrain 2154
	<div class="card" id="row-text-edit-box" style="display: none">
16905 efrain 2155
	 	<div class="card-header">
2156
	 		<h6 class="card-title">LABEL_EDIT_TEXT_SLIDE</h6>
2157
	 	</div>
2158
	 	<?php
1 www 2159
    	    $form = $this->formTextEdit;
2160
    	    $form->setAttributes([
2161
    	       'method'    => 'post',
2162
    	       'name'      => 'form-slide-text-edit',
2163
    	       'id'        => 'form-slide-text-edit'
2164
    	    ]);
2165
    	    $form->prepare();
2166
    	    echo $this->form()->openTag($form);
2167
 
2168
    	    $element = $form->get('type');
2169
    	    echo $this->formHidden($element);
2170
 
6595 nelberth 2171
    	    ?>
16905 efrain 2172
	 	<div class="card-body">
1 www 2173
 
16905 efrain 2174
	 		<div class="row">
2175
	 	         <div class="col-12 mt-3">
1 www 2176
    				<?php
2177
                        $element = $form->get('name');
2178
                        $element->setAttributes(['class' => 'form-control']);
2179
                        $element->setOptions(['label' => 'LABEL_NAME']);
2180
                        echo $this->formLabel($element);
2181
                        echo $this->formText($element);
2182
                    ?>
16905 efrain 2183
	 	         </div>
2184
	 	     </div>
2185
 
2186
	 		<div class="row">
2187
	 	         <div class="col-12 mt-3">
1 www 2188
                	<?php
2189
                    $element = $form->get('description');
2190
                    $element->setOptions(['label' => 'LABEL_DESCRIPTION']);
6600 nelberth 2191
                    $element->setAttributes(['id' => 'description_edit', 'rows' => '2',  'class' => 'form-control']);
1 www 2192
                    echo $this->formLabel($element);
2193
                    echo $this->formTextArea($element);
2194
                    ?>
16905 efrain 2195
	 	         </div>
2196
	 	     </div>
2197
 
2198
	 		<div class="row">
2199
	 	         <div class="col-12 mt-3">
1 www 2200
    				<?php
2201
                        $element = $form->get('order');
2202
                        $element->setAttributes(['class' => 'form-control']);
2203
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2204
                        echo $this->formLabel($element);
2205
                        echo $this->formText($element);
2206
                    ?>
16905 efrain 2207
	 	         </div>
2208
	 	     </div>
2209
 
2210
	 		<div class="row">
2211
	 	         <div class="col-12 mt-3">
6595 nelberth 2212
                <?php
2213
                    $element = $form->get('background');
16905 efrain 2214
                    $element->setAttributes([ 'class' => 'form-control']);
2215
					$element->setOptions(['label' => 'LABEL_IMAGE']);
2216
					$element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2217
					echo $this->formLabel($element);
2218
                    echo $this->formFile($element);
2219
                ?>
2220
	 	         </div>
2221
	 	     </div>
2222
	 	</div>
2223
	 	<div class="card-footer text-right">
2224
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2225
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2226
	 	</div>
2227
	 	<?php echo $this->form()->closeTag($form); ?>
2228
 
2229
	</div>
2230
 
6595 nelberth 2231
 
16905 efrain 2232
 
1 www 2233
 
2234
 
16906 efrain 2235
	<div class="card" id="row-image-add-box" style="display: none">
16905 efrain 2236
	 	<div class="card-header">
2237
	 		<h6 class="card-title">LABEL_ADD_IMAGE_SLIDE</h6>
2238
	 	</div>
2239
		<?php
1 www 2240
    	    $form = $this->formImageAdd;
2241
    	    $form->setAttributes([
2242
    	       'method'    => 'post',
2243
    	        'name'      => 'form-slide-image-add',
2244
    	        'id'        => 'form-slide-image-add'
2245
    	    ]);
2246
    	    $form->prepare();
2247
    	    echo $this->form()->openTag($form);
2248
 
2249
    	    $element = $form->get('type');
2250
    	    echo $this->formHidden($element);
2251
 
2252
    	    ?>
16905 efrain 2253
	 	<div class="card-body">
1 www 2254
 
16905 efrain 2255
	 		<div class="row">
2256
	 	         <div class="col-12 mt-3">
1 www 2257
    				<?php
2258
                        $element = $form->get('name');
2259
                        $element->setAttributes(['class' => 'form-control']);
2260
                        $element->setOptions(['label' => 'LABEL_NAME']);
2261
                        echo $this->formLabel($element);
2262
                        echo $this->formText($element);
2263
                    ?>
16905 efrain 2264
	 	         </div>
2265
	 	     </div>
2266
	 		<div class="row">
2267
	 	         <div class="col-12 mt-3">
6137 nelberth 2268
 
6134 nelberth 2269
                <?php
2270
                    $element = $form->get('file');
16905 efrain 2271
					$element->setAttributes([ 'class' => 'form-control']);
2272
					$element->setOptions(['label' => 'LABEL_IMAGE']);
2273
					$element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2274
					echo $this->formLabel($element);
2275
                    echo $this->formFile($element);
6134 nelberth 2276
                ?>
16905 efrain 2277
	 	         </div>
2278
	 	     </div>
2279
	 		<div class="row">
2280
	 	         <div class="col-12 mt-3">
1 www 2281
    				<?php
2282
                        $element = $form->get('order');
2283
                        $element->setAttributes(['class' => 'form-control']);
2284
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2285
                        echo $this->formLabel($element);
2286
                        echo $this->formText($element);
2287
                    ?>
16905 efrain 2288
	 	         </div>
2289
	 	     </div>
2290
	 	</div>
2291
	 	<div class="card-footer text-right">
2292
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2293
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2294
	 	</div>
2295
	 	<?php echo $this->form()->closeTag($form); ?>
2296
	</div>
2297
 
2298
 
16906 efrain 2299
	<div class="card" id="row-image-edit-box" style="display: none">
16905 efrain 2300
	 	<div class="card-header">
2301
	 		<h6 class="card-title">LABEL_EDIT_IMAGE_SLIDE</h6>
2302
	 	</div>
2303
	 	 <?php
6505 nelberth 2304
    	    $form = $this->formImageEdit;
2305
    	    $form->setAttributes([
2306
    	       'method'    => 'post',
2307
    	       'name'      => 'form-slide-image-edit',
2308
    	       'id'        => 'form-slide-image-edit'
2309
    	    ]);
2310
    	    $form->prepare();
2311
    	    echo $this->form()->openTag($form);
2312
 
2313
    	    $element = $form->get('type');
2314
    	    echo $this->formHidden($element);
2315
 
2316
    	    ?>
16905 efrain 2317
	 	<div class="card-body">
6505 nelberth 2318
 
16905 efrain 2319
	 		<div class="row">
2320
	 	         <div class="col-12 mt-3">
6505 nelberth 2321
    				<?php
2322
                        $element = $form->get('name');
2323
                        $element->setAttributes(['class' => 'form-control']);
2324
                        $element->setOptions(['label' => 'LABEL_NAME']);
2325
                        echo $this->formLabel($element);
2326
                        echo $this->formText($element);
2327
                    ?>
16905 efrain 2328
	 	         </div>
2329
	 	     </div>
6505 nelberth 2330
 
16905 efrain 2331
	 		<div class="row">
2332
	 	         <div class="col-12 mt-3">
6505 nelberth 2333
                <?php
2334
                    $element = $form->get('file');
16905 efrain 2335
					$element->setAttributes([ 'class' => 'form-control']);
2336
					$element->setOptions(['label' => 'LABEL_IMAGE']);
2337
					$element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2338
					echo $this->formLabel($element);
2339
                    echo $this->formFile($element);
6505 nelberth 2340
                ?>
16905 efrain 2341
	 	         </div>
2342
	 	     </div>
2343
	 		<div class="row">
2344
	 	         <div class="col-12 mt-3">
6505 nelberth 2345
    				<?php
2346
                        $element = $form->get('order');
2347
                        $element->setAttributes(['class' => 'form-control']);
2348
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2349
                        echo $this->formLabel($element);
2350
                        echo $this->formText($element);
2351
                    ?>
2352
				</div>
16905 efrain 2353
	 	     </div>
2354
	 	</div>
2355
	 	<div class="card-footer text-right">
2356
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2357
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2358
	 	</div>
2359
	 	<?php echo $this->form()->closeTag($form); ?>
2360
	</div>
2361
 
16906 efrain 2362
	<div class="card" id="row-video-add-box" style="display: none">
16905 efrain 2363
	 	<div class="card-header">
2364
	 		<h6 class="card-title">LABEL_ADD_VIDEO_SLIDE</h6>
2365
	 	</div>
2366
	 	<?php
1 www 2367
    	    $form = $this->formVideoAdd;
2368
    	    $form->setAttributes([
2369
    	       'method'    => 'post',
2370
    	        'name'      => 'form-slide-video-add',
2371
    	        'id'        => 'form-slide-video-add'
2372
    	    ]);
2373
    	    $form->prepare();
2374
    	    echo $this->form()->openTag($form);
2375
 
2376
    	    $element = $form->get('type');
2377
    	    echo $this->formHidden($element);
2378
 
2379
    	    ?>
16905 efrain 2380
	 	<div class="card-body">
2381
	 		<div class="row">
2382
	 	         <div class="col-12 mt-3">
2383
	 	         </div>
2384
	 	     </div>
2385
 
2386
	 		<div class="row">
2387
	 	         <div class="col-12 mt-3">
1 www 2388
    				<?php
2389
                        $element = $form->get('name');
2390
                        $element->setAttributes(['class' => 'form-control']);
2391
                        $element->setOptions(['label' => 'LABEL_NAME']);
2392
                        echo $this->formLabel($element);
2393
                        echo $this->formText($element);
2394
                    ?>
16905 efrain 2395
	 	         </div>
2396
	 	     </div>
2397
	 		<div class="row">
2398
	 	         <div class="col-12 mt-3">
1 www 2399
    				<?php
2400
                        $element = $form->get('order');
2401
                        $element->setAttributes(['class' => 'form-control']);
2402
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2403
                        echo $this->formLabel($element);
2404
                        echo $this->formText($element);
2405
                    ?>
16905 efrain 2406
	 	         </div>
2407
	 	     </div>
2408
	 		<div class="row">
2409
	 	         <div class="col-12 mt-3">
1 www 2410
 
2411
                 		<?php
2412
                        $element = $form->get('file');
2413
                        $element->setAttributes(['class' => 'form-control']);
2414
                        $element->setOptions(['label' => 'LABEL_VIDEO']);
2415
                        $element->setAttributes(['accept' => 'video/webm,video/mpeg,video/mp4']);
2416
                        echo $this->formLabel($element);
16905 efrain 2417
                        echo $this->formFile($element);
1 www 2418
                        ?>
16905 efrain 2419
	 	         </div>
2420
	 	     </div>
2421
	 		<div class="row">
2422
	 	         <div class="col-12 mt-3">
2423
                 		<?php
2424
                        $element = $form->get('background');
2425
                        $element->setAttributes(['class' => 'form-control']);
2426
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2427
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2428
                        echo $this->formLabel($element);
2429
                        echo $this->formFile($element);
2430
                        ?>
2431
 
2432
	 	         </div>
2433
	 	     </div>
2434
	 	</div>
2435
	 	<div class="card-footer text-right">
2436
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2437
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2438
	 	</div>
2439
	 	<?php echo $this->form()->closeTag($form); ?>
2440
	</div>
2441
 
2442
 
16906 efrain 2443
	<div class="card" id="row-video-edit-box" style="display: none">
16905 efrain 2444
	 	<div class="card-header">
2445
	 		<h6 class="card-title">>LABEL_EDIT_VIDEO_SLIDE</h6>
2446
	 	</div>
2447
	 	<?php
2448
    	 	$form = $this->formVideoEdit;
2449
    	 	$form->setAttributes([
2450
    	 	    'method'    => 'post',
2451
    	 	    'name'      => 'form-slide-video-edit',
2452
    	 	    'id'        => 'form-slide-video-edit'
2453
    	 	]);
1 www 2454
    	    $form->prepare();
2455
    	    echo $this->form()->openTag($form);
2456
 
2457
    	    $element = $form->get('type');
2458
    	    echo $this->formHidden($element);
2459
 
2460
    	    ?>
16905 efrain 2461
	 	<div class="card-body">
2462
	 		<div class="row">
2463
	 	         <div class="col-12 mt-3">
2464
	 	         </div>
2465
	 	     </div>
2466
 
2467
	 		<div class="row">
2468
	 	         <div class="col-12 mt-3">
1 www 2469
    				<?php
2470
                        $element = $form->get('name');
2471
                        $element->setAttributes(['class' => 'form-control']);
2472
                        $element->setOptions(['label' => 'LABEL_NAME']);
2473
                        echo $this->formLabel($element);
2474
                        echo $this->formText($element);
2475
                    ?>
16905 efrain 2476
	 	         </div>
2477
	 	     </div>
2478
	 		<div class="row">
2479
	 	         <div class="col-12 mt-3">
1 www 2480
    				<?php
2481
                        $element = $form->get('order');
2482
                        $element->setAttributes(['class' => 'form-control']);
2483
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2484
                        echo $this->formLabel($element);
2485
                        echo $this->formText($element);
2486
                    ?>
16905 efrain 2487
	 	         </div>
2488
	 	     </div>
2489
	 		<div class="row">
2490
	 	         <div class="col-12 mt-3">
2491
 
1 www 2492
                 		<?php
2493
                        $element = $form->get('file');
2494
                        $element->setAttributes(['class' => 'form-control']);
2495
                        $element->setOptions(['label' => 'LABEL_VIDEO']);
2496
                        $element->setAttributes(['accept' => 'video/webm,video/mpeg,video/mp4']);
2497
                        echo $this->formLabel($element);
16905 efrain 2498
                        echo $this->formFile($element);
1 www 2499
                        ?>
16905 efrain 2500
	 	         </div>
2501
	 	     </div>
2502
	 		<div class="row">
2503
	 	         <div class="col-12 mt-3">
2504
                 		<?php
2505
                        $element = $form->get('background');
2506
                        $element->setAttributes(['class' => 'form-control']);
2507
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2508
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2509
                        echo $this->formLabel($element);
2510
                        echo $this->formFile($element);
2511
                        ?>
2512
 
2513
	 	         </div>
2514
	 	     </div>
2515
	 	</div>
2516
	 	<div class="card-footer text-right">
2517
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2518
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2519
	 	</div>
2520
	 	<?php echo $this->form()->closeTag($form); ?>
2521
	</div>
2522
 
2523
 
16906 efrain 2524
	<div class="card" id="row-document-add-box" style="display: none">
16905 efrain 2525
	 	<div class="card-header">
2526
	 		<h6 class="card-title">LABEL_ADD_DOCUMENT_SLIDE</h6>
2527
	 	</div>
2528
	 	<?php
1 www 2529
    	    $form = $this->formDocumentAdd;
2530
    	    $form->setAttributes([
2531
    	       'method'    => 'post',
2532
    	        'name'      => 'form-slide-document-add',
2533
    	        'id'        => 'form-slide-document-add'
2534
    	    ]);
2535
    	    $form->prepare();
2536
    	    echo $this->form()->openTag($form);
2537
 
2538
    	    $element = $form->get('type');
2539
    	    echo $this->formHidden($element);
2540
 
2541
    	    ?>
16905 efrain 2542
	 	<div class="card-body">
1 www 2543
 
16905 efrain 2544
 
2545
	 		<div class="row">
2546
	 	         <div class="col-12 mt-3">
1 www 2547
    				<?php
2548
                        $element = $form->get('name');
2549
                        $element->setAttributes(['class' => 'form-control']);
2550
                        $element->setOptions(['label' => 'LABEL_NAME']);
2551
                        echo $this->formLabel($element);
2552
                        echo $this->formText($element);
2553
                    ?>
16905 efrain 2554
	 	         </div>
2555
	 	     </div>
2556
	 		<div class="row">
2557
	 	         <div class="col-12 mt-3">
1 www 2558
    				<?php
2559
                        $element = $form->get('order');
2560
                        $element->setAttributes(['class' => 'form-control']);
2561
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2562
                        echo $this->formLabel($element);
2563
                        echo $this->formText($element);
2564
                    ?>
16905 efrain 2565
	 	         </div>
2566
	 	     </div>
2567
	 		<div class="row">
2568
	 	         <div class="col-12 mt-3">
1 www 2569
 
2570
                 		<?php
2571
                        $element = $form->get('file');
2572
                        $element->setAttributes(['class' => 'form-control']);
2573
                        $element->setOptions(['label' => 'LABEL_DOCUMENT']);
2574
                        $element->setAttributes(['accept' => 'application/pdf']);
2575
                        echo $this->formLabel($element);
16905 efrain 2576
                        echo $this->formFile($element);
1 www 2577
                        ?>
16905 efrain 2578
 
1 www 2579
 
16905 efrain 2580
	 	         </div>
2581
	 	     </div>
2582
	 		<div class="row">
2583
	 	         <div class="col-12 mt-3">
2584
                 		<?php
2585
                        $element = $form->get('background');
2586
                        $element->setAttributes(['class' => 'form-control']);
2587
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2588
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2589
                        echo $this->formLabel($element);
2590
                        echo $this->formFile($element);
2591
                        ?>
6656 nelberth 2592
 
16905 efrain 2593
	 	         </div>
2594
	 	     </div>
2595
	 	</div>
2596
	 	<div class="card-footer text-right">
2597
	 	      <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2598
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2599
	 	</div>
2600
	 	<?php echo $this->form()->closeTag($form); ?>
2601
	</div>
2602
 
2603
 
16906 efrain 2604
	<div class="card" id="row-document-edit-box" style="display: none">
16905 efrain 2605
	 	<div class="card-header">
2606
	 		<h6 class="card-title">LABEL_EDIT_DOCUMENT_SLIDE</h6>
2607
	 	</div>
2608
	 	<?php
2609
    	 	$form = $this->formDocumentEdit;
2610
    	 	$form->setAttributes([
2611
    	 	    'method'    => 'post',
2612
    	 	    'name'      => 'form-slide-document-edit',
2613
    	 	    'id'        => 'form-slide-document-edit'
2614
    	 	]);
1 www 2615
    	    $form->prepare();
2616
    	    echo $this->form()->openTag($form);
2617
 
2618
    	    $element = $form->get('type');
2619
    	    echo $this->formHidden($element);
2620
 
2621
    	    ?>
16905 efrain 2622
	 	<div class="card-body">
1 www 2623
 
16905 efrain 2624
 
2625
	 		<div class="row">
2626
	 	         <div class="col-12 mt-3">
1 www 2627
    				<?php
2628
                        $element = $form->get('name');
2629
                        $element->setAttributes(['class' => 'form-control']);
2630
                        $element->setOptions(['label' => 'LABEL_NAME']);
2631
                        echo $this->formLabel($element);
2632
                        echo $this->formText($element);
2633
                    ?>
16905 efrain 2634
	 	         </div>
2635
	 	     </div>
2636
	 		<div class="row">
2637
	 	         <div class="col-12 mt-3">
1 www 2638
    				<?php
2639
                        $element = $form->get('order');
2640
                        $element->setAttributes(['class' => 'form-control']);
2641
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2642
                        echo $this->formLabel($element);
2643
                        echo $this->formText($element);
2644
                    ?>
16905 efrain 2645
	 	         </div>
2646
	 	     </div>
2647
	 		<div class="row">
2648
	 	         <div class="col-12 mt-3">
1 www 2649
 
2650
                 		<?php
2651
                        $element = $form->get('file');
2652
                        $element->setAttributes(['class' => 'form-control']);
2653
                        $element->setOptions(['label' => 'LABEL_DOCUMENT']);
2654
                        $element->setAttributes(['accept' => 'application/pdf']);
2655
                        echo $this->formLabel($element);
16905 efrain 2656
                        echo $this->formFile($element);
1 www 2657
                        ?>
16905 efrain 2658
 
1 www 2659
 
16905 efrain 2660
	 	         </div>
2661
	 	     </div>
2662
	 		<div class="row">
2663
	 	         <div class="col-12 mt-3">
2664
                 		<?php
2665
                        $element = $form->get('background');
2666
                        $element->setAttributes(['class' => 'form-control']);
2667
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2668
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2669
                        echo $this->formLabel($element);
2670
                        echo $this->formFile($element);
2671
                        ?>
6656 nelberth 2672
 
16905 efrain 2673
	 	         </div>
2674
	 	     </div>
2675
	 	</div>
2676
	 	<div class="card-footer text-right">
2677
	 	      <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2678
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2679
	 	</div>
2680
	 	<?php echo $this->form()->closeTag($form); ?>
2681
	</div>
2682
 
16906 efrain 2683
	<div class="card" id="row-audio-add-box" style="display: none">
16905 efrain 2684
	 	<div class="card-header">
2685
	 		<h6 class="card-title">LABEL_ADD_AUDIO_SLIDE</h6>
2686
	 	</div>
2687
	 	<?php
1 www 2688
    	    $form = $this->formAudioAdd;
2689
    	    $form->setAttributes([
2690
    	       'method'    => 'post',
2691
    	        'name'      => 'form-slide-audio-add',
2692
    	        'id'        => 'form-slide-audio-add'
2693
    	    ]);
2694
    	    $form->prepare();
2695
    	    echo $this->form()->openTag($form);
2696
 
2697
    	    $element = $form->get('type');
2698
    	    echo $this->formHidden($element);
2699
 
2700
    	    ?>
16905 efrain 2701
	 	<div class="card-body">
2702
	 		<div class="row">
2703
	 	         <div class="col-12 mt-3">
2704
	 	         </div>
2705
	 	     </div>
2706
 
2707
	 		<div class="row">
2708
	 	         <div class="col-12 mt-3">
1 www 2709
    				<?php
2710
                        $element = $form->get('name');
2711
                        $element->setAttributes(['class' => 'form-control']);
2712
                        $element->setOptions(['label' => 'LABEL_NAME']);
2713
                        echo $this->formLabel($element);
2714
                        echo $this->formText($element);
2715
                    ?>
16905 efrain 2716
	 	         </div>
2717
	 	     </div>
2718
	 		<div class="row">
2719
	 	         <div class="col-12 mt-3">
1 www 2720
    				<?php
2721
                        $element = $form->get('order');
2722
                        $element->setAttributes(['class' => 'form-control']);
2723
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2724
                        echo $this->formLabel($element);
2725
                        echo $this->formText($element);
2726
                    ?>
16905 efrain 2727
	 	         </div>
2728
	 	     </div>
2729
	 		<div class="row">
2730
	 	         <div class="col-12 mt-3">
1 www 2731
 
2732
                 		<?php
2733
                        $element = $form->get('file');
2734
                        $element->setAttributes(['class' => 'form-control']);
2735
                        $element->setOptions(['label' => 'LABEL_AUDIO']);
2736
                        $element->setAttributes(['accept' => 'audio/x-wav, audio/mpeg']);
2737
                        echo $this->formLabel($element);
16905 efrain 2738
                        echo $this->formFile($element);
2739
 
1 www 2740
                        ?>
16905 efrain 2741
	 	         </div>
2742
	 	     </div>
2743
	 		<div class="row">
2744
	 	         <div class="col-12 mt-3">
2745
                 		<?php
2746
                        $element = $form->get('background');
2747
                        $element->setAttributes(['class' => 'form-control']);
2748
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2749
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2750
                        echo $this->formLabel($element);
2751
                        echo $this->formFile($element);
2752
                        ?>
2753
 
2754
	 	         </div>
2755
	 	     </div>
2756
	 	</div>
2757
	 	<div class="card-footer text-right">
2758
	 	      <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2759
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2760
	 	</div>
2761
	 	<?php echo $this->form()->closeTag($form); ?>
2762
	</div>
2763
 
2764
 
16906 efrain 2765
	<div class="card" id="row-audio-edit-box" style="display: none">
16905 efrain 2766
	 	<div class="card-header">
2767
	 		<h6 class="card-title">LABEL_EDIT_AUDIO_SLIDE</h6>
2768
	 	</div>
2769
	 	<?php
2770
    	 	$form = $this->formAudioEdit;
2771
    	 	$form->setAttributes([
2772
    	 	    'method'    => 'post',
2773
    	 	    'name'      => 'form-slide-audio-edit',
2774
    	 	    'id'        => 'form-slide-audio-edit'
2775
    	 	]);
1 www 2776
    	    $form->prepare();
2777
    	    echo $this->form()->openTag($form);
2778
 
2779
    	    $element = $form->get('type');
2780
    	    echo $this->formHidden($element);
2781
 
2782
    	    ?>
16905 efrain 2783
	 	<div class="card-body">
2784
	 		<div class="row">
2785
	 	         <div class="col-12 mt-3">
2786
	 	         </div>
2787
	 	     </div>
2788
 
2789
	 		<div class="row">
2790
	 	         <div class="col-12 mt-3">
1 www 2791
    				<?php
2792
                        $element = $form->get('name');
2793
                        $element->setAttributes(['class' => 'form-control']);
16905 efrain 2794
                        $element->setOptions(['label' => 'LABEL_NAME']);
1 www 2795
                        echo $this->formLabel($element);
2796
                        echo $this->formText($element);
2797
                    ?>
16905 efrain 2798
	 	         </div>
2799
	 	     </div>
2800
	 		<div class="row">
2801
	 	         <div class="col-12 mt-3">
1 www 2802
    				<?php
2803
                        $element = $form->get('order');
2804
                        $element->setAttributes(['class' => 'form-control']);
2805
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2806
                        echo $this->formLabel($element);
2807
                        echo $this->formText($element);
2808
                    ?>
16905 efrain 2809
	 	         </div>
2810
	 	     </div>
2811
	 		<div class="row">
2812
	 	         <div class="col-12 mt-3">
1 www 2813
 
2814
                 		<?php
2815
                        $element = $form->get('file');
2816
                        $element->setAttributes(['class' => 'form-control']);
2817
                        $element->setOptions(['label' => 'LABEL_AUDIO']);
2818
                        $element->setAttributes(['accept' => 'audio/x-wav, audio/mpeg']);
2819
                        echo $this->formLabel($element);
16905 efrain 2820
                        echo $this->formFile($element);
2821
 
1 www 2822
                        ?>
16905 efrain 2823
	 	         </div>
2824
	 	     </div>
2825
	 		<div class="row">
2826
	 	         <div class="col-12 mt-3">
2827
                 		<?php
2828
                        $element = $form->get('background');
2829
                        $element->setAttributes(['class' => 'form-control']);
2830
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2831
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2832
                        echo $this->formLabel($element);
2833
                        echo $this->formFile($element);
2834
                        ?>
2835
 
2836
	 	         </div>
2837
	 	     </div>
2838
	 	</div>
2839
	 	<div class="card-footer text-right">
2840
	 	      <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2841
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2842
	 	</div>
2843
	 	<?php echo $this->form()->closeTag($form); ?>
2844
	</div>
2845
 
2846
 
16906 efrain 2847
	<div class="card" id="row-quizz-add-box" style="display: none">
16905 efrain 2848
	 	<div class="card-header">
2849
	 		<h6 class="card-title">LABEL_ADD_QUIZ_SLIDE</h6>
2850
	 	</div>
2851
	 	<?php
1 www 2852
    	    $form = $this->formQuizzAdd;
2853
    	    $form->setAttributes([
2854
    	       'method'    => 'post',
2855
    	        'name'      => 'form-slide-quizz-add',
2856
    	        'id'        => 'form-slide-quizz-add'
2857
    	    ]);
2858
    	    $form->prepare();
2859
    	    echo $this->form()->openTag($form);
2860
 
2861
    	    $element = $form->get('type');
2862
    	    echo $this->formHidden($element);
2863
 
2864
    	    ?>
16905 efrain 2865
	 	<div class="card-body">
1 www 2866
 
16905 efrain 2867
	 		<div class="row">
2868
	 	         <div class="col-12 mt-3">
1 www 2869
    				<?php
2870
                        $element = $form->get('name');
2871
                        $element->setAttributes(['class' => 'form-control']);
2872
                        $element->setOptions(['label' => 'LABEL_NAME']);
2873
                        echo $this->formLabel($element);
2874
                        echo $this->formText($element);
2875
                    ?>
16905 efrain 2876
	 	         </div>
2877
	 	     </div>
2878
	 		<div class="row">
2879
	 	         <div class="col-12 mt-3">
1 www 2880
    				<?php
2881
                        $element = $form->get('order');
2882
                        $element->setAttributes(['class' => 'form-control']);
2883
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2884
                        echo $this->formLabel($element);
2885
                        echo $this->formText($element);
2886
                    ?>
16905 efrain 2887
	 	         </div>
2888
	 	     </div>
6657 nelberth 2889
 
16905 efrain 2890
	 		<div class="row">
2891
	 	         <div class="col-12 mt-3">
1 www 2892
    				<?php
2893
                        $element = $form->get('quiz_id');
2894
                        $element->setAttributes(['class' => 'form-control']);
2895
                        $element->setOptions(['label' => 'LABEL_QUIZ']);
2896
                        echo $this->formLabel($element);
2897
                        echo $this->formSelect($element);
2898
                    ?>
16905 efrain 2899
	 	         </div>
2900
	 	     </div>
2901
 
2902
			<div class="row">
2903
	 	         <div class="col-12 mt-3">
2904
                 		<?php
2905
                        $element = $form->get('background');
2906
                        $element->setAttributes(['class' => 'form-control']);
2907
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2908
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2909
                        echo $this->formLabel($element);
2910
                        echo $this->formFile($element);
2911
                        ?>
2912
 
2913
	 	         </div>
2914
	 	     </div>
2915
	 	</div>
2916
	 	<div class="card-footer text-right">
2917
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2918
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2919
	 	</div>
2920
	 	<?php echo $this->form()->closeTag($form); ?>
2921
	</div>
2922
 
16906 efrain 2923
	<div class="card" id="row-quizz-edit-box" style="display: none">
16905 efrain 2924
	 	<div class="card-header">
2925
	 		<h6 class="card-title">LABEL_EDIT_QUIZ_SLIDE</h6>
2926
	 	</div>
2927
	 	<?php
2928
    	 	$form = $this->formQuizzEdit;
2929
    	 	$form->setAttributes([
2930
    	 	    'method'    => 'post',
2931
    	 	    'name'      => 'form-slide-quizz-edit',
2932
    	 	    'id'        => 'form-slide-quizz-edit'
2933
    	 	]);
1 www 2934
    	    $form->prepare();
2935
    	    echo $this->form()->openTag($form);
2936
 
2937
    	    $element = $form->get('type');
2938
    	    echo $this->formHidden($element);
2939
 
2940
    	    ?>
16905 efrain 2941
	 	<div class="card-body">
1 www 2942
 
16905 efrain 2943
	 		<div class="row">
2944
	 	         <div class="col-12 mt-3">
1 www 2945
    				<?php
2946
                        $element = $form->get('name');
2947
                        $element->setAttributes(['class' => 'form-control']);
2948
                        $element->setOptions(['label' => 'LABEL_NAME']);
2949
                        echo $this->formLabel($element);
2950
                        echo $this->formText($element);
2951
                    ?>
16905 efrain 2952
	 	         </div>
2953
	 	     </div>
2954
	 		<div class="row">
2955
	 	         <div class="col-12 mt-3">
1 www 2956
    				<?php
2957
                        $element = $form->get('order');
2958
                        $element->setAttributes(['class' => 'form-control']);
2959
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2960
                        echo $this->formLabel($element);
2961
                        echo $this->formText($element);
2962
                    ?>
16905 efrain 2963
	 	         </div>
2964
	 	     </div>
6657 nelberth 2965
 
16905 efrain 2966
	 		<div class="row">
2967
	 	         <div class="col-12 mt-3">
1 www 2968
    				<?php
2969
                        $element = $form->get('quiz_id');
2970
                        $element->setAttributes(['class' => 'form-control']);
2971
                        $element->setOptions(['label' => 'LABEL_QUIZ']);
2972
                        echo $this->formLabel($element);
2973
                        echo $this->formSelect($element);
2974
                    ?>
16905 efrain 2975
	 	         </div>
2976
	 	     </div>
2977
 
2978
			<div class="row">
2979
	 	         <div class="col-12 mt-3">
2980
                 		<?php
2981
                        $element = $form->get('background');
2982
                        $element->setAttributes(['class' => 'form-control']);
2983
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2984
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2985
                        echo $this->formLabel($element);
2986
                        echo $this->formFile($element);
2987
                        ?>
2988
 
2989
	 	         </div>
2990
	 	     </div>
2991
	 	</div>
2992
	 	<div class="card-footer text-right">
2993
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2994
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2995
	 	</div>
2996
	 	<?php echo $this->form()->closeTag($form); ?>
2997
	</div>
2998
</div>
1 www 2999
 
16905 efrain 3000
 
3001
 
1 www 3002
 
3003
 
3004
 
3005
<!-- The Modal -->
16906 efrain 3006
<div class="modal" id="modal-play-video-box" >
1 www 3007
	<div class="modal-dialog ">
3008
    	<div class="modal-content">
3009
 
3010
            <!-- Modal Header -->
3011
      		<div class="modal-header">
16845 efrain 3012
        		<h6 class="modal-title">LABEL_PLAY_VIDEO</h6>
16822 efrain 3013
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3014
      		</div>
3015
 
3016
            <!-- Modal body -->
3017
            <div class="modal-body">
3018
				<video src=""  style="width: 300px; height: auto" controls preload="false" autoplay="false"  poster="" id="microlearning-play-video"></video>
3019
      		</div>
3020
 
3021
            <!-- Modal footer -->
16891 efrain 3022
      		<div class="modal-footer text-right">
16822 efrain 3023
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3024
          	</div>
3025
         </div>
3026
	</div>
3027
</div>
3028
 
3029
 
3030
 
3031
 
3032
 
3033
<!-- The Modal -->
16906 efrain 3034
<div class="modal" id="modal-play-audio-box" >
1 www 3035
	<div class="modal-dialog ">
3036
    	<div class="modal-content">
3037
 
3038
            <!-- Modal Header -->
3039
      		<div class="modal-header">
16845 efrain 3040
        		<h6 class="modal-title">LABEL_PLAY_AUDIO</h6>
16822 efrain 3041
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3042
      		</div>
3043
 
3044
            <!-- Modal body -->
3045
            <div class="modal-body">
3046
				<audio src="" controls autoplay="false"  id="microlearning-play-audio" >
3047
                  Your browser does not support the <code>audio</code> element.
3048
                </audio>
3049
      		</div>
3050
 
3051
            <!-- Modal footer -->
16891 efrain 3052
      		<div class="modal-footer text-right">
16822 efrain 3053
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3054
          	</div>
3055
         </div>
3056
	</div>
3057
</div>
3058
 
3059
 
3060
<!-- The Modal -->
16906 efrain 3061
<div class="modal" id="modal-view-image-box">
1 www 3062
	<div class="modal-dialog ">
3063
    	<div class="modal-content">
3064
 
3065
            <!-- Modal Header -->
3066
      		<div class="modal-header">
16845 efrain 3067
        		<h6 class="modal-title">LABEL_IMAGE</h6>
16822 efrain 3068
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3069
      		</div>
3070
 
3071
            <!-- Modal body -->
3072
            <div class="modal-body text-center">
3073
				<img src="" class="img img-responsive" style="width: 300px; height: auto" id="image-view" />
3074
      		</div>
3075
 
3076
            <!-- Modal footer -->
16891 efrain 3077
      		<div class="modal-footer text-right">
16822 efrain 3078
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3079
          	</div>
3080
         </div>
3081
	</div>
3082
</div>
3083
 
3084
 
3085
<!-- The Modal -->
16906 efrain 3086
<div class="modal" id="modal-view-document-box">
1 www 3087
	<div class="modal-dialog ">
3088
    	<div class="modal-content">
3089
 
3090
            <!-- Modal Header -->
3091
      		<div class="modal-header">
16845 efrain 3092
        		<h6 class="modal-title">LABEL_DOCUMENT</h6>
16822 efrain 3093
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3094
      		</div>
3095
 
3096
            <!-- Modal body -->
3097
            <div class="modal-body text-center">
3098
            	<iframe id="document-view" style="width: 450px; height: 300px; scroll: auto">
3099
 
3100
            	</iframe>
3101
       	</div>
3102
 
3103
            <!-- Modal footer -->
16891 efrain 3104
      		<div class="modal-footer text-right">
16822 efrain 3105
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3106
          	</div>
3107
         </div>
3108
	</div>
3109
</div>
3110
 
3111
 
3112
<!-- The Modal -->
16906 efrain 3113
<div class="modal" id="modal-view-text-box">
1 www 3114
	<div class="modal-dialog modal-xl">
3115
    	<div class="modal-content">
3116
 
3117
            <!-- Modal Header -->
3118
      		<div class="modal-header">
16845 efrain 3119
        		<h6 class="modal-title">LABEL_TEXT</h6>
16822 efrain 3120
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3121
      		</div>
3122
 
3123
            <!-- Modal body -->
3124
            <div class="modal-body" >
3125
            	<div id="document-text" style="width: 100%; height: 300px; scroll: auto; overflow: auto;">
3126
 
3127
 
3128
            	</div>
3129
 
3130
       	</div>
3131
 
3132
            <!-- Modal footer -->
16891 efrain 3133
      		<div class="modal-footer text-right">
16822 efrain 3134
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3135
          	</div>
3136
         </div>
3137
	</div>
3138
</div>
3139
 
3140
 
3141
 
3142
 
3143
 
3144
 
3145