Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16905 | Rev 16910 | 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');
1457
        $('#modal-add-capsule-type-box').modal('hide');
16905 efrain 1458
 
1459
 
1 www 1460
 
1461
 
1462
 
1463
         document.getElementById('microlearning-play-video').pause();
1464
         document.getElementById('microlearning-play-audio').pause();
16906 efrain 1465
 
1466
        $('#row-listing').show();
1 www 1467
 
1468
        return false;
1469
    });
1470
 
1471
    $('body').on('click', 'button.btn-add-quizz', function(e) {
1472
        e.preventDefault();
16906 efrain 1473
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1474
 
1475
 
1476
        $('#form-slide-quizz-add #name').val('');
1477
        $('#form-slide-quizz-add #order').val('1');
1478
        $('#form-slide-quizz-add #quiz_id').val('');
16905 efrain 1479
        $('#form-slide-quizz-add #file').fileinput('reset');
1480
        $('#form-slide-quizz-add #file').val('');
1 www 1481
        CKEDITOR.instances.description_add.setData('');
1482
        validatorQuizzAdd.resetForm();
1483
 
1484
 
16905 efrain 1485
        $('#row-listing').hide();
16906 efrain 1486
    	$('#row-quizz-add-box').show();
1487
 
1 www 1488
 
1489
        return false;
1490
    });
1491
 
1492
    $('body').on('click', 'button.btn-add-text', function(e) {
1493
        e.preventDefault();
1494
 
16906 efrain 1495
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1496
 
1497
        $('#form-slide-text-add #name').val('');
1498
        $('#form-slide-text-add #order').val('1');
16905 efrain 1499
        $('#form-slide-text-add #file').fileinput('reset');
1500
        $('#form-slide-text-add #file').val('');
1501
 
1 www 1502
        CKEDITOR.instances.description_add.setData('');
1503
        validatorTextAdd.resetForm();
1504
 
16905 efrain 1505
        $('#row-listing').hide();
16906 efrain 1506
    	$('#row-text-add-box').show();
1507
 
1 www 1508
    });
1509
 
1510
 
1511
    $('body').on('click', 'button.btn-add-image', function(e) {
1512
        e.preventDefault();
1513
 
16906 efrain 1514
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1515
        $('#form-slide-image-add #name').val('');
1516
        $('#form-slide-image-add #order').val('1');
16905 efrain 1517
        $('#form-slide-image-add #file').fileinput('reset');
1518
        $('#form-slide-image-add #file').val('');
6112 nelberth 1519
 
1 www 1520
        validatorImageAdd.resetForm();
1521
 
16905 efrain 1522
        $('#row-listing').hide();
16906 efrain 1523
    	$('#row-image-add-box').show();
1524
 
6122 nelberth 1525
 
1 www 1526
        return false;
1527
    });
1528
 
1529
    $('body').on('click', 'button.btn-add-video', function(e) {
1530
        e.preventDefault();
1531
 
16906 efrain 1532
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1533
        $('#form-slide-video-add #name').val('');
1534
        $('#form-slide-video-add #order').val('1');
1535
        $('#form-slide-video-add #file').fileinput('reset');
1536
        $('#form-slide-video-add #file').val('');
16905 efrain 1537
        $('#form-slide-video-add #background').fileinput('reset');
1538
        $('#form-slide-video-add #backgroud').val('');
1 www 1539
        validatorVideoAdd.resetForm();
1540
 
6616 nelberth 1541
 
16905 efrain 1542
        $('#row-listing').hide();
16906 efrain 1543
    	$('#row-video-add-box').show();
1544
 
1 www 1545
 
1546
        return false;
1547
    });
1548
 
1549
    $('body').on('click', 'button.btn-add-document', function(e) {
1550
        e.preventDefault();
1551
 
1552
 
16906 efrain 1553
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1554
        $('#form-slide-document-add #name').val('');
1555
        $('#form-slide-document-add #order').val('1');
1556
        $('#form-slide-document-add #file').fileinput('reset');
1557
        $('#form-slide-document-add #file').val('');
16905 efrain 1558
        $('#form-slide-document-add #background').fileinput('reset');
1559
        $('#form-slide-document-add #background').val('');
1 www 1560
        validatorDocumentAdd.resetForm();
1561
 
16905 efrain 1562
        $('#row-listing').hide();
16906 efrain 1563
    	$('#row-document-add-box').show();
1564
 
1 www 1565
 
1566
        return false;
1567
    });
1568
 
1569
    $('body').on('click', 'button.btn-add-audio', function(e) {
1570
        e.preventDefault();
1571
 
16906 efrain 1572
        $('#modal-add-capsule-type-box').modal('hide');
1 www 1573
        $('#form-slide-audio-add #name').val('');
1574
        $('#form-slide-audio-add #order').val('1');
1575
        $('#form-slide-audio-add #file').fileinput('reset');
1576
        $('#form-slide-audio-add #file').val('');
16905 efrain 1577
        $('#form-slide-audio-add #background').fileinput('reset');
1578
        $('#form-slide-audio-add #background').val('');
1 www 1579
        validatorAudioAdd.resetForm();
1580
 
16905 efrain 1581
        $('#row-listing').hide();
16906 efrain 1582
    	$('#row-audio-add-box').show();
1583
 
1 www 1584
 
1585
        return false;
1586
    });
1587
 
16905 efrain 1588
 
1 www 1589
 
16906 efrain 1590
    $('#modal-play-video-box, #modal-play-audio-box').on("hide.bs.modal", function() {
1 www 1591
 
1592
 
1593
        document.getElementById('microlearning-play-video').pause();
1594
        document.getElementById('microlearning-play-audio').pause();
1595
    })
1596
 
1597
 
1598
    $('#form-slide-text-add #order').inputNumberFormat({decimal: 0});
16906 efrain 1599
    $('#form-slide-text-edit #order').inputNumberFormat({decimal: 0});
1 www 1600
 
16906 efrain 1601
    $('#form-slide-text-add #background').fileinput({
1602
        theme: 'fa',
1603
        language: 'es',
1604
        showUpload: false,
1605
        dropZoneEnabled: false,
1606
        maxFileCount: 1,
1607
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1608
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1609
    });
1 www 1610
 
1611
 
16906 efrain 1612
    $('#form-slide-text-edit #background').fileinput({
1613
        theme: 'fa',
1614
        language: 'es',
1615
        showUpload: false,
1616
        dropZoneEnabled: false,
1617
        maxFileCount: 1,
1618
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1619
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1620
    });
1 www 1621
 
6591 nelberth 1622
 
16906 efrain 1623
 
1 www 1624
    $('#form-slide-image-add #order').inputNumberFormat({decimal: 0});
16906 efrain 1625
    $('#form-slide-image-edit #order').inputNumberFormat({decimal: 0});
1 www 1626
 
16906 efrain 1627
    $('#form-slide-image-add #file').fileinput({
1628
        theme: 'fa',
1629
        language: 'es',
1630
        showUpload: false,
1631
        dropZoneEnabled: false,
1632
        maxFileCount: 1,
1633
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1634
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1635
    });
1 www 1636
 
1637
 
16906 efrain 1638
    $('#form-slide-image-edit #file').fileinput({
1639
        theme: 'fa',
1640
        language: 'es',
1641
        showUpload: false,
1642
        dropZoneEnabled: false,
1643
        maxFileCount: 1,
1644
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1645
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1646
    });
1 www 1647
 
1648
    $('#form-slide-video-add #order').inputNumberFormat({decimal: 0});
16906 efrain 1649
    $('#form-slide-video-edit #order').inputNumberFormat({decimal: 0});
1 www 1650
 
1651
    $('#form-slide-video-add #file').fileinput({
12077 nelberth 1652
        theme: 'fa',
1 www 1653
        language: 'es',
1654
        showUpload: false,
1655
        dropZoneEnabled: false,
1656
        maxFileCount: 1,
1657
        allowedFileExtensions: ['mp4', 'mpeg','webm'],
1658
        msgPlaceholder: 'Video de extensión mp4, mpeg, webm',
1659
    });
1660
 
1661
 
