Proyectos de Subversion LeadersLinked - Backend

Rev

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