Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
14934 stevensc 1
<?php
1 www 2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
 
8
$routeAdd       = $this->url('microlearning/content/topics/add');
9
$routeDatatable = $this->url('microlearning/content/topics');
10
 
11
$allowAdd               = $acl->isAllowed($roleName, 'microlearning/content/topics/add') ? 1 : 0;
12
$allowEdit              = $acl->isAllowed($roleName, 'microlearning/content/topics/edit') ? 1 : 0;
13
$allowDelete            = $acl->isAllowed($roleName, 'microlearning/content/topics/delete') ? 1 : 0;
14
 
15
 
16822 efrain 16
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
17
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
1 www 18
 
16822 efrain 19
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
1 www 20
 
21
 
16822 efrain 22
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/css/fileinput.min.css'));
23
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.css'));
1 www 24
 
16843 efrain 25
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/piexif.js'));
26
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/sortable.js'));
16822 efrain 27
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/fileinput.js'));
28
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/locales/es.js'));
29
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/fas/theme.js'));
30
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.js'));
1 www 31
 
32
 
33
 
16929 efrain 34
 
35
 
36
 
16822 efrain 37
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
38
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
16905 efrain 39
 
16822 efrain 40
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
41
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
42
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
43
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
1 www 44
 
45
 
16822 efrain 46
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
47
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
1 www 48
 
49
 
50
 
51
 
52
 
16822 efrain 53
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.js'));
54
 
55
 
1 www 56
$status_active = \LeadersLinked\Model\Degree::STATUS_ACTIVE;
57
 
4697 nelberth 58
 
59
 
4737 nelberth 60
 