1662
    $('#form-slide-video-edit #file').fileinput({
12077 nelberth 1663
        theme: 'fa',
1 www 1664
        language: 'es',
1665
        showUpload: false,
1666
        dropZoneEnabled: false,
1667
        maxFileCount: 1,
1668
        allowedFileExtensions: ['mp4', 'mpeg','webm'],
1669
        msgPlaceholder: 'Video de extensión mp4, mpeg, webm',
1670
    });
1671
 
16906 efrain 1672
    $('#form-slide-video-add #background').fileinput({
1673
        theme: 'fa',
1674
        language: 'es',
1675
        showUpload: false,
1676
        dropZoneEnabled: false,
1677
        maxFileCount: 1,
1678
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1679
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1680
    });
1 www 1681
 
6591 nelberth 1682
 
16906 efrain 1683
    $('#form-slide-video-edit #background').fileinput({
1684
        theme: 'fa',
1685
        language: 'es',
1686
        showUpload: false,
1687
        dropZoneEnabled: false,
1688
        maxFileCount: 1,
1689
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1690
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1691
    });
1692
 
1693
 
1 www 1694
 
1695
 
1696
    $('#form-slide-document-add #order').inputNumberFormat({decimal: 0});
1697
 
1698
    $('#form-slide-document-add #file').fileinput({
12077 nelberth 1699
        theme: 'fa',
1 www 1700
        language: 'es',
1701
        showUpload: false,
1702
        dropZoneEnabled: false,
1703
        maxFileCount: 1,
1704
        allowedFileExtensions: ['pdf'],
1705
        msgPlaceholder: 'Documentos de extensión pdf',
1706
    });
1707
 
1708
 
1709
 
6591 nelberth 1710
 
1 www 1711
    $('#form-slide-document-edit #order').inputNumberFormat({decimal: 0});
1712
 
1713
    $('#form-slide-document-edit #file').fileinput({
12077 nelberth 1714
        theme: 'fa',
1 www 1715
        language: 'es',
1716
        showUpload: false,
1717
        dropZoneEnabled: false,
1718
        maxFileCount: 1,
1719
        allowedFileExtensions: ['pdf'],
1720
        msgPlaceholder: 'Documentos de extensión pdf',
1721
    });
1722
 
16906 efrain 1723
    $('#form-slide-document-add #background').fileinput({
1724
        theme: 'fa',
1725
        language: 'es',
1726
        showUpload: false,
1727
        dropZoneEnabled: false,
1728
        maxFileCount: 1,
1729
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1730
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1731
    });
1 www 1732
 
1733
 
16906 efrain 1734
    $('#form-slide-document-edit #background').fileinput({
1735
        theme: 'fa',
1736
        language: 'es',
1737
        showUpload: false,
1738
        dropZoneEnabled: false,
1739
        maxFileCount: 1,
1740
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1741
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1742
    });
6591 nelberth 1743
 
16906 efrain 1744
 
1 www 1745
    $('#form-slide-audio-add #order').inputNumberFormat({decimal: 0});
1746
 
1747
    $('#form-slide-audio-add #file').fileinput({
12077 nelberth 1748
        theme: 'fa',
1 www 1749
        language: 'es',
1750
        showUpload: false,
1751
        dropZoneEnabled: false,
1752
        maxFileCount: 1,
1753
        allowedFileExtensions: ['wav', 'mp3'],
1754
        msgPlaceholder: 'Audios de extensión wav y mp3',
1755
    });
1756
 
1757
 
1758
 
6591 nelberth 1759
 
1 www 1760
    $('#form-slide-audio-edit #order').inputNumberFormat({decimal: 0});
1761
 
1762
    $('#form-slide-audio-edit #file').fileinput({
12077 nelberth 1763
        theme: 'fa',
1 www 1764
        language: 'es',
1765
        showUpload: false,
1766
        dropZoneEnabled: false,
1767
        maxFileCount: 1,
1768
        allowedFileExtensions: ['wav', 'mp3'],
1769
        msgPlaceholder: 'Audios de extensión wav y mp3',
1770
    });
1771
 
16906 efrain 1772
    $('#form-slide-audio-add #background').fileinput({
1773
        theme: 'fa',
1774
        language: 'es',
1775
        showUpload: false,
1776
        dropZoneEnabled: false,
1777
        maxFileCount: 1,
1778
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1779
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1780
    });
1 www 1781
 
1782
 
16906 efrain 1783
    $('#form-slide-audio-edit #background').fileinput({
1784
        theme: 'fa',
1785
        language: 'es',
1786
        showUpload: false,
1787
        dropZoneEnabled: false,
1788
        maxFileCount: 1,
1789
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1790
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1791
    });
6591 nelberth 1792
 
16906 efrain 1793
 
1794
 
1 www 1795
    $('#form-slide-quizz-add #order').inputNumberFormat({decimal: 0});
1796
 
1797
 
1798
 
6591 nelberth 1799
 
1 www 1800
    $('#form-slide-quizz-edit #order').inputNumberFormat({decimal: 0});
1801
 
6591 nelberth 1802
 
1 www 1803
 
16906 efrain 1804
    $('#form-slide-quizz-add #background').fileinput({
1805
        theme: 'fa',
1806
        language: 'es',
1807
        showUpload: false,
1808
        dropZoneEnabled: false,
1809
        maxFileCount: 1,
1810
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1811
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1812
    });
1 www 1813
 
16906 efrain 1814
 
1815
    $('#form-slide-quizz-edit #background').fileinput({
1816
        theme: 'fa',
1817
        language: 'es',
1818
        showUpload: false,
1819
        dropZoneEnabled: false,
1820
        maxFileCount: 1,
1821
        placeholder:  'LABEL_RECOMMENDED_SIZE $image_size',
1822
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
1823
    });
1 www 1824
 
1825
 
1826
 
1827
 
1828
 
8290 stevensc 1829
    CKEDITOR.replace('description_add', {
1830
        toolbar: [
1831
                    { name: 'editing', items: ['Scayt'] },
1832
                    { name: 'links', items: ['Link', 'Unlink'] },
1833
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
1834
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
1835
                    '/',
1836
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
1837
                    { name: 'styles', items: ['Styles', 'Format'] },
1838
                    { name: 'tools', items: ['Maximize'] }
1839
                ],
1840
                removePlugins: 'elementspath,Anchor',
1841
                heigth: 100
1842
    });
1843
    CKEDITOR.replace('description_edit',{
1844
        toolbar: [
1845
                    { name: 'editing', items: ['Scayt'] },
1846
                    { name: 'links', items: ['Link', 'Unlink'] },
1847
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
1848
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
1849
                    '/',
1850
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
1851
                    { name: 'styles', items: ['Styles', 'Format'] },
1852
                    { name: 'tools', items: ['Maximize'] }
1853
                ],
1854
                removePlugins: 'elementspath,Anchor',
1855
                heigth: 100
1856
    });
1 www 1857
 
1858
 
1859
   $('body').on('click', '.btn-view-image', function(e) {
1860
        e.preventDefault();
1861
 
16906 efrain 1862
        $('#modal-view-image-box').modal('show');
1 www 1863
 
1864
        $('#image-view').attr('src', $(this).data('href'));
1865
 
1866
        return false;
1867
    });
1868
 
1869
 
1870
    $('body').on('click', '.btn-play-video', function(e) {
1871
        e.preventDefault();
1872
 
1873
        $('#microlearning-play-video').attr('src', $(this).data('href'));
16906 efrain 1874
        $('#modal-play-video-box').modal('show');
1 www 1875
 
1876
        return false;
1877
    });
1878
 
1879
    $('body').on('click', '.btn-play-audio', function(e) {
1880
        e.preventDefault();
1881
 
1882
 
1883
        $('#microlearning-play-audio').attr('src', $(this).data('href'));
16906 efrain 1884
        $('#modal-play-audio-box').modal('show');
1 www 1885
 
1886
        return false;
1887
    });
1888
 
1889
    $('body').on('click', '.btn-view-document', function(e) {
1890
        e.preventDefault();
1891
 
1892
 
1893
        $('#document-view').attr('src', $(this).data('href'));
16906 efrain 1894
        $('#modal-view-document-box').modal('show');
1 www 1895
 
1896
        return false;
1897
    });
1898
 
1899
    $('body').on('click', '.btn-view-text', function(e) {
1900
        e.preventDefault();
1901
 
1902
        var url = $(this).data('href');
1903
        $.ajax({
1904
            'dataType'  : 'json',
1905
            'accept'    : 'application/json',
1906
            'method'    : 'get',
1907
            'url'       :  url,
1908
        }).done(function(response) {
1909
            if(response['success']) {
1910
                $('#document-text').html( response['data']  );
1911
            }
1912
 
1913
        }).fail(function( jqXHR, textStatus, errorThrown) {
1914
            $.fn.showError(textStatus);
1915
        }).always(function() {
1916
            NProgress.done();
1917
        });
1918
 
1919
 
16906 efrain 1920
        $('#modal-view-text-box').modal('show');
1 www 1921
 
1922
        return false;
1923
    });
1924
 
1925
 
1926
 
1927
    $('#form-filter #topic_uuid').change(function(e) {
1928
        e.preventDefault();
1929
 
1930
        $('#form-filter #capsule_uuid').empty();
1931
        gridTable.api().ajax.reload(null, false);
1932
    })
1933
 
1934
 
1935
    $('#form-filter #capsule_uuid').change(function(e) {
1936
        e.preventDefault();
1937
 
1938
        gridTable.api().ajax.reload(null, false);
1939
    })
1940
 
1941
    $('button.btn-add').click(function(e) {
1942
        e.preventDefault()
1943
 
16906 efrain 1944
        $('#modal-add-capsule-type-box').modal('show');
1 www 1945
 
1946
    } );
1947
 
16822 efrain 1948
    $('body').on('click', 'button.btn-delete', function(e) {
1949
        e.preventDefault();
1950
        var action = $(this).data('href');
1 www 1951
 
1952
 
16822 efrain 1953
          swal.fire({
1954
            title: 'LABEL_ARE_YOU_SURE',
1955
            icon: 'question',
1956
            cancelButtonText: 'LABEL_NO',
1957
            showCancelButton: true,
1958
            confirmButtonText: 'LABEL_YES'
1959
          }).then((result) => {
1960
            if (result.isConfirmed) {
1961
 
1962
                    NProgress.start();
1963
                    $.ajax({
1964
                        'dataType'  : 'json',
1965
                        'accept'    : 'application/json',
1966
                        'method'    : 'post',
1967
                        'url'       :  action,
1968
                    }).done(function(response) {
1969
                        if(response['success']) {
1970
                            $.fn.showSuccess(response['data']);
1971
                            gridTable.api().ajax.reload(null, false);
1972
                        } else {
1973
                            $.fn.showError(response['data']);
1974
                        }
1975
                    }).fail(function( jqXHR, textStatus, errorThrown) {
1976
                        $.fn.showError(textStatus);
1977
                    }).always(function() {
1978
                        NProgress.done();
1979
                    });
1980
            }
1981
       });
1982
    });
1983
 
1984
 
1 www 1985
    $('body').on('click', 'button.btn-refresh', function(e) {
1986
        e.preventDefault();
1987
        gridTable.api().ajax.reload(null, false);
1988
    });
1989
 
6113 nelberth 1990
 
1 www 1991
});
1992
JS;
1993
$this->inlineScript()->captureEnd();
1994
?>
1995
 
16905 efrain 1996
<div class="container">
1997
	<div class="card" id="row-listing">
1998
	 	<div class="card-header">
1999
	 		<h6 class="card-title">LABEL_SLIDES</h6>
2000
	 	</div>
2001
	 	<div class="card-body">
1 www 2002
 
16905 efrain 2003
	 			<?php
2004
                $form = $this->form;
2005
                $form->setAttributes([
2006
                    'name'    => 'form-filter',
2007
                    'id'      => 'form-filter',
2008
                ]);
1 www 2009
 
16905 efrain 2010
                $form->prepare();
2011
                echo $this->form()->openTag($form);
2012
                ?>
2013
             	<div class="row">
2014
                	<div class="col-md-6 mt-3">
2015
               			<?php
2016
                        $element = $form->get('topic_uuid');
2017
                        $element->setOptions(['label' => 'LABEL_TOPIC']);
2018
 
2019
                        $element->setAttributes(['class' => 'form-control']);
2020
                        echo $this->formLabel($element);
2021
                        echo $this->formSelect($element);
1 www 2022
                        ?>
16905 efrain 2023
                   	</div>
2024
 
2025
         	    	<div class="col-md-6 mt-3">
2026
        				<?php
2027
                        $element = $form->get('capsule_uuid');
2028
                        $element->setOptions(['label' => 'LABEL_CAPSULE']);
2029
                        $element->setAttributes(['class' => 'form-control']);
2030
                        echo $this->formLabel($element);
2031
                        echo $this->formSelect($element);
2032
                        ?>
2033
                	</div>
2034
              	</div>
2035
 
2036
				<?php echo $this->form()->closeTag($form); ?>
2037
 
2038
 
2039
				<div class="row">
2040
    	 	 		<div class="col-12 mt-3">
2041
 
2042
    	 	 			<table id="gridTable" class="table   table-bordered">
1 www 2043
                      		<thead>
2044
        						<tr>
2045
                                	<th>LABEL_NAME</th>
2046
                                  	<th>LABEL_DETAILS</th>
2047
                                  	<th>LABEL_MEDIA</th>
2048
                                  	<th>LABEL_ACTIONS</th>
2049
                                </tr>
2050
                       		</thead>
2051
                         	<tbody>
2052
                         	</tbody>
2053
                    	</table>
16905 efrain 2054
 
2055
  					</div>
2056
				</div>
2057
		</div>
1 www 2058
 
16905 efrain 2059
	 	<div class="card-footer text-right">
2060
	 	     <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
2061
			<?php if($allowAdd) : ?>
2062
			<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
2063
			<?php endif; ?>
2064
	 	</div>
2065
	</div>
6528 nelberth 2066
 
16905 efrain 2067
 
16906 efrain 2068
	<div class="card" id="row-text-add-box" style="display: none">
16905 efrain 2069
	 	<div class="card-header">
2070
	 		<h6 class="card-title">LABEL_ADD_TEXT_SLIDE</h6>
2071
	 	</div>
2072
	 	<?php
1 www 2073
    	    $form = $this->formTextAdd;
2074
    	    $form->setAttributes([
2075
    	       'method'    => 'post',
2076
    	       'name'      => 'form-slide-text-add',
2077
    	       'id'        => 'form-slide-text-add'
2078
    	    ]);
2079
    	    $form->prepare();
2080
    	    echo $this->form()->openTag($form);
2081
 
2082
    	    $element = $form->get('type');
2083
    	    echo $this->formHidden($element);
2084
 
2085
    	    ?>
16905 efrain 2086
	 	<div class="card-body">
1 www 2087
 
16905 efrain 2088
	 		<div class="row">
2089
	 	         <div class="col-12 mt-3">
1 www 2090
    				<?php
2091
                        $element = $form->get('name');
2092
                        $element->setAttributes(['class' => 'form-control']);
2093
                        $element->setOptions(['label' => 'LABEL_NAME']);
2094
                        echo $this->formLabel($element);
2095
                        echo $this->formText($element);
2096
                    ?>
16905 efrain 2097
	 	         </div>
2098
	 	     </div>
2099
	 		<div class="row">
2100
	 	         <div class="col-12 mt-3">
1 www 2101
                	<?php
2102
                    $element = $form->get('description');
2103
                    $element->setOptions(['label' => 'LABEL_DESCRIPTION']);
6600 nelberth 2104
                    $element->setAttributes(['id' => 'description_add', 'rows' => '2',  'class' => 'form-control']);
1 www 2105
                    echo $this->formLabel($element);
2106
                    echo $this->formTextArea($element);
2107
                    ?>
16905 efrain 2108
	 	         </div>
2109
	 	     </div>
2110
	 		<div class="row">
2111
	 	         <div class="col-12 mt-3">
1 www 2112
    				<?php
2113
                        $element = $form->get('order');
2114
                        $element->setAttributes(['class' => 'form-control']);
2115
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2116
                        echo $this->formLabel($element);
2117
                        echo $this->formText($element);
2118
                    ?>
2119
				</div>
16906 efrain 2120
			</div>
16905 efrain 2121
	 		<div class="row">
2122
	 	         <div class="col-12 mt-3">
6529 nelberth 2123
                <?php
2124
                    $element = $form->get('background');
16905 efrain 2125
                    $element->setAttributes([ 'class' => 'form-control']);