1 www 61
$this->inlineScript()->captureStart();
62
echo <<<JS
63
    jQuery( document ).ready(function( $ ) {
64
 
65
        $.validator.setDefaults({
66
            debug: true,
67
            highlight: function(element) {
68
                $(element).addClass('is-invalid');
69
            },
70
            unhighlight: function(element) {
71
                $(element).removeClass('is-invalid');
72
            },
73
            errorElement: 'span',
74
            errorClass: 'error invalid-feedback',
75
            errorPlacement: function(error, element) {
76
                if(element.parent('.btn-file').length) {
77
                    error.insertAfter(element.parent().parent());
78
                } else if(element.parent('.toggle').length) {
79
                    error.insertAfter(element.parent().parent());
80
                } else {
81
                    error.insertAfter(element.parent());
82
                }
83
            }
84
        });
85
 
86
 
87
 
88
 
89
 
90
 
91
        var allowEdit   = $allowEdit;
92
        var allowDelete = $allowDelete;
93
 
94
        var gridTable = $('#gridTable').dataTable( {
95
            'processing': true,
96
            'serverSide': true,
97
            'searching': true,
98
            'order': [[ 0, 'asc' ]],
99
            'ordering':  true,
100
            'ordenable' : true,
101
            'responsive': true,
102
            'select' : false,
103
        	'paging': true,
104
            'pagingType': 'simple_numbers',
105
    		'ajax': {
106
    			'url' : '$routeDatatable',
107
    			'type' : 'get',
108
                'beforeSend': function (request) {
109
                  NProgress.start();
110
                },
111
                'dataFilter': function(response) {
112
                    var response = jQuery.parseJSON( response );
113
 
114
                    var json                = {};
115
                    json.recordsTotal       = 0;
116
                    json.recordsFiltered    = 0;
117
                    json.data               = [];
118
 
119
 
120
                    if(response.success) {
121
                        json.recordsTotal       = response.data.total;
122
                        json.recordsFiltered    = response.data.total;
123
                        json.data               = response.data.items;
124
                    } else {
125
                        $.fn.showError(response.data)
126
                    }
127
 
128
                    return JSON.stringify( json );
129
                }
130
    		},
131
            'language' : {
132
                'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
133
                'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
134
                'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
135
                'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
136
                'sInfo':           'LABEL_DATATABLE_SINFO',
137
                'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
138
                'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
139
                'sInfoPostFix':    '',
140
                'sSearch':         'LABEL_DATATABLE_SSEARCH',
141
                'sUrl':            '',
142
                'sInfoThousands':  ',',
143
                'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
144
                'oPaginate': {
145
                    'sFirst':    'LABEL_DATATABLE_SFIRST',
146
                    'sLast':     'LABEL_DATATABLE_SLAST',
147
                    'sNext':     'LABEL_DATATABLE_SNEXT',
148
                    'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
149
                },
150
                'oAria': {
151
                    'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
152
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
153
                },
154
            },
155
            'drawCallback': function( settings ) {
156
                NProgress.done();
16822 efrain 157
 
1 www 158
            },
159
            'aoColumns': [
160
                { 'mDataProp': 'name' },
161
                { 'mDataProp': 'status' },
162
                { 'mDataProp': 'image' },
163
                { 'mDataProp': 'actions' },
164
    	    ],
165
            'columnDefs': [
166
                {
167
                    'targets': 0,
168
                    'className' : 'text-vertical-middle',
169
                },
170
                {
171
                    'targets': -2,
172
                    'orderable': false,
173
                    'render' : function ( data, type, row ) {
174
                        s = '&nbsp;';
175
 
176
                        if( data )  {
177
                            s = s + '&nbsp;<img class="btn-view-image-app" data-href="' + data + '" data-toggle="tooltip" src="'+data+'" title="LABEL_VIEW" style="width: 40px; object-fit: cover; height: 40px;" /> '
178
                        }  else {
179
                            s = s + '&nbsp;LABEL_IMAGE: <br>';
180
                        }
181
 
182
 
183
                        return s;
184
                    }
185
                },
186
 
187
 
188
                {
189
                    'targets': -1,
190
                    'orderable': false,
191
                    'render' : function ( data, type, row ) {
192
                        s = '';
193
 
194
                        if(allowEdit && data['link_edit']  ) {
16906 efrain 195
                            s = s + '<button class="btn btn-info btn-sm btn-edit" data-href="' + data['link_edit']+ '" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pen"></i> LABEL_EDIT </button>&nbsp;';
1 www 196
                        }
197
                        if(allowDelete && data['link_delete']  ) {
198
                            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> LABEL_DELETE </button>&nbsp;';
199
                        }
200
                        return s;
201
                    }
202
                }
203
              ],
204
        });
205
 
206
 
16905 efrain 207
    var validatorAdd = $('#form-add').validate({
1 www 208
        debug: true,
209
        onclick: false,
210
        onkeyup: false,
211
        ignore: [],
212
        rules: {
213
            'name': {
214
                required: true,
215
                maxlength: 128,
216
            },
217
            'description': {
218
                updateCkeditor:function() {
219
                        CKEDITOR.instances.description_add.updateElement();
220
                },
221
                required: true
222
            },
223
           'file': {
224
                required: true,
16891 efrain 225
                extension: 'jpg|jpeg|png',
226
                accept: 'image/jpg,image/jpeg,image/png'
1 www 227
            },
228
            'order' : {
229
                required: true,
230
                digits: true,
231
                min: 1,
232
                max: 250
233
            },
234
            'status' : {
235
                required: true,
236
            },
237
        },
238
        submitHandler: function(form)
239
        {
240
            var formdata = false;
241
            if (window.FormData){
242
                formdata = new FormData(form); //form[0]);
243
            }
5709 nelberth 244
 
245
 
246
			$('.info_noticia').prop('disabled', true);
5703 nelberth 247
			NProgress.start();
1 www 248
            $.ajax({
249
                'dataType'  : 'json',
250
                'accept'    : 'application/json',
251
                'method'    : 'post',
16905 efrain 252
                'url'       :  $('#form-add').attr('action'),
1 www 253
                'data'      :  formdata,
254
                'processData': false,
255
                'contentType': false,
256
            }).done(function(response) {
5542 nelberth 257
				console.log(response)
258
				if(response['success']) {
1 www 259
                    $.fn.showSuccess(response['data']);
16891 efrain 260
 
261
                    $('#row-add').hide();
262
                    $('#row-edit').hide();
263
                    $('#row-listing').show();
264
 
265
 
1 www 266
                    gridTable.api().ajax.reload(null, false);
267
                } else {
268
                    validatorAdd.resetForm();
269
                    if(jQuery.type(response['data']) == 'string') {
270
                        $.fn.showError(response['data']);
271
                    } else  {
272
                        $.each(response['data'], function( fieldname, errors ) {
16905 efrain 273
                            $.fn.showFormErrorValidator('#form-add #' + fieldname, errors);
1 www 274
                        });
275
                    }
276
                }
277
            }).fail(function( jqXHR, textStatus, errorThrown) {
5709 nelberth 278
 
16891 efrain 279
 
1 www 280
                $.fn.showError(textStatus);
281
            }).always(function() {
16891 efrain 282
 
1 www 283
                NProgress.done();
284
            });
285
            return false;
286
        },
287
        invalidHandler: function(form, validator) {
288
 
289
        }
290
    });
291
 
16905 efrain 292
    var validatorEdit  = $('#form-edit').validate({
1 www 293
        debug: true,
294
        onclick: false,
295
        onkeyup: false,
296
        ignore: [],
297
        rules: {
298
            'name': {
299
                required: true,
300
                maxlength: 128,
301
            },
302
            'description': {
303
                updateCkeditor:function() {
304
                        CKEDITOR.instances.description_edit.updateElement();
305
                },
306
                required: true
307
            },
308
           'file': {
16945 efrain 309
                required: false,
16891 efrain 310
                extension: 'jpg|jpeg|png',
311
                accept: 'image/jpg,image/jpeg,image/png'
1 www 312
            },
313
            'order' : {
314
                required: true,
315
                digits: true,
316
                min: 1,
317
                max: 250
318
            },
319
            'status' : {
320
                required: true,
321
            },
322
 
323
        },
324
        submitHandler: function(form)
325
        {
326
            var formdata = false;
327
            if (window.FormData){
328
                formdata = new FormData(form); //form[0]);
329
            }
330
 
16891 efrain 331
 
5982 nelberth 332
			NProgress.start();
1 www 333
            $.ajax({
334
                'dataType'  : 'json',
335
                'accept'    : 'application/json',
336
                'method'    : 'post',
16905 efrain 337
                'url'       :  $('#form-edit').attr('action'),
1 www 338
                'data'      :  formdata,
339
                'processData': false,
340
                'contentType': false,
341
            }).done(function(response) {
342
                if(response['success']) {
343
                    $.fn.showSuccess(response['data']);
344
 
16891 efrain 345
 
1 www 346
                    gridTable.api().ajax.reload(null, false);
16891 efrain 347
 
348
 
349
                    $('#row-add').hide();
350
                    $('#row-edit').hide();
351
                    $('#row-listing').show();
352
 
1 www 353
                } else {
16891 efrain 354
                    validatorEdit.resetForm();
1 www 355
                    if(jQuery.type(response['data']) == 'string') {
356
                        $.fn.showError(response['data']);
357
                    } else  {
358
                        $.each(response['data'], function( fieldname, errors ) {
16905 efrain 359
                            $.fn.showFormErrorValidator('#form-edit #' + fieldname, errors);
1 www 360
                        });
361
                    }
362
                }
363
            }).fail(function( jqXHR, textStatus, errorThrown) {
364
                $.fn.showError(textStatus);
365
            }).always(function() {
7060 nelberth 366
 
16891 efrain 367
 
1 www 368
                NProgress.done();
369
            });
370
            return false;
371
        },
372
        invalidHandler: function(form, validator) {
373
 
374
        }
375
    });
376
 
16822 efrain 377
    $('body').on('click', 'button.btn-delete', function(e) {
378
        e.preventDefault();
379
        var action = $(this).data('href');
1 www 380
 
16822 efrain 381
 
382
          swal.fire({
383
            title: 'LABEL_ARE_YOU_SURE',
384
            icon: 'question',
385
            cancelButtonText: 'LABEL_NO',
386
            showCancelButton: true,
387
            confirmButtonText: 'LABEL_YES'
388
          }).then((result) => {
389
            if (result.isConfirmed) {
390
 
391
                    NProgress.start();
392
                    $.ajax({
393
                        'dataType'  : 'json',
394
                        'accept'    : 'application/json',
395
                        'method'    : 'post',
396
                        'url'       :  action,
397
                    }).done(function(response) {
398
                        if(response['success']) {
399
                            $.fn.showSuccess(response['data']);
400
                            gridTable.api().ajax.reload(null, false);
401
                        } else {
402
                            $.fn.showError(response['data']);
403
                        }
404
                    }).fail(function( jqXHR, textStatus, errorThrown) {
405
                        $.fn.showError(textStatus);
406
                    }).always(function() {
407
                        NProgress.done();
408
                    });
409
                }
410
           });
411
        });
412
 
1 www 413
 
414
        $('body').on('click', '.btn-view-image-app', function(e) {
415
            e.preventDefault();
416
 
417
            $('#image-app').attr('src', $(this).data('href'));
16891 efrain 418
            $('#modalPreviewImage').modal('show');
1 www 419
            return false;
420
        });
421
 
16905 efrain 422
        $('#form-add #order').inputNumberFormat({decimal: 0});
5741 nelberth 423
 
1 www 424
 
425
 
426
        $('body').on('click', 'button.btn-add', function(e) {
427
            e.preventDefault();
6015 nelberth 428
 
16905 efrain 429
            $('#form-add #name').val('');
430
            $('#form-add #order').val('1');
431
            $('#form-add #name').val('');
1 www 432
 
16905 efrain 433
            $('#form-add #status').val('');
434
            $('#form-add #file').fileinput('reset');
435
            $('#form-add #file').val('');
16891 efrain 436
 
1 www 437
 
438
 
439
            CKEDITOR.instances.description_add.setData('');
440
            validatorAdd.resetForm();
16891 efrain 441
 
442
            $('#row-edit').hide();
443
            $('#row-listing').hide();
444
            $('#row-add').show();
1 www 445
 
16891 efrain 446
 
5646 nelberth 447
            return false;
448
        });
449
 
16891 efrain 450
 
1 www 451
 
16905 efrain 452
        $('#form-edit #order').inputNumberFormat({decimal: 0});
1 www 453
 
16905 efrain 454
          $('#form-add #file').fileinput({
16891 efrain 455
                theme: 'fa',
456
                language: 'es',
457
                showUpload: false,
458
                dropZoneEnabled: false,
459
                maxFileCount: 1,
16928 efrain 460
                msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16891 efrain 461
                allowedFileExtensions: ['jpeg', 'jpg', 'png'],
462
            });
463
 
16905 efrain 464
            $('#form-edit #file').fileinput({
16891 efrain 465
                theme: 'fa',
466
                language: 'es',
467
                showUpload: false,
468
                dropZoneEnabled: false,
469
                maxFileCount: 1,
16928 efrain 470
                msgPlaceholder:  'LABEL_RECOMMENDED_SIZE $image_size',
16891 efrain 471
                allowedFileExtensions: ['jpeg', 'jpg', 'png'],
472
            });
8591 nelberth 473
 
1 www 474
        $('body').on('click', 'button.btn-edit', function(e) {
475
            e.preventDefault();
6015 nelberth 476
 
1 www 477
            var url = $(this).data('href');
5900 nelberth 478
			NProgress.start();
1 www 479
            $.ajax({
480
                'dataType'  : 'json',
481
                'accept'    : 'application/json',
482
                'method'    : 'get',
483
                'url'       :  url,
484
            }).done(function(response) {
485
                if(response['success']) {
5913 nelberth 486
					console.log(response['data'])
16905 efrain 487
                    $('#form-edit')[0].reset();
1 www 488
 
16905 efrain 489
                    $('#form-edit').attr('action',url);
490
                    $('#form-edit #name').val(response['data']['name']);
491
                    $('#form-edit #order').val(response['data']['order']);
1 www 492
 
16905 efrain 493
					$('#form-edit #status').val(response['data']['status']);
494
                    $('#form-edit #file').fileinput('reset');
495
                    $('#form-edit #file').val('');
1 www 496
 
497
                    CKEDITOR.instances.description_edit.setData(response['data']['description']);
498
                    validatorEdit.resetForm();
16891 efrain 499
 
500
                    $('#row-add').hide();
501
                    $('#row-listing').hide();
502
                    $('#row-edit').show();
503
 
1 www 504
                } else {
505
                    validatorEdit.resetForm();
506
                    if(jQuery.type(response['data']) == 'string') {
507
                        $.fn.showError(response['data']);
508
                    } else  {
509
                        $.each(response['data'], function( fieldname, errors ) {
16905 efrain 510
                            $.fn.showFormErrorValidator('#form-edit #' + fieldname, errors);
1 www 511
                        });
512
                    }
513
                }
514
            }).fail(function( jqXHR, textStatus, errorThrown) {
515
                $.fn.showError(textStatus);
516
            }).always(function() {
517
                NProgress.done();
518
            });
519
        });
520
 
521
        $('body').on('click', 'button.btn-cancel', function(e) {
522
            e.preventDefault();
16891 efrain 523
            $('#row-add').hide();
524
            $('#row-edit').hide();
525
            $('#row-listing').show();
526
 
1 www 527
        });
528
 
529
        $('body').on('click', 'button.btn-refresh', function(e) {
530
            e.preventDefault();
531
            gridTable.api().ajax.reload(null, false);
532
        });
533
 
8290 stevensc 534
        CKEDITOR.replace('description_add', {
535
			toolbar: [
536
                    { name: 'editing', items: ['Scayt'] },
537
                    { name: 'links', items: ['Link', 'Unlink'] },
538
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
539
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
540
                    '/',
541
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
542
                    { name: 'styles', items: ['Styles', 'Format'] },
543
                    { name: 'tools', items: ['Maximize'] }
544
                ],
545
                removePlugins: 'elementspath,Anchor',
546
                heigth: 100
547
		});
548
        CKEDITOR.replace('description_edit', {
549
			toolbar: [
550
                    { name: 'editing', items: ['Scayt'] },
551
                    { name: 'links', items: ['Link', 'Unlink'] },
552
                    { name: 'paragraph', items: ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'] },
553
                    { name: 'basicstyles', items: ['Bold', 'Italic', 'Strike', 'RemoveFormat'] },
554
                    '/',
555
                    { name: 'insert', items: ['Image', 'Table', 'HorizontalRule', 'SpecialChar'] },
556
                    { name: 'styles', items: ['Styles', 'Format'] },
557
                    { name: 'tools', items: ['Maximize'] }
558
                ],
559
                removePlugins: 'elementspath,Anchor',
560
                heigth: 100
561
		});
1 www 562
 
4798 nelberth 563
 
564
 
5202 nelberth 565
 
1 www 566
    });
567
JS;
568
$this->inlineScript()->captureEnd();
569
?>
570
 
16891 efrain 571
<div class="container">
572
	<div class="card" id="row-listing">
573
	 	<div class="card-header">
574
	 		<h6 class="card-title">LABEL_TOPICS</h6>
575
	 	</div>
576
	 	<div class="card-body">
577
	 		<div class="row">
578
	 	         <div class="col-12 mt-3">
579
 
580
	 	         						<table id="gridTable" class="table   table-bordered">
14934 stevensc 581
							<thead>
582
								<tr>
583
									<th>LABEL_NAME</th>
584
									<th>LABEL_STATUS</th>
585
									<th>LABEL_DETAILS</th>
586
									<th>LABEL_ACTIONS</th>
587
								</tr>
588
							</thead>
589
							<tbody>
590
							</tbody>
591
						</table>
16891 efrain 592
 
593
	 	         </div>
594
	 	     </div>
595
	 	</div>
596
	 	<div class="card-footer text-right">
597
			<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
598
			<?php if ($allowAdd) : ?>
599
			<button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
600
			<?php endif; ?>
601
	 	</div>
14934 stevensc 602
	</div>
16891 efrain 603
 
604
	<div class="card" id="row-add" style="display:none">
605
	 	<div class="card-header">
606
	 		<h6 class="card-title">LABEL_ADD_TOPIC</h6>
607
	 	</div>
608
	 	<?php
14934 stevensc 609
		$form = $this->formAdd;
610
		$form->setAttributes([
611
			'method'  => 'post',
612
			'action'  => $routeAdd,
16905 efrain 613
			'name'    => 'form-add',
614
			'id'      => 'form-add',
14934 stevensc 615
		]);
5678 nelberth 616
 
14934 stevensc 617
		$form->prepare();
618
		echo $this->form()->openTag($form);
619
		?>
16891 efrain 620
	 	<div class="card-body">
621
			<div class="row">
622
    	 		<div class="col-12 mt-3">
623
    			<?php
624
    			$element = $form->get('name');
625
 
626
    			$element->setAttributes(['class' => 'form-control']);
627
    			$element->setOptions(['label' => 'LABEL_NAME']);
628
    			echo $this->formLabel($element);
629
    			echo $this->formText($element);
630
    			?>
631
    			</div>
632
    		</div>
633
 
634
 
635
             <div class="row">
636
    	 	         	<div class="col-12 mt-3">
637
    			<?php
638
    			$element = $form->get('description');
639
    			$element->setAttributes(['id' => 'description_add', 'class' => 'form-control', 'rows' => '2', 'class' => 'form-control']);
640
    			$element->setOptions(['label' => 'LABEL_DESCRIPTION']);
641
    			echo $this->formLabel($element);
642
    			echo $this->formTextArea($element);
643
    			?>
644
    			</div>
645
    		</div>
646
 
647
             <div class="row">
648
    	 	         	<div class="col-12 mt-3">
649
    			<?php
650
    			$element = $form->get('order');
651
    			$element->setAttributes(['class' => 'form-control']);
652
    			$element->setOptions(['label' => 'LABEL_ORDER']);
653
    			echo $this->formLabel($element);
654
    			echo $this->formText($element);
655
    			?>
656
    			</div>
657
    		</div>
658
 
659
 
660
 
661
             <div class="row">
662
    	 	         	<div class="col-12 mt-3">
663
    			<?php
664
    			$element = $form->get('status');
665
    			$element->setAttributes(['class' => 'form-control']);
666
    			$element->setOptions(['label' => 'LABEL_STATUS']);
667
    			echo $this->formLabel($element);
668
    			echo $this->formSelect($element);
669
 
670
    			?>
671
    			</div>
672
    		</div>
673
 
674
 
675
             <div class="row">
676
    	 		<div class="col-12 mt-3">
677
                            <?php
678
                            $element = $form->get('file');
679
                            $element->setOptions(['label' => 'LABEL_IMAGE']);
680
                            $element->setAttributes(['class' => 'form-control']);
16905 efrain 681
                            $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
16891 efrain 682
                            echo $this->formLabel($element);
683
                            echo $this->formFile($element);
684
                            ?>
685
                	</div>
686
         	</div>
687
	 	</div>
688
	 	<div class="card-footer text-right">
689
	 	     <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
690
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
691
	 	</div>
692
	 	<?php echo $this->form()->closeTag($form); ?>
14934 stevensc 693
	</div>
16891 efrain 694
 
695
 
696
	<div class="card" id="row-edit" style="display:none">
697
 
698
	 	<div class="card-header">
699
	 		<h6 class="card-title">LABEL_EDIT_TOPIC</h6>
700
	 	</div>
701
	 	<?php
14934 stevensc 702
		$form = $this->formEdit;
703
		$form->setAttributes([
704
			'method'    => 'post',
16905 efrain 705
			'name'      => 'form-edit',
706
			'id'        => 'form-edit'
14934 stevensc 707
		]);
5895 nelberth 708
 
14934 stevensc 709
		$form->prepare();
710
		echo $this->form()->openTag($form);
711
		?>
16891 efrain 712
 
713
	 	<div class="card-body">
1 www 714
 
16891 efrain 715
  <div class="row">
716
	 	         	<div class="col-12 mt-3">
14934 stevensc 717
			<?php
718
			$element = $form->get('description');
719
			$element->setAttributes(['id' => 'description_edit', 'rows' => '2', 'class' => 'form-control',   'class' => 'form-control']);
720
			$element->setOptions(['label' => 'LABEL_DESCRIPTION']);
721
			echo $this->formLabel($element);
722
			echo $this->formTextArea($element);
723
			?>
16891 efrain 724
			</div>
14934 stevensc 725
		</div>
16891 efrain 726
 
727
         <div class="row">
728
	 	         	<div class="col-12 mt-3">
14934 stevensc 729
			<?php
730
			$element = $form->get('order');
731
			$element->setAttributes(['class' => 'form-control']);
732
			$element->setOptions(['label' => 'LABEL_ORDER']);
733
			echo $this->formLabel($element);
734
			echo $this->formText($element);
735
			?>
16891 efrain 736
			</div>
14934 stevensc 737
		</div>
1 www 738
 
14934 stevensc 739
 
16891 efrain 740
 
741
         <div class="row">
742
	 	         	<div class="col-12 mt-3">
14934 stevensc 743
			<?php
744
			$element = $form->get('status');
745
			$element->setAttributes(['class' => 'form-control']);
746
			$element->setOptions(['label' => 'LABEL_STATUS']);
747
			echo $this->formLabel($element);
748
			echo $this->formSelect($element);
749
			?>
16891 efrain 750
			</div>
14934 stevensc 751
		</div>
752
 
16891 efrain 753
         <div class="row">
754
	 	         	<div class="col-12 mt-3">
755
                        <?php
756
                        $element = $form->get('file');
757
                        $element->setOptions(['label' => 'LABEL_IMAGE']);
758
                        $element->setAttributes(['class' => 'form-control']);
16905 efrain 759
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
16891 efrain 760
                        echo $this->formLabel($element);
761
                        echo $this->formFile($element);
762
                        ?>
763
                    </div>
764
                </div>
765
 
766
 
767
	 	</div>
768
 
769
	 	<div class="card-footer text-right">
770
			<button type="submit" class="btn btn-primary">LABEL_SAVE</button>
771
      		<button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
772
	 	</div>
773
	 	<?php echo $this->form()->closeTag($form); ?>
14934 stevensc 774
	</div>
16891 efrain 775
</div>
14934 stevensc 776
 
777
 
1 www 778
 
779
<!-- The Modal -->
16891 efrain 780
<div class="modal" id="modalPreviewImage">
1 www 781
	<div class="modal-dialog ">
14934 stevensc 782
		<div class="modal-content">
1 www 783
 
14934 stevensc 784
			<!-- Modal Header -->
785
			<div class="modal-header">
16845 efrain 786
				<h6 class="modal-title">LABEL_IMAGE</h6>
16822 efrain 787
				<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
14934 stevensc 788
			</div>
1 www 789
 
14934 stevensc 790
			<!-- Modal body -->
791
			<div class="modal-body text-center">
1 www 792
				<img src="" class="img img-responsive" style="width: 300px; height: auto" id="image-app" />
14934 stevensc 793
			</div>
794
 
795
			<!-- Modal footer -->
16891 efrain 796
			<div class="modal-footer text-right">
16822 efrain 797
				 <button type="button" class="btn btn-light" data-bs-dismiss="modal">LABEL_CLOSE</button>
14934 stevensc 798
			</div>
799
		</div>
1 www 800
	</div>
14934 stevensc 801
</div>