2126
					$element->setOptions(['label' => 'LABEL_IMAGE']);
2127
					$element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2128
					echo $this->formLabel($element);
2129
                    echo $this->formFile($element);
2130
                ?>
2131
	 	         </div>
2132
	 	     </div>
2133
	 	</div>
2134
	 	<div class="card-footer text-right">
2135
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2136
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2137
	 	</div>
2138
	 	<?php echo $this->form()->closeTag($form); ?>
2139
	</div>
2140
 
16906 efrain 2141
	<div class="card" id="row-text-edit-box" style="display: none">
16905 efrain 2142
	 	<div class="card-header">
2143
	 		<h6 class="card-title">LABEL_EDIT_TEXT_SLIDE</h6>
2144
	 	</div>
2145
	 	<?php
1 www 2146
    	    $form = $this->formTextEdit;
2147
    	    $form->setAttributes([
2148
    	       'method'    => 'post',
2149
    	       'name'      => 'form-slide-text-edit',
2150
    	       'id'        => 'form-slide-text-edit'
2151
    	    ]);
2152
    	    $form->prepare();
2153
    	    echo $this->form()->openTag($form);
2154
 
2155
    	    $element = $form->get('type');
2156
    	    echo $this->formHidden($element);
2157
 
6595 nelberth 2158
    	    ?>
16905 efrain 2159
	 	<div class="card-body">
1 www 2160
 
16905 efrain 2161
	 		<div class="row">
2162
	 	         <div class="col-12 mt-3">
1 www 2163
    				<?php
2164
                        $element = $form->get('name');
2165
                        $element->setAttributes(['class' => 'form-control']);
2166
                        $element->setOptions(['label' => 'LABEL_NAME']);
2167
                        echo $this->formLabel($element);
2168
                        echo $this->formText($element);
2169
                    ?>
16905 efrain 2170
	 	         </div>
2171
	 	     </div>
2172
 
2173
	 		<div class="row">
2174
	 	         <div class="col-12 mt-3">
1 www 2175
                	<?php
2176
                    $element = $form->get('description');
2177
                    $element->setOptions(['label' => 'LABEL_DESCRIPTION']);
6600 nelberth 2178
                    $element->setAttributes(['id' => 'description_edit', 'rows' => '2',  'class' => 'form-control']);
1 www 2179
                    echo $this->formLabel($element);
2180
                    echo $this->formTextArea($element);
2181
                    ?>
16905 efrain 2182
	 	         </div>
2183
	 	     </div>
2184
 
2185
	 		<div class="row">
2186
	 	         <div class="col-12 mt-3">
1 www 2187
    				<?php
2188
                        $element = $form->get('order');
2189
                        $element->setAttributes(['class' => 'form-control']);
2190
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2191
                        echo $this->formLabel($element);
2192
                        echo $this->formText($element);
2193
                    ?>
16905 efrain 2194
	 	         </div>
2195
	 	     </div>
2196
 
2197
	 		<div class="row">
2198
	 	         <div class="col-12 mt-3">
6595 nelberth 2199
                <?php
2200
                    $element = $form->get('background');
16905 efrain 2201
                    $element->setAttributes([ 'class' => 'form-control']);
2202
					$element->setOptions(['label' => 'LABEL_IMAGE']);
2203
					$element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2204
					echo $this->formLabel($element);
2205
                    echo $this->formFile($element);
2206
                ?>
2207
	 	         </div>
2208
	 	     </div>
2209
	 	</div>
2210
	 	<div class="card-footer text-right">
2211
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2212
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2213
	 	</div>
2214
	 	<?php echo $this->form()->closeTag($form); ?>
2215
 
2216
	</div>
2217
 
6595 nelberth 2218
 
16905 efrain 2219
 
1 www 2220
 
2221
 
16906 efrain 2222
	<div class="card" id="row-image-add-box" style="display: none">
16905 efrain 2223
	 	<div class="card-header">
2224
	 		<h6 class="card-title">LABEL_ADD_IMAGE_SLIDE</h6>
2225
	 	</div>
2226
		<?php
1 www 2227
    	    $form = $this->formImageAdd;
2228
    	    $form->setAttributes([
2229
    	       'method'    => 'post',
2230
    	        'name'      => 'form-slide-image-add',
2231
    	        'id'        => 'form-slide-image-add'
2232
    	    ]);
2233
    	    $form->prepare();
2234
    	    echo $this->form()->openTag($form);
2235
 
2236
    	    $element = $form->get('type');
2237
    	    echo $this->formHidden($element);
2238
 
2239
    	    ?>
16905 efrain 2240
	 	<div class="card-body">
1 www 2241
 
16905 efrain 2242
	 		<div class="row">
2243
	 	         <div class="col-12 mt-3">
1 www 2244
    				<?php
2245
                        $element = $form->get('name');
2246
                        $element->setAttributes(['class' => 'form-control']);
2247
                        $element->setOptions(['label' => 'LABEL_NAME']);
2248
                        echo $this->formLabel($element);
2249
                        echo $this->formText($element);
2250
                    ?>
16905 efrain 2251
	 	         </div>
2252
	 	     </div>
2253
	 		<div class="row">
2254
	 	         <div class="col-12 mt-3">
6137 nelberth 2255
 
6134 nelberth 2256
                <?php
2257
                    $element = $form->get('file');
16905 efrain 2258
					$element->setAttributes([ 'class' => 'form-control']);
2259
					$element->setOptions(['label' => 'LABEL_IMAGE']);
2260
					$element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2261
					echo $this->formLabel($element);
2262
                    echo $this->formFile($element);
6134 nelberth 2263
                ?>
16905 efrain 2264
	 	         </div>
2265
	 	     </div>
2266
	 		<div class="row">
2267
	 	         <div class="col-12 mt-3">
1 www 2268
    				<?php
2269
                        $element = $form->get('order');
2270
                        $element->setAttributes(['class' => 'form-control']);
2271
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2272
                        echo $this->formLabel($element);
2273
                        echo $this->formText($element);
2274
                    ?>
16905 efrain 2275
	 	         </div>
2276
	 	     </div>
2277
	 	</div>
2278
	 	<div class="card-footer text-right">
2279
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2280
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2281
	 	</div>
2282
	 	<?php echo $this->form()->closeTag($form); ?>
2283
	</div>
2284
 
2285
 
16906 efrain 2286
	<div class="card" id="row-image-edit-box" style="display: none">
16905 efrain 2287
	 	<div class="card-header">
2288
	 		<h6 class="card-title">LABEL_EDIT_IMAGE_SLIDE</h6>
2289
	 	</div>
2290
	 	 <?php
6505 nelberth 2291
    	    $form = $this->formImageEdit;
2292
    	    $form->setAttributes([
2293
    	       'method'    => 'post',
2294
    	       'name'      => 'form-slide-image-edit',
2295
    	       'id'        => 'form-slide-image-edit'
2296
    	    ]);
2297
    	    $form->prepare();
2298
    	    echo $this->form()->openTag($form);
2299
 
2300
    	    $element = $form->get('type');
2301
    	    echo $this->formHidden($element);
2302
 
2303
    	    ?>
16905 efrain 2304
	 	<div class="card-body">
6505 nelberth 2305
 
16905 efrain 2306
	 		<div class="row">
2307
	 	         <div class="col-12 mt-3">
6505 nelberth 2308
    				<?php
2309
                        $element = $form->get('name');
2310
                        $element->setAttributes(['class' => 'form-control']);
2311
                        $element->setOptions(['label' => 'LABEL_NAME']);
2312
                        echo $this->formLabel($element);
2313
                        echo $this->formText($element);
2314
                    ?>
16905 efrain 2315
	 	         </div>
2316
	 	     </div>
6505 nelberth 2317
 
16905 efrain 2318
	 		<div class="row">
2319
	 	         <div class="col-12 mt-3">
6505 nelberth 2320
                <?php
2321
                    $element = $form->get('file');
16905 efrain 2322
					$element->setAttributes([ 'class' => 'form-control']);
2323
					$element->setOptions(['label' => 'LABEL_IMAGE']);
2324
					$element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2325
					echo $this->formLabel($element);
2326
                    echo $this->formFile($element);
6505 nelberth 2327
                ?>
16905 efrain 2328
	 	         </div>
2329
	 	     </div>
2330
	 		<div class="row">
2331
	 	         <div class="col-12 mt-3">
6505 nelberth 2332
    				<?php
2333
                        $element = $form->get('order');
2334
                        $element->setAttributes(['class' => 'form-control']);
2335
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2336
                        echo $this->formLabel($element);
2337
                        echo $this->formText($element);
2338
                    ?>
2339
				</div>
16905 efrain 2340
	 	     </div>
2341
	 	</div>
2342
	 	<div class="card-footer text-right">
2343
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2344
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2345
	 	</div>
2346
	 	<?php echo $this->form()->closeTag($form); ?>
2347
	</div>
2348
 
16906 efrain 2349
	<div class="card" id="row-video-add-box" style="display: none">
16905 efrain 2350
	 	<div class="card-header">
2351
	 		<h6 class="card-title">LABEL_ADD_VIDEO_SLIDE</h6>
2352
	 	</div>
2353
	 	<?php
1 www 2354
    	    $form = $this->formVideoAdd;
2355
    	    $form->setAttributes([
2356
    	       'method'    => 'post',
2357
    	        'name'      => 'form-slide-video-add',
2358
    	        'id'        => 'form-slide-video-add'
2359
    	    ]);
2360
    	    $form->prepare();
2361
    	    echo $this->form()->openTag($form);
2362
 
2363
    	    $element = $form->get('type');
2364
    	    echo $this->formHidden($element);
2365
 
2366
    	    ?>
16905 efrain 2367
	 	<div class="card-body">
2368
	 		<div class="row">
2369
	 	         <div class="col-12 mt-3">
2370
	 	         </div>
2371
	 	     </div>
2372
 
2373
	 		<div class="row">
2374
	 	         <div class="col-12 mt-3">
1 www 2375
    				<?php
2376
                        $element = $form->get('name');
2377
                        $element->setAttributes(['class' => 'form-control']);
2378
                        $element->setOptions(['label' => 'LABEL_NAME']);
2379
                        echo $this->formLabel($element);
2380
                        echo $this->formText($element);
2381
                    ?>
16905 efrain 2382
	 	         </div>
2383
	 	     </div>
2384
	 		<div class="row">
2385
	 	         <div class="col-12 mt-3">
1 www 2386
    				<?php
2387
                        $element = $form->get('order');
2388
                        $element->setAttributes(['class' => 'form-control']);
2389
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2390
                        echo $this->formLabel($element);
2391
                        echo $this->formText($element);
2392
                    ?>
16905 efrain 2393
	 	         </div>
2394
	 	     </div>
2395
	 		<div class="row">
2396
	 	         <div class="col-12 mt-3">
1 www 2397
 
2398
                 		<?php
2399
                        $element = $form->get('file');
2400
                        $element->setAttributes(['class' => 'form-control']);
2401
                        $element->setOptions(['label' => 'LABEL_VIDEO']);
2402
                        $element->setAttributes(['accept' => 'video/webm,video/mpeg,video/mp4']);
2403
                        echo $this->formLabel($element);
16905 efrain 2404
                        echo $this->formFile($element);
1 www 2405
                        ?>
16905 efrain 2406
	 	         </div>
2407
	 	     </div>
2408
	 		<div class="row">
2409
	 	         <div class="col-12 mt-3">
2410
                 		<?php
2411
                        $element = $form->get('background');
2412
                        $element->setAttributes(['class' => 'form-control']);
2413
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2414
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2415
                        echo $this->formLabel($element);
2416
                        echo $this->formFile($element);
2417
                        ?>
2418
 
2419
	 	         </div>
2420
	 	     </div>
2421
	 	</div>
2422
	 	<div class="card-footer text-right">
2423
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2424
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2425
	 	</div>
2426
	 	<?php echo $this->form()->closeTag($form); ?>
2427
	</div>
2428
 
2429
 
16906 efrain 2430
	<div class="card" id="row-video-edit-box" style="display: none">
16905 efrain 2431
	 	<div class="card-header">
2432
	 		<h6 class="card-title">>LABEL_EDIT_VIDEO_SLIDE</h6>
2433
	 	</div>
2434
	 	<?php
2435
    	 	$form = $this->formVideoEdit;
2436
    	 	$form->setAttributes([
2437
    	 	    'method'    => 'post',
2438
    	 	    'name'      => 'form-slide-video-edit',
2439
    	 	    'id'        => 'form-slide-video-edit'
2440
    	 	]);
1 www 2441
    	    $form->prepare();
2442
    	    echo $this->form()->openTag($form);
2443
 
2444
    	    $element = $form->get('type');
2445
    	    echo $this->formHidden($element);
2446
 
2447
    	    ?>
16905 efrain 2448
	 	<div class="card-body">
2449
	 		<div class="row">
2450
	 	         <div class="col-12 mt-3">
2451
	 	         </div>
2452
	 	     </div>
2453
 
2454
	 		<div class="row">
2455
	 	         <div class="col-12 mt-3">
1 www 2456
    				<?php
2457
                        $element = $form->get('name');
2458
                        $element->setAttributes(['class' => 'form-control']);
2459
                        $element->setOptions(['label' => 'LABEL_NAME']);
2460
                        echo $this->formLabel($element);
2461
                        echo $this->formText($element);
2462
                    ?>
16905 efrain 2463
	 	         </div>
2464
	 	     </div>
2465
	 		<div class="row">
2466
	 	         <div class="col-12 mt-3">
1 www 2467
    				<?php
2468
                        $element = $form->get('order');
2469
                        $element->setAttributes(['class' => 'form-control']);
2470
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2471
                        echo $this->formLabel($element);
2472
                        echo $this->formText($element);
2473
                    ?>
16905 efrain 2474
	 	         </div>
2475
	 	     </div>
2476
	 		<div class="row">
2477
	 	         <div class="col-12 mt-3">
2478
 
1 www 2479
                 		<?php
2480
                        $element = $form->get('file');
2481
                        $element->setAttributes(['class' => 'form-control']);
2482
                        $element->setOptions(['label' => 'LABEL_VIDEO']);
2483
                        $element->setAttributes(['accept' => 'video/webm,video/mpeg,video/mp4']);
2484
                        echo $this->formLabel($element);
16905 efrain 2485
                        echo $this->formFile($element);
1 www 2486
                        ?>
16905 efrain 2487
	 	         </div>
2488
	 	     </div>
2489
	 		<div class="row">
2490
	 	         <div class="col-12 mt-3">
2491
                 		<?php
2492
                        $element = $form->get('background');
2493
                        $element->setAttributes(['class' => 'form-control']);
2494
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2495
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2496
                        echo $this->formLabel($element);
2497
                        echo $this->formFile($element);
2498
                        ?>
2499
 
2500
	 	         </div>
2501
	 	     </div>
2502
	 	</div>
2503
	 	<div class="card-footer text-right">
2504
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2505
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2506
	 	</div>
2507
	 	<?php echo $this->form()->closeTag($form); ?>
2508
	</div>
2509
 
2510
 
16906 efrain 2511
	<div class="card" id="row-document-add-box" style="display: none">
16905 efrain 2512
	 	<div class="card-header">
2513
	 		<h6 class="card-title">LABEL_ADD_DOCUMENT_SLIDE</h6>
2514
	 	</div>
2515
	 	<?php
1 www 2516
    	    $form = $this->formDocumentAdd;
2517
    	    $form->setAttributes([
2518
    	       'method'    => 'post',
2519
    	        'name'      => 'form-slide-document-add',
2520
    	        'id'        => 'form-slide-document-add'
2521
    	    ]);
2522
    	    $form->prepare();
2523
    	    echo $this->form()->openTag($form);
2524
 
2525
    	    $element = $form->get('type');
2526
    	    echo $this->formHidden($element);
2527
 
2528
    	    ?>
16905 efrain 2529
	 	<div class="card-body">
1 www 2530
 
16905 efrain 2531
 
2532
	 		<div class="row">
2533
	 	         <div class="col-12 mt-3">
1 www 2534
    				<?php
2535
                        $element = $form->get('name');
2536
                        $element->setAttributes(['class' => 'form-control']);
2537
                        $element->setOptions(['label' => 'LABEL_NAME']);
2538
                        echo $this->formLabel($element);
2539
                        echo $this->formText($element);
2540
                    ?>
16905 efrain 2541
	 	         </div>
2542
	 	     </div>
2543
	 		<div class="row">
2544
	 	         <div class="col-12 mt-3">
1 www 2545
    				<?php
2546
                        $element = $form->get('order');
2547
                        $element->setAttributes(['class' => 'form-control']);
2548
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2549
                        echo $this->formLabel($element);
2550
                        echo $this->formText($element);
2551
                    ?>
16905 efrain 2552
	 	         </div>
2553
	 	     </div>
2554
	 		<div class="row">
2555
	 	         <div class="col-12 mt-3">
1 www 2556
 
2557
                 		<?php
2558
                        $element = $form->get('file');
2559
                        $element->setAttributes(['class' => 'form-control']);
2560
                        $element->setOptions(['label' => 'LABEL_DOCUMENT']);
2561
                        $element->setAttributes(['accept' => 'application/pdf']);
2562
                        echo $this->formLabel($element);
16905 efrain 2563
                        echo $this->formFile($element);
1 www 2564
                        ?>
16905 efrain 2565
 
1 www 2566
 
16905 efrain 2567
	 	         </div>
2568
	 	     </div>
2569
	 		<div class="row">
2570
	 	         <div class="col-12 mt-3">
2571
                 		<?php
2572
                        $element = $form->get('background');
2573
                        $element->setAttributes(['class' => 'form-control']);
2574
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2575
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2576
                        echo $this->formLabel($element);
2577
                        echo $this->formFile($element);
2578
                        ?>
6656 nelberth 2579
 
16905 efrain 2580
	 	         </div>
2581
	 	     </div>
2582
	 	</div>
2583
	 	<div class="card-footer text-right">
2584
	 	      <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2585
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2586
	 	</div>
2587
	 	<?php echo $this->form()->closeTag($form); ?>
2588
	</div>
2589
 
2590
 
16906 efrain 2591
	<div class="card" id="row-document-edit-box" style="display: none">
16905 efrain 2592
	 	<div class="card-header">
2593
	 		<h6 class="card-title">LABEL_EDIT_DOCUMENT_SLIDE</h6>
2594
	 	</div>
2595
	 	<?php
2596
    	 	$form = $this->formDocumentEdit;
2597
    	 	$form->setAttributes([
2598
    	 	    'method'    => 'post',
2599
    	 	    'name'      => 'form-slide-document-edit',
2600
    	 	    'id'        => 'form-slide-document-edit'
2601
    	 	]);
1 www 2602
    	    $form->prepare();
2603
    	    echo $this->form()->openTag($form);
2604
 
2605
    	    $element = $form->get('type');
2606
    	    echo $this->formHidden($element);
2607
 
2608
    	    ?>
16905 efrain 2609
	 	<div class="card-body">
1 www 2610
 
16905 efrain 2611
 
2612
	 		<div class="row">
2613
	 	         <div class="col-12 mt-3">
1 www 2614
    				<?php
2615
                        $element = $form->get('name');
2616
                        $element->setAttributes(['class' => 'form-control']);
2617
                        $element->setOptions(['label' => 'LABEL_NAME']);
2618
                        echo $this->formLabel($element);
2619
                        echo $this->formText($element);
2620
                    ?>
16905 efrain 2621
	 	         </div>
2622
	 	     </div>
2623
	 		<div class="row">
2624
	 	         <div class="col-12 mt-3">
1 www 2625
    				<?php
2626
                        $element = $form->get('order');
2627
                        $element->setAttributes(['class' => 'form-control']);
2628
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2629
                        echo $this->formLabel($element);
2630
                        echo $this->formText($element);
2631
                    ?>
16905 efrain 2632
	 	         </div>
2633
	 	     </div>
2634
	 		<div class="row">
2635
	 	         <div class="col-12 mt-3">
1 www 2636
 
2637
                 		<?php
2638
                        $element = $form->get('file');
2639
                        $element->setAttributes(['class' => 'form-control']);
2640
                        $element->setOptions(['label' => 'LABEL_DOCUMENT']);
2641
                        $element->setAttributes(['accept' => 'application/pdf']);
2642
                        echo $this->formLabel($element);
16905 efrain 2643
                        echo $this->formFile($element);
1 www 2644
                        ?>
16905 efrain 2645
 
1 www 2646
 
16905 efrain 2647
	 	         </div>
2648
	 	     </div>
2649
	 		<div class="row">
2650
	 	         <div class="col-12 mt-3">
2651
                 		<?php
2652
                        $element = $form->get('background');
2653
                        $element->setAttributes(['class' => 'form-control']);
2654
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2655
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2656
                        echo $this->formLabel($element);
2657
                        echo $this->formFile($element);
2658
                        ?>
6656 nelberth 2659
 
16905 efrain 2660
	 	         </div>
2661
	 	     </div>
2662
	 	</div>
2663
	 	<div class="card-footer text-right">
2664
	 	      <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2665
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2666
	 	</div>
2667
	 	<?php echo $this->form()->closeTag($form); ?>
2668
	</div>
2669
 
16906 efrain 2670
	<div class="card" id="row-audio-add-box" style="display: none">
16905 efrain 2671
	 	<div class="card-header">
2672
	 		<h6 class="card-title">LABEL_ADD_AUDIO_SLIDE</h6>
2673
	 	</div>
2674
	 	<?php
1 www 2675
    	    $form = $this->formAudioAdd;
2676
    	    $form->setAttributes([
2677
    	       'method'    => 'post',
2678
    	        'name'      => 'form-slide-audio-add',
2679
    	        'id'        => 'form-slide-audio-add'
2680
    	    ]);
2681
    	    $form->prepare();
2682
    	    echo $this->form()->openTag($form);
2683
 
2684
    	    $element = $form->get('type');
2685
    	    echo $this->formHidden($element);
2686
 
2687
    	    ?>
16905 efrain 2688
	 	<div class="card-body">
2689
	 		<div class="row">
2690
	 	         <div class="col-12 mt-3">
2691
	 	         </div>
2692
	 	     </div>
2693
 
2694
	 		<div class="row">
2695
	 	         <div class="col-12 mt-3">
1 www 2696
    				<?php
2697
                        $element = $form->get('name');
2698
                        $element->setAttributes(['class' => 'form-control']);
2699
                        $element->setOptions(['label' => 'LABEL_NAME']);
2700
                        echo $this->formLabel($element);
2701
                        echo $this->formText($element);
2702
                    ?>
16905 efrain 2703
	 	         </div>
2704
	 	     </div>
2705
	 		<div class="row">
2706
	 	         <div class="col-12 mt-3">
1 www 2707
    				<?php
2708
                        $element = $form->get('order');
2709
                        $element->setAttributes(['class' => 'form-control']);
2710
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2711
                        echo $this->formLabel($element);
2712
                        echo $this->formText($element);
2713
                    ?>
16905 efrain 2714
	 	         </div>
2715
	 	     </div>
2716
	 		<div class="row">
2717
	 	         <div class="col-12 mt-3">
1 www 2718
 
2719
                 		<?php
2720
                        $element = $form->get('file');
2721
                        $element->setAttributes(['class' => 'form-control']);
2722
                        $element->setOptions(['label' => 'LABEL_AUDIO']);
2723
                        $element->setAttributes(['accept' => 'audio/x-wav, audio/mpeg']);
2724
                        echo $this->formLabel($element);
16905 efrain 2725
                        echo $this->formFile($element);
2726
 
1 www 2727
                        ?>
16905 efrain 2728
	 	         </div>
2729
	 	     </div>
2730
	 		<div class="row">
2731
	 	         <div class="col-12 mt-3">
2732
                 		<?php
2733
                        $element = $form->get('background');
2734
                        $element->setAttributes(['class' => 'form-control']);
2735
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2736
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2737
                        echo $this->formLabel($element);
2738
                        echo $this->formFile($element);
2739
                        ?>
2740
 
2741
	 	         </div>
2742
	 	     </div>
2743
	 	</div>
2744
	 	<div class="card-footer text-right">
2745
	 	      <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2746
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2747
	 	</div>
2748
	 	<?php echo $this->form()->closeTag($form); ?>
2749
	</div>
2750
 
2751
 
16906 efrain 2752
	<div class="card" id="row-audio-edit-box" style="display: none">
16905 efrain 2753
	 	<div class="card-header">
2754
	 		<h6 class="card-title">LABEL_EDIT_AUDIO_SLIDE</h6>
2755
	 	</div>
2756
	 	<?php
2757
    	 	$form = $this->formAudioEdit;
2758
    	 	$form->setAttributes([
2759
    	 	    'method'    => 'post',
2760
    	 	    'name'      => 'form-slide-audio-edit',
2761
    	 	    'id'        => 'form-slide-audio-edit'
2762
    	 	]);
1 www 2763
    	    $form->prepare();
2764
    	    echo $this->form()->openTag($form);
2765
 
2766
    	    $element = $form->get('type');
2767
    	    echo $this->formHidden($element);
2768
 
2769
    	    ?>
16905 efrain 2770
	 	<div class="card-body">
2771
	 		<div class="row">
2772
	 	         <div class="col-12 mt-3">
2773
	 	         </div>
2774
	 	     </div>
2775
 
2776
	 		<div class="row">
2777
	 	         <div class="col-12 mt-3">
1 www 2778
    				<?php
2779
                        $element = $form->get('name');
2780
                        $element->setAttributes(['class' => 'form-control']);
16905 efrain 2781
                        $element->setOptions(['label' => 'LABEL_NAME']);
1 www 2782
                        echo $this->formLabel($element);
2783
                        echo $this->formText($element);
2784
                    ?>
16905 efrain 2785
	 	         </div>
2786
	 	     </div>
2787
	 		<div class="row">
2788
	 	         <div class="col-12 mt-3">
1 www 2789
    				<?php
2790
                        $element = $form->get('order');
2791
                        $element->setAttributes(['class' => 'form-control']);
2792
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2793
                        echo $this->formLabel($element);
2794
                        echo $this->formText($element);
2795
                    ?>
16905 efrain 2796
	 	         </div>
2797
	 	     </div>
2798
	 		<div class="row">
2799
	 	         <div class="col-12 mt-3">
1 www 2800
 
2801
                 		<?php
2802
                        $element = $form->get('file');
2803
                        $element->setAttributes(['class' => 'form-control']);
2804
                        $element->setOptions(['label' => 'LABEL_AUDIO']);
2805
                        $element->setAttributes(['accept' => 'audio/x-wav, audio/mpeg']);
2806
                        echo $this->formLabel($element);
16905 efrain 2807
                        echo $this->formFile($element);
2808
 
1 www 2809
                        ?>
16905 efrain 2810
	 	         </div>
2811
	 	     </div>
2812
	 		<div class="row">
2813
	 	         <div class="col-12 mt-3">
2814
                 		<?php
2815
                        $element = $form->get('background');
2816
                        $element->setAttributes(['class' => 'form-control']);
2817
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2818
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2819
                        echo $this->formLabel($element);
2820
                        echo $this->formFile($element);
2821
                        ?>
2822
 
2823
	 	         </div>
2824
	 	     </div>
2825
	 	</div>
2826
	 	<div class="card-footer text-right">
2827
	 	      <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2828
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2829
	 	</div>
2830
	 	<?php echo $this->form()->closeTag($form); ?>
2831
	</div>
2832
 
2833
 
16906 efrain 2834
	<div class="card" id="row-quizz-add-box" style="display: none">
16905 efrain 2835
	 	<div class="card-header">
2836
	 		<h6 class="card-title">LABEL_ADD_QUIZ_SLIDE</h6>
2837
	 	</div>
2838
	 	<?php
1 www 2839
    	    $form = $this->formQuizzAdd;
2840
    	    $form->setAttributes([
2841
    	       'method'    => 'post',
2842
    	        'name'      => 'form-slide-quizz-add',
2843
    	        'id'        => 'form-slide-quizz-add'
2844
    	    ]);
2845
    	    $form->prepare();
2846
    	    echo $this->form()->openTag($form);
2847
 
2848
    	    $element = $form->get('type');
2849
    	    echo $this->formHidden($element);
2850
 
2851
    	    ?>
16905 efrain 2852
	 	<div class="card-body">
1 www 2853
 
16905 efrain 2854
	 		<div class="row">
2855
	 	         <div class="col-12 mt-3">
1 www 2856
    				<?php
2857
                        $element = $form->get('name');
2858
                        $element->setAttributes(['class' => 'form-control']);
2859
                        $element->setOptions(['label' => 'LABEL_NAME']);
2860
                        echo $this->formLabel($element);
2861
                        echo $this->formText($element);
2862
                    ?>
16905 efrain 2863
	 	         </div>
2864
	 	     </div>
2865
	 		<div class="row">
2866
	 	         <div class="col-12 mt-3">
1 www 2867
    				<?php
2868
                        $element = $form->get('order');
2869
                        $element->setAttributes(['class' => 'form-control']);
2870
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2871
                        echo $this->formLabel($element);
2872
                        echo $this->formText($element);
2873
                    ?>
16905 efrain 2874
	 	         </div>
2875
	 	     </div>
6657 nelberth 2876
 
16905 efrain 2877
	 		<div class="row">
2878
	 	         <div class="col-12 mt-3">
1 www 2879
    				<?php
2880
                        $element = $form->get('quiz_id');
2881
                        $element->setAttributes(['class' => 'form-control']);
2882
                        $element->setOptions(['label' => 'LABEL_QUIZ']);
2883
                        echo $this->formLabel($element);
2884
                        echo $this->formSelect($element);
2885
                    ?>
16905 efrain 2886
	 	         </div>
2887
	 	     </div>
2888
 
2889
			<div class="row">
2890
	 	         <div class="col-12 mt-3">
2891
                 		<?php
2892
                        $element = $form->get('background');
2893
                        $element->setAttributes(['class' => 'form-control']);
2894
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2895
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2896
                        echo $this->formLabel($element);
2897
                        echo $this->formFile($element);
2898
                        ?>
2899
 
2900
	 	         </div>
2901
	 	     </div>
2902
	 	</div>
2903
	 	<div class="card-footer text-right">
2904
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2905
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2906
	 	</div>
2907
	 	<?php echo $this->form()->closeTag($form); ?>
2908
	</div>
2909
 
16906 efrain 2910
	<div class="card" id="row-quizz-edit-box" style="display: none">
16905 efrain 2911
	 	<div class="card-header">
2912
	 		<h6 class="card-title">LABEL_EDIT_QUIZ_SLIDE</h6>
2913
	 	</div>
2914
	 	<?php
2915
    	 	$form = $this->formQuizzEdit;
2916
    	 	$form->setAttributes([
2917
    	 	    'method'    => 'post',
2918
    	 	    'name'      => 'form-slide-quizz-edit',
2919
    	 	    'id'        => 'form-slide-quizz-edit'
2920
    	 	]);
1 www 2921
    	    $form->prepare();
2922
    	    echo $this->form()->openTag($form);
2923
 
2924
    	    $element = $form->get('type');
2925
    	    echo $this->formHidden($element);
2926
 
2927
    	    ?>
16905 efrain 2928
	 	<div class="card-body">
1 www 2929
 
16905 efrain 2930
	 		<div class="row">
2931
	 	         <div class="col-12 mt-3">
1 www 2932
    				<?php
2933
                        $element = $form->get('name');
2934
                        $element->setAttributes(['class' => 'form-control']);
2935
                        $element->setOptions(['label' => 'LABEL_NAME']);
2936
                        echo $this->formLabel($element);
2937
                        echo $this->formText($element);
2938
                    ?>
16905 efrain 2939
	 	         </div>
2940
	 	     </div>
2941
	 		<div class="row">
2942
	 	         <div class="col-12 mt-3">
1 www 2943
    				<?php
2944
                        $element = $form->get('order');
2945
                        $element->setAttributes(['class' => 'form-control']);
2946
                        $element->setOptions(['label' => 'LABEL_ORDER']);
2947
                        echo $this->formLabel($element);
2948
                        echo $this->formText($element);
2949
                    ?>
16905 efrain 2950
	 	         </div>
2951
	 	     </div>
6657 nelberth 2952
 
16905 efrain 2953
	 		<div class="row">
2954
	 	         <div class="col-12 mt-3">
1 www 2955
    				<?php
2956
                        $element = $form->get('quiz_id');
2957
                        $element->setAttributes(['class' => 'form-control']);
2958
                        $element->setOptions(['label' => 'LABEL_QUIZ']);
2959
                        echo $this->formLabel($element);
2960
                        echo $this->formSelect($element);
2961
                    ?>
16905 efrain 2962
	 	         </div>
2963
	 	     </div>
2964
 
2965
			<div class="row">
2966
	 	         <div class="col-12 mt-3">
2967
                 		<?php
2968
                        $element = $form->get('background');
2969
                        $element->setAttributes(['class' => 'form-control']);
2970
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
2971
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
2972
                        echo $this->formLabel($element);
2973
                        echo $this->formFile($element);
2974
                        ?>
2975
 
2976
	 	         </div>
2977
	 	     </div>
2978
	 	</div>
2979
	 	<div class="card-footer text-right">
2980
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2981
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2982
	 	</div>
2983
	 	<?php echo $this->form()->closeTag($form); ?>
2984
	</div>
2985
</div>
1 www 2986
 
16905 efrain 2987
 
2988
 
1 www 2989
 
2990
 
2991
 
2992
<!-- The Modal -->
16906 efrain 2993
<div class="modal" id="modal-play-video-box" >
1 www 2994
	<div class="modal-dialog ">
2995
    	<div class="modal-content">
2996
 
2997
            <!-- Modal Header -->
2998
      		<div class="modal-header">
16845 efrain 2999
        		<h6 class="modal-title">LABEL_PLAY_VIDEO</h6>
16822 efrain 3000
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3001
      		</div>
3002
 
3003
            <!-- Modal body -->
3004
            <div class="modal-body">
3005
				<video src=""  style="width: 300px; height: auto" controls preload="false" autoplay="false"  poster="" id="microlearning-play-video"></video>
3006
      		</div>
3007
 
3008
            <!-- Modal footer -->
16891 efrain 3009
      		<div class="modal-footer text-right">
16822 efrain 3010
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3011
          	</div>
3012
         </div>
3013
	</div>
3014
</div>
3015
 
3016
 
3017
 
3018
 
3019
 
3020
<!-- The Modal -->
16906 efrain 3021
<div class="modal" id="modal-play-audio-box" >
1 www 3022
	<div class="modal-dialog ">
3023
    	<div class="modal-content">
3024
 
3025
            <!-- Modal Header -->
3026
      		<div class="modal-header">
16845 efrain 3027
        		<h6 class="modal-title">LABEL_PLAY_AUDIO</h6>
16822 efrain 3028
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3029
      		</div>
3030
 
3031
            <!-- Modal body -->
3032
            <div class="modal-body">
3033
				<audio src="" controls autoplay="false"  id="microlearning-play-audio" >
3034
                  Your browser does not support the <code>audio</code> element.
3035
                </audio>
3036
      		</div>
3037
 
3038
            <!-- Modal footer -->
16891 efrain 3039
      		<div class="modal-footer text-right">
16822 efrain 3040
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3041
          	</div>
3042
         </div>
3043
	</div>
3044
</div>
3045
 
3046
 
3047
<!-- The Modal -->
16906 efrain 3048
<div class="modal" id="modal-view-image-box">
1 www 3049
	<div class="modal-dialog ">
3050
    	<div class="modal-content">
3051
 
3052
            <!-- Modal Header -->
3053
      		<div class="modal-header">
16845 efrain 3054
        		<h6 class="modal-title">LABEL_IMAGE</h6>
16822 efrain 3055
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3056
      		</div>
3057
 
3058
            <!-- Modal body -->
3059
            <div class="modal-body text-center">
3060
				<img src="" class="img img-responsive" style="width: 300px; height: auto" id="image-view" />
3061
      		</div>
3062
 
3063
            <!-- Modal footer -->
16891 efrain 3064
      		<div class="modal-footer text-right">
16822 efrain 3065
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3066
          	</div>
3067
         </div>
3068
	</div>
3069
</div>
3070
 
3071
 
3072
<!-- The Modal -->
16906 efrain 3073
<div class="modal" id="modal-view-document-box">
1 www 3074
	<div class="modal-dialog ">
3075
    	<div class="modal-content">
3076
 
3077
            <!-- Modal Header -->
3078
      		<div class="modal-header">
16845 efrain 3079
        		<h6 class="modal-title">LABEL_DOCUMENT</h6>
16822 efrain 3080
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3081
      		</div>
3082
 
3083
            <!-- Modal body -->
3084
            <div class="modal-body text-center">
3085
            	<iframe id="document-view" style="width: 450px; height: 300px; scroll: auto">
3086
 
3087
            	</iframe>
3088
       	</div>
3089
 
3090
            <!-- Modal footer -->
16891 efrain 3091
      		<div class="modal-footer text-right">
16822 efrain 3092
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3093
          	</div>
3094
         </div>
3095
	</div>
3096
</div>
3097
 
3098
 
3099
<!-- The Modal -->
16906 efrain 3100
<div class="modal" id="modal-view-text-box">
1 www 3101
	<div class="modal-dialog modal-xl">
3102
    	<div class="modal-content">
3103
 
3104
            <!-- Modal Header -->
3105
      		<div class="modal-header">
16845 efrain 3106
        		<h6 class="modal-title">LABEL_TEXT</h6>
16822 efrain 3107
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3108
      		</div>
3109
 
3110
            <!-- Modal body -->
3111
            <div class="modal-body" >
3112
            	<div id="document-text" style="width: 100%; height: 300px; scroll: auto; overflow: auto;">
3113
 
3114
 
3115
            	</div>
3116
 
3117
       	</div>
3118
 
3119
            <!-- Modal footer -->
16891 efrain 3120
      		<div class="modal-footer text-right">
16822 efrain 3121
        		 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
1 www 3122
          	</div>
3123
         </div>
3124
	</div>
3125
</div>
3126
 
3127
 
3128
<!-- The Modal -->
16906 efrain 3129
<div class="modal" id="modal-add-capsule-type-box">
1 www 3130
	<div class="modal-dialog ">
3131
    	<div class="modal-content">
3132
 
3133
            <!-- Modal Header -->
3134
      		<div class="modal-header">
12065 nelberth 3135
        		<h5 class="modal-title">LABEL_ADD_CAPSULE_SELECT_TYPE</h5>
16822 efrain 3136
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 3137
      		</div>
3138
 
3139
            <!-- Modal body -->
3140
            <div class="modal-body">
12054 nelberth 3141
                <div class="d-flex w-100 flex-column">
12064 nelberth 3142
                    <div class="row mb-4 mt-4">
12066 nelberth 3143
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary btn-sm  btn-add-image"><i class="fa fa-picture-o mr-2" aria-hidden="true"></i> Imagen </button></div>
12067 nelberth 3144
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary btn-sm   btn-add-text"><i class="fa fa-file-text-o mr-2" aria-hidden="true"></i> Texto </button></div>
3145
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary  btn-sm btn-add-video"><i class="fa fa-video-camera mr-2" aria-hidden="true"></i> Video </button></div>
12057 nelberth 3146
 
3147
 
12053 nelberth 3148
                    </div>
12061 nelberth 3149
                    <div class="row mb-4">
12069 nelberth 3150
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary btn-sm btn-add-document"><i class="fa fa-file mr-2" aria-hidden="true"></i> Documento </button></div>
12067 nelberth 3151
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary  btn-sm btn-add-audio"><i class="fa fa-music mr-2" aria-hidden="true"></i> Audio </button></div>
3152
                        <div class="col-4 d-flex justify-content-center"><button type="button" class="btn btn-primary  btn-sm btn-add-quizz"><i class="fa fa-question mr-2" aria-hidden="true"></i> Cuestionario </button></div>
12061 nelberth 3153
 
3154
 
3155
                    </div>
12053 nelberth 3156
                    <div class='d-flex justify-content-between'>
12061 nelberth 3157
 
3158
 
3159
 
12053 nelberth 3160
                    </div>
3161
                </div>
3162
 
3163
 
3164
 
3165
 
1 www 3166
      		</div>
3167
 
3168
            <!-- Modal footer -->
16891 efrain 3169
      		<div class="modal-footer text-right">
12068 nelberth 3170
        		<button type="button" class="btn btn-danger btn-sm" data-dismiss="modal">LABEL_CLOSE</button>
1 www 3171
          	</div>
3172
         </div>
3173
	</div>
3174
</div>
3175
 
3176
 
3177
 
3178
 
3179