Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16891 | Rev 16983 | 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/access-for-students');
7
 
8
$allowRevoke = $acl->isAllowed($roleName, 'microlearning/access-for-students/revoke') ? 1 : 0;
9
$allowUnlimit = $acl->isAllowed($roleName, 'microlearning/access-for-students/unlimit') ? 1 : 0;
10
$allowUpload = $acl->isAllowed($roleName, 'microlearning/access-for-students/upload') ? 1 : 0;
11
$allowCancel = $acl->isAllowed($roleName, 'microlearning/access-for-students/cancel') ? 1 : 0;
12
$allowReactive = $acl->isAllowed($roleName, 'microlearning/access-for-students/reactive') ? 1 : 0;
13
$allowNotification = $acl->isAllowed($roleName, 'microlearning/access-for-students/notification') ? 1 : 0;
14
 
16822 efrain 15
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
16
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
1 www 17
 
18
 
19
 
20
 
21
 
22
 
16929 efrain 23
 
24
 
25
 
16822 efrain 26
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
27
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
1 www 28
 
16822 efrain 29
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
30
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
31
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
32
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
1 www 33
 
34
 
35
 
36
 
37
 
16929 efrain 38
 
39
 
40
 
16822 efrain 41
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
42
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
1 www 43
 
44
 
45
 
46
 
16822 efrain 47
$this->inlineScript()->appendFile($this->basePath('assets/vendors/moment/moment-with-locales.min.js'));
48
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css'));
49
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'));
50
 
51
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/css/fileinput.min.css'));
52
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.css'));
53
 
16843 efrain 54
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/piexif.js'));
55
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/sortable.js'));
16822 efrain 56
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/fileinput.js'));
57
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/locales/es.js'));
58
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/fas/theme.js'));
59
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.js'));
60
 
1 www 61
$this->headStyle()->captureStart();
62
echo <<<CSS
63
 
64
 
65
#gridTableUploadCustomers {
66
    display: flex;
67
    flex-flow: column;
68
    width: 100%;
69
}
70
 
71
#gridTableUploadCustomers thead {
72
    flex: 0 0 auto;
73
}
74
 
75
#gridTableUploadCustomers tbody {
76
    flex: 1 1 auto;
77
    display: block;
78
    overflow-y: auto;
79
    overflow-x: hidden;
80
}
81
 
82
#gridTableUploadCustomers tr {
83
    width: 100%;
84
    display: table;
85
    table-layout: fixed;
86
}
87
CSS;
88
$this->headStyle()->captureEnd();
89
 
90
$this->inlineScript()->captureStart();
91
echo <<<JS
92
 
93
 
94
jQuery( document ).ready(function( $ ) {
95
 
96
        var routeUpload = '';
97
        var routeNotification = '';
98
 
99
        $.validator.setDefaults({
100
            debug: true,
101
            highlight: function(element) {
102
                $(element).addClass('is-invalid');
103
            },
104
            unhighlight: function(element) {
105
                $(element).removeClass('is-invalid');
106
            },
107
            errorElement: 'span',
108
            errorClass: 'error invalid-feedback',
109
            errorPlacement: function(error, element) {
110
                if(element.parent('.btn-file').length) {
111
                    error.insertAfter(element.parent().parent());
112
                } else if(element.parent('.toggle').length) {
113
                    error.insertAfter(element.parent().parent());
114
                } else {
115
                    error.insertAfter(element.parent());
116
                }
117
            }
118
        });
119
 
120
 
121
        var allowRevoke   = $allowRevoke;
122
        var allowUnlimit  = $allowUnlimit;
123
        var allowCancel   = $allowCancel;
124
        var allowReactive = $allowReactive;
125
        var allowUpload   = $allowUpload;
126
        var allowNotification = $allowNotification;
127
 
128
        var gridTable = $('#gridTable').dataTable( {
129
            'processing': true,
130
            'serverSide': true,
131
            'searching': true,
132
            'order': [[ 1, 'asc' ]],
133
            'ordering':  true,
134
            'ordenable' : true,
135
            'responsive': true,
136
            'select' : false,
137
        	'paging': true,
138
            'pagingType': 'simple_numbers',
139
            'lengthMenu': [ [10, 25, 50, -1], [10, 25, 50, 'All'] ],
140
 
141
    		'ajax': {
142
    			'url' : '$routeDatatable',
143
    			'type' : 'get',
144
                'data': function ( d ) {
145
                    d.topic_uuid = $('#form-filter #topic_uuid').val();
146
                    d.capsule_uuid = $('#form-filter #capsule_uuid').val();
147
 
148
                },
149
                'beforeSend': function (request) {
150
                  NProgress.start();
151
                },
152
                'dataFilter': function(response) {
153
                    var response = jQuery.parseJSON( response );
154
 
155
                    var json                = {};
156
                    json.recordsTotal       = 0;
157
                    json.recordsFiltered    = 0;
158
                    json.data               = [];
159
 
160
                    if(response.success) {
161
                        $('#form-capsule-add').attr('action', response.data.link_add );
162
 
163
                        if(response.data.capsules) {
164
                            $('#form-filter #capsule_uuid').empty();
165
                            $.each(response.data.capsules, function(index, value) {
166
                                  $('#form-filter #capsule_uuid').append('<option value="' + index + '">' + value + '</option>')
167
                            });
168
                        }
169
 
170
                        routeUpload = response.data.link_upload;
171
                        routeNotification = response.data.link_notification;
172
 
173
                        if(response.data.link_upload) {
174
                            $('button.btn-upload').removeAttr('disabled');
175
                        } else {
176
                            $('button.btn-upload').attr('disabled', 'disabled');
177
                        }
178
 
179
                        if(response.data.link_notification) {
180
                            $('button.btn-notification').removeAttr('disabled');
181
                        } else {
182
                            $('button.btn-notification').attr('disabled', 'disabled');
183
                        }
184
 
185
                        json.recordsTotal       = response.data.total;
186
                        json.recordsFiltered    = response.data.total;
187
                        json.data               = response.data.items;
188
                    } else {
189
                        $.fn.showError(response.data)
190
                    }
191
 
192
                    return JSON.stringify( json );
193
                }
194
    		},
195
            'language' : {
196
                'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
197
                'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
198
                'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
199
                'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
200
                'sInfo':           'LABEL_DATATABLE_SINFO',
201
                'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
202
                'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
203
                'sInfoPostFix':    '',
204
                'sSearch':         'LABEL_DATATABLE_SSEARCH',
205
                'sUrl':            '',
206
                'sInfoThousands':  ',',
207
                'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
208
                'oPaginate': {
209
                    'sFirst':    'LABEL_DATATABLE_SFIRST',
210
                    'sLast':     'LABEL_DATATABLE_SLAST',
211
                    'sNext':     'LABEL_DATATABLE_SNEXT',
212
                    'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
213
                },
214
                'oAria': {
215
                    'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
216
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
217
                },
218
            },
219
            'drawCallback': function( settings ) {
220
                NProgress.done();
16822 efrain 221
 
1 www 222
            },
223
            'aoColumns': [
224
                { 'mDataProp': 'uuid' },
225
                { 'mDataProp': 'first_name' },
226
                { 'mDataProp': 'last_name' },
227
                { 'mDataProp': 'email' },
228
                { 'mDataProp': 'details' },
229
                { 'mDataProp': 'actions' },
230
    	    ],
231
            'columnDefs': [
232
                {
233
                    'targets': 0,
234
                    'orderable': false,
235
                    'render' : function ( data, type, row ) {
236
                        s = '<input type="checkbox" class="chk-customer" value="' + data + '">';
237
                        return s;
238
                    }
239
                },
240
                {
241
                    'targets': -2,
242
                    'orderable': false,
243
                    'render' : function ( data, type, row ) {
244
                        s = '';
245
                        if(data['access']) {
246
                            s = s + 'LABEL_ACCESS : ' + data['access'] + '<br>';
247
                        }
248
                        if(data['paid_from']) {
249
                            s = s + 'LABEL_PAID_FROM : ' + data['paid_from'] + '<br>';
250
                        }
251
                        if(data['paid_to']) {
252
                            s = s + 'LABEL_PAID_TO : ' + data['paid_to'] + '<br>';
253
                        }
254
                        if(data['added_on']) {
255
                            s = s + 'LABEL_ADDED_ON : ' + data['added_on'] + '<br>';
256
                        }
257
                        if(data['updated_on']) {
258
                            s = s + 'LABEL_UPDATED_ON : ' + data['updated_on'] + '<br>';
259
                        }
260
 
261
                        return s;
262
                    }
263
                },
264
 
265
 
266
                {
267
                    'targets': -1,
268
                    'orderable': false,
269
                    'render' : function ( data, type, row ) {
270
                        s = '';
271
 
272
                        if(allowRevoke && data['link_revoke']  ) {
273
                            s = s + '<button class="btn btn-danger btn-sm btn-revoke" data-href="' + data['link_revoke']+ '" data-toggle="tooltip" title="LABEL_REVOKE"><i class="fa fa-times"></i> LABEL_REVOKE </button>&nbsp;';
274
                        }
275
                        if(allowCancel && data['link_cancel']  ) {
276
                            s = s + '<button class="btn btn-danger btn-sm btn-cancel" data-href="' + data['link_cancel']+ '" data-toggle="tooltip" title="LABEL_CANCEL"><i class="fa fa-times"></i> LABEL_CANCEL </button>&nbsp;';
277
                        }
278
                        if(allowUnlimit && data['link_unlimit']  ) {
279
                            s = s + '<button class="btn btn-primary btn-sm btn-unlimit" data-href="' + data['link_unlimit']+ '" data-toggle="tooltip" title="LABEL_UNLIMIT"><i class="fa fa-check"></i> LABEL_UNLIMIT </button>&nbsp;';
280
                        }
281
                        if(allowReactive && data['link_reactive']  ) {
282
                            s = s + '<button class="btn btn-success btn-sm btn-reactive" data-href="' + data['link_reactive']+ '" data-toggle="tooltip" title="LABEL_REACTIVE"><i class="fa fa-check"></i> LABEL_REACTIVE </button>&nbsp;';
283
                        }
284
 
285
 
286
                        return s;
287
                    }
288
                }
289
              ],
290
        });
291
 
292
    $('#form-filter #topic_uuid').change(function(e) {
293
        e.preventDefault();
294
 
295
        $('#form-filter #capsule_uuid').empty();
296
        gridTable.api().ajax.reload(null, false);
297
    })
298
 
299
 
300
    $('#form-filter #capsule_uuid').change(function(e) {
301
        e.preventDefault();
302
 
303
        gridTable.api().ajax.reload(null, false);
304
    })
305
 
306
    $('body').on('click', 'button.btn-notification', function(e) {
307
        e.preventDefault();
308
 
309
        var customer_uuids = [];
310
        $.each($('input[type="checkbox"].chk-customer:checked'), function(index, element) {
311
            customer_uuids.push($(this).val());
312
        });
313
 
314
        if(customer_uuids.length == 0) {
315
            $.fn.showError('ERROR_NOT_SELECTED_CUSTOMERS');
316
            return;
317
        }
318
 
319
        var href = $(this).data('href');
320
        $('#notificationPushModal').modal('show');
321
        $('#form-push-notification').attr('action', href);
322
 
323
    });
324
 
325
 
326
    $('#chk-customer-all').click(function(e) {
327
       // e.preventDefault();
328
 
329
        var checked = $(this).prop('checked');
330
        $.each($('input[type="checkbox"].chk-customer'), function(index, element) {
331
           $(this).prop('checked', checked);
332
        });
333
 
334
 
335
    });
336
 
337
    $('body').on('click', 'input[type="checkbox"].chk-customer', function(e) {
338
        var checked = $(this).prop('checked');
339
        if(!checked) {
340
            $('#chk-customer-all').prop('checked', false );
341
        }
342
    });
343
 
344
var validatorPushNotification = $('#form-push-notification').validate({
345
        debug: true,
346
        onclick: false,
347
        onkeyup: false,
348
        onfocusout: false,
349
        ignore: [],
350
        rules: {
351
            'push_template_id' : {
352
                required: true,
353
 
354
            },
355
        },
356
 
357
        submitHandler: function(form)
358
        {
359
            var customer_uuids = [];
360
            $.each($('input[type="checkbox"].chk-customer:checked'), function(index, element) {
361
                customer_uuids.push($(this).val());
362
            });
363
 
364
            if(customer_uuids.length == 0) {
365
                $.fn.showError('ERROR_NOT_SELECTED_CUSTOMERS');
366
                return;
367
            }
368
 
369
            var push_template_id = $('#form-push-notification #push_template_id').val();
370
 
371
            $('input[type="submit"]').prop('disabled', true);
372
            NProgress.start();
373
            $.ajax({
374
                'dataType'  : 'json',
375
                'accept'    : 'application/json',
376
                'method'    : 'post',
377
                'url'       : routeNotification,
378
                'data'      : {
379
                    'push_template_id' : push_template_id,
380
                    'customer_uuids' : customer_uuids
381
 
382
                },
383
            }).done(function(response) {
384
                if(response['success']) {
385
                    if(response['data']['push_to_send'] == 1) {
386
                        $.fn.showSuccess(response['data']['push_to_send'] + ' LABEL_PUSH_IN_QUEUE');
387
                    } else {
388
                        $.fn.showSuccess(response['data']['push_to_send'] + ' LABEL_PUSHES_IN_QUEUE');
389
                    }
390
 
391
 
392
                    $('#notificationPushModal').modal('hide');
393
                } else {
394
                    validatorPushNotification.resetForm();
395
                    if(jQuery.type(response['data']) == 'string') {
396
                        $.fn.showError(response['data']);
397
                    } else  {
398
                        $.each(response['data'], function( fieldname, errors ) {
399
                            $.fn.showFormErrorValidator('#form-push-notification #' + fieldname, errors);
400
                        });
401
                    }
402
                }
403
            }).fail(function( jqXHR, textStatus, errorThrown) {
404
                $.fn.showError(textStatus);
405
            }).always(function() {
406
 
407
                NProgress.done();
408
            });
409
            return false;
410
        },
411
        invalidHandler: function(form, validator) {
412
 
413
        }
414
    });
415
 
416
 
417
    var validatorCapsuleCustomer = $('#form-capsule-customer').validate({
418
        debug: true,
419
        onclick: false,
420
        onkeyup: false,
421
        onfocusout: false,
422
        ignore: [],
423
        rules: {
424
            'file' : {
425
                required: true,
426
                extension: 'xls|xlsx',
427
                accept: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel'
428
            },
429
        },
430
 
431
        submitHandler: function(form)
432
        {
433
            NProgress.start();
434
            var formdata = false;
435
            if (window.FormData){
436
                formdata = new FormData(form);
437
            }
438
            formdata.append('step','validation');
439
 
440
 
441
            $.ajax({
442
                'dataType'  : 'json',
443
                'accept'    : 'application/json',
444
                'method'    : 'post',
445
                'url'       :  routeUpload,
446
                'data'      :  formdata,
447
                'processData': false,
448
                'contentType': false,
449
            }).done(function(response) {
450
                if(response['success']) {
451
 
452
                    $('#table-upload-customers-key').val(response['data']['key']);
453
                    $('#table-upload-customers-topic').val(response['data']['topic']);
454
          			$('#table-upload-customers-capsule').val(response['data']['capsule']);
455
 
456
                    $('#gridTableUploadCustomers tbody').empty();
457
 
458
                    $.each(response['data']['items'], function(index, item) {
459
 
460
 
461
                        var s = '<tr>';
462
                        s = s + '<td>' + item['first_name'] + '</td>';
463
                        s = s + '<td>' + item['last_name'] + '</td>';
464
                        s = s + '<td>' + item['email'] + '</td>';
465
                        s = s + '<td class="text-right">' + item['assigned_capsules'] + '</td>';
466
                        s = s + '</tr>';
467
 
468
                        $('#gridTableUploadCustomers tbody').append(s);
469
 
470
 
471
                    });
472
 
473
                    $('#modalCapsuleCustomer').modal('hide');
474
                    $('#modalUploadCustomers').modal('show');
475
 
476
 
477
 
478
                } else {
479
                    validatorCapsuleCustomer.resetForm();
480
                    if(jQuery.type(response['data']) == 'string') {
481
                        $.fn.showError(response['data']);
482
                    } else  {
483
                        $.each(response['data'], function( fieldname, errors ) {
484
                            $.fn.showFormErrorValidator('#form-capsule-customer #' + fieldname, errors);
485
                        });
486
                    }
487
                }
488
            }).fail(function( jqXHR, textStatus, errorThrown) {
489
                $.fn.showError(textStatus);
490
            }).always(function() {
491
 
492
                NProgress.done();
493
            });
494
            return false;
495
        },
496
        invalidHandler: function(form, validator) {
497
 
498
        }
499
    });
500
 
501
 
502
    $('#form-capsule-customer #file').fileinput({
503
        theme: 'fas',
504
        language: 'es',
505
        showUpload: false,
506
        dropZoneEnabled: false,
507
        maxFileCount: 1,
508
        allowedFileExtensions: ['xls', 'xlsx'],
509
    });
510
 
511
    $('body').on('click', 'button.btn-upload', function(e) {
512
        e.preventDefault();
513
 
514
        $('#form-capsule-customer #file').fileinput('reset');
515
        $('#form-capsule-customer #file').val('');
516
 
517
        $('#modalCapsuleCustomer').modal('show');
518
    });
519
 
520
    $('body').on('click', 'button.btn-upload-customers-step2', function(e) {
521
        e.preventDefault();
522
        NProgress.start();
523
 
524
        $.ajax({
525
            'dataType'  : 'json',
526
            'accept'    : 'application/json',
527
            'method'    : 'post',
528
            'url'       :  routeUpload,
529
            'data'      :  {
530
                'step' : 'process',
531
                'key' : $('#table-upload-customers-key').val(),
532
            }
533
        }).done(function(response) {
534
            if(response['success']) {
15457 efrain 535
 
536
                var s = response['data']['users_processed'] + ' LABEL_USTUDENTS_PROCESED <br>' +
537
                response['data']['users_assigned'] + ' LABEL_STUDENTS_ASSIGNED <br>' +
538
                response['data']['users_previous'] + ' LABEL_USTUDENTS_PREVIOUS <br>' +
539
                response['data']['users_in_the_capsule'] + ' LABEL_STUDENTS_TOTAL';
540
 
541
                $.fn.showSuccess(s);
542
 
1 www 543
                 gridTable.api().ajax.reload(null, false);
544
                $('#modalUploadCustomers').modal('hide');
545
            } else {
546
                $.fn.showError(response['data']);
547
            }
548
        }).fail(function( jqXHR, textStatus, errorThrown) {
549
            $.fn.showError(textStatus);
550
        }).always(function() {
551
            NProgress.done();
552
        });
553
        return false;
554
    });
555
 
556
    $('body').on('click', 'button.btn-refresh', function(e) {
557
        e.preventDefault();
558
        gridTable.api().ajax.reload(null, false);
559
    });
16822 efrain 560
 
561
     $('body').on('click', 'button.btn-delete', function(e) {
562
        e.preventDefault();
563
        var action = $(this).data('href');
564
 
565
 
566
          swal.fire({
567
            title: 'LABEL_ARE_YOU_SURE',
568
            icon: 'question',
569
            cancelButtonText: 'LABEL_NO',
570
            showCancelButton: true,
571
            confirmButtonText: 'LABEL_YES'
572
          }).then((result) => {
573
            if (result.isConfirmed) {
574
 
575
                    NProgress.start();
576
                    $.ajax({
577
                        'dataType'  : 'json',
578
                        'accept'    : 'application/json',
579
                        'method'    : 'post',
580
                        'url'       :  action,
581
                    }).done(function(response) {
582
                        if(response['success']) {
583
                            $.fn.showSuccess(response['data']);
584
                            gridTable.api().ajax.reload(null, false);
585
                        } else {
586
                            $.fn.showError(response['data']);
587
                        }
588
                    }).fail(function( jqXHR, textStatus, errorThrown) {
589
                        $.fn.showError(textStatus);
590
                    }).always(function() {
591
                        NProgress.done();
592
                    });
593
            }
594
       });
595
    });
596
 
597
    $('body').on('click', 'button.btn-unlimit', function(e) {
598
        e.preventDefault();
599
        var action = $(this).data('href');
600
 
601
 
602
          swal.fire({
603
            title: 'LABEL_ARE_YOU_SURE',
604
            icon: 'question',
605
            cancelButtonText: 'LABEL_NO',
606
            showCancelButton: true,
607
            confirmButtonText: 'LABEL_YES'
608
          }).then((result) => {
609
            if (result.isConfirmed) {
610
 
611
                    NProgress.start();
612
                    $.ajax({
613
                        'dataType'  : 'json',
614
                        'accept'    : 'application/json',
615
                        'method'    : 'post',
616
                        'url'       :  action,
617
                    }).done(function(response) {
618
                        if(response['success']) {
619
                            $.fn.showSuccess(response['data']);
620
                            gridTable.api().ajax.reload(null, false);
621
                        } else {
622
                            $.fn.showError(response['data']);
623
                        }
624
                    }).fail(function( jqXHR, textStatus, errorThrown) {
625
                        $.fn.showError(textStatus);
626
                    }).always(function() {
627
                        NProgress.done();
628
                    });
629
            }
630
       });
631
    });
1 www 632
});
633
JS;
634
$this->inlineScript()->captureEnd();
635
?>
636
 
16891 efrain 637
<div class="container">
638
	<div class="card" id="">
639
	 	<div class="card-header">
640
	 		<h6 class="card-title">LABEL_ACCESS_FOR_STUDENTS</h6>
641
	 	</div>
642
 
643
	 	<?php
1 www 644
                        $form = $this->form;
645
            	        $form->setAttributes([
646
                            'name'    => 'form-filter',
647
                            'id'      => 'form-filter',
648
                        ]);
649
 
650
                        $form->prepare();
651
                        echo $this->form()->openTag($form);
16891 efrain 652
                        ?>
653
 
654
	 	<div class="card-body">
655
	 		<div class="row">
656
                            <div class="col-6 mt-3 ">
657
 
1 www 658
                                    <?php
659
                                    $element = $form->get('topic_uuid');
660
 
661
                                    $element->setOptions(['label' => 'LABEL_TOPIC']);
662
 
663
                                    $element->setAttributes(['class' => 'form-control']);
664
                                    echo $this->formLabel($element);
665
                                    echo $this->formSelect($element);
666
                                    ?>
16891 efrain 667
 
1 www 668
                            </div>
16891 efrain 669
                            <div class="col-6 mt-3">
670
 
1 www 671
                                    <?php
672
                                    $element = $form->get('capsule_uuid');
673
                                    $element->setOptions(['label' => 'LABEL_CAPSULE']);
674
                                    $element->setAttributes(['class' => 'form-control']);
675
                                    echo $this->formLabel($element);
676
                                    echo $this->formSelect($element);
677
                                    ?>
16891 efrain 678
 
1 www 679
                            </div>
16891 efrain 680
	 		</div>
681
 
682
	 		<div class="row">
683
	 	         <div class="col-12 mt-3">
684
 
685
	 	         	<table id="gridTable" class="table   table-bordered">
1 www 686
                      		<thead>
687
        						<tr>
688
        							<th><input type="checkbox" id="chk-customer-all"></th>
689
                                	<th>LABEL_FIRST_NAME</th>
690
                                	<th>LABEL_LAST_NAME</th>
691
                                	<th>LABEL_EMAIL</th>
692
                                  	<th>LABEL_DETAILS</th>
693
                                  	<th>LABEL_ACTIONS</th>
694
                                </tr>
695
                       		</thead>
696
                         	<tbody>
697
                         	</tbody>
698
                    	</table>
16891 efrain 699
 
700
	 	         </div>
701
	 	     </div>
702
	 	</div>
703
	 	<div class="card-footer text-right">
704
	 	      <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
705
                                    <?php if($allowUpload) : ?>
706
                                        <button type="button" class="btn btn-primary btn-upload"><i class="fa fa-upload"></i> LABEL_UPLOAD  </button>
707
                                    <?php endif; ?>
708
                                    <?php if($allowNotification) : ?>
709
                                        <button type="button" class="btn btn-primary btn-notification"><i class="fa fa-tablet"></i> LABEL_NOTIFICATION </button>
710
                                    <?php endif; ?>
711
	 	</div>
712
	 	<?php echo $this->form()->closeTag($form); ?>
713
	</div>
714
</div>
1 www 715
 
16891 efrain 716
 
717
 
1 www 718
<!-- The Modal -->
719
<div class="modal" id="notificationPushModal">
720
	<div class="modal-dialog modal-sm">
721
    	<div class="modal-content">
722
 
723
            <!-- Modal Header -->
724
      		<div class="modal-header">
16845 efrain 725
        		<h6 class="modal-title">LABEL_PUSH_NOTIFICATION</h6>
16822 efrain 726
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 727
      		</div>
728
 
16891 efrain 729
	<?php
1 www 730
				        $form = $this->formPushNotification;
731
                        $form->setAttributes([
732
                            'method'    => 'post',
733
                            'name'      => 'form-push-notification',
734
                            'id'        => 'form-push-notification',
735
                        ]);
736
 
737
                        $form->prepare();
738
                        echo $this->form()->openTag($form);
739
                        ?>
16891 efrain 740
      		<div class="modal-body">
741
 
742
                        <div class="row">
743
                        	<div class="col-12 mt-3">
1 www 744
                        	<?php
745
                            $element = $form->get('push_template_id');
746
                            $element->setAttributes([
747
                                'class' => 'form-control'
748
                            ]);
749
                            $element->setLabelAttributes([
750
                                'class' => 'form-label'
751
                            ]);
752
                            $element->setOptions([
753
                                'label' => 'LABEL_TYPE'
754
                            ]);
755
                            echo $this->formLabel($element);
756
                            echo $this->formSelect($element);
757
                            ?>
16891 efrain 758
                            </div>
1 www 759
    					</div>
760
 
16891 efrain 761
 
762
 
1 www 763
 
764
      		</div>
765
 
766
            <!-- Modal footer -->
16891 efrain 767
      		<div class="modal-footer text-right">
768
      		<button type="submit" class="btn btn-primary">LABEL_SEND</button>
1 www 769
        		<button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
770
      		</div>
16891 efrain 771
      		<?php
772
                        echo $this->form()->closeTag($form);
773
                        ?>
1 www 774
 
775
    	</div>
776
	</div>
777
</div>
778
 
779
 
780
<!-- The Modal -->
781
<div class="modal" id="modalCapsuleCustomer">
782
	<div class="modal-dialog  modal-xl">
783
    	<div class="modal-content">
784
 
785
            <!-- Modal Header -->
786
      		<div class="modal-header">
16845 efrain 787
        		<h6 class="modal-title">LABEL_UPLOAD</h6>
16822 efrain 788
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 789
      		</div>
790
 
16891 efrain 791
 <?php
1 www 792
                    $form = $this->formCapsuleCustomer;
793
            		$form->setAttributes([
794
                        'method'    => 'post',
795
                        'name'      => 'form-capsule-customer',
796
                        'id'        => 'form-capsule-customer'
797
                    ]);
798
 
799
                    $form->prepare();
800
                    echo $this->form()->openTag($form);
16891 efrain 801
                ?>
802
      		<div class="modal-body">
803
 
1 www 804
 
16891 efrain 805
				<div class="row">
806
                	<div class="col-12 mt-3">
1 www 807
 
808
                 		<?php
809
                        $element = $form->get('file');
810
                        $element->setOptions(['label' => 'LABEL_EXCEL']);
811
                        echo $this->formLabel($element);
812
                        ?>
813
                        <div class="file-loading">
814
                        <?php
16768 efrain 815
                        $element->setAttributes(['class' => 'form-control', 'accept' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel']);
1 www 816
                        echo $this->formFile($element);
817
                        ?>
16891 efrain 818
                        </div>
1 www 819
                	</div>
820
          		</div>
821
 
16891 efrain 822
 
1 www 823
      		</div>
824
 
825
            <!-- Modal footer -->
16891 efrain 826
      		<div class="modal-footer text-right">
827
      			<button type="submit" class="btn btn-primary">LABEL_UPLOAD</button>
1 www 828
        		<button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
829
      		</div>
16891 efrain 830
      		<?php echo $this->form()->closeTag($form); ?>
1 www 831
 
832
    	</div>
833
	</div>
834
</div>
835
 
836
 
837
 
838
<!-- The Modal -->
839
<div class="modal" id="modalUploadCustomers">
840
	<div class="modal-dialog modal-xl">
841
    	<div class="modal-content">
842
 
843
            <!-- Modal Header -->
844
      		<div class="modal-header">
16845 efrain 845
        		<h6 class="modal-title">LABEL_CUSTOMERS</h6>
16822 efrain 846
        		<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
1 www 847
      		</div>
848
 
849
            <!-- Modal body -->
850
      		<div class="modal-body">
851
      			<form>
852
      				<input type="hidden" name="table-upload-customers-key" id="table-upload-customers-key">
16891 efrain 853
      				<div class="row">
854
      					<div class="col-12 mt-3">
1 www 855
      					<label>LABEL_TOPIC</label>
856
      					<input type="text" readonly="readonly" id="table-upload-customers-topic" class="form-control" >
16891 efrain 857
      					</div>
1 www 858
      				</div>
16891 efrain 859
      				<div class="row">
860
      					<div class="col-12 mt-3">
1 www 861
      					<label>LABEL_CAPSULE</label>
862
      					<input type="text" readonly="readonly" id="table-upload-customers-capsule" class="form-control" >
16891 efrain 863
      					</div>
1 www 864
      				</div>
865
      			</form>
15457 efrain 866
 
16891 efrain 867
      			<div class="row">
868
      				<div class="col-12 mt-3">
869
 
870
 
1 www 871
      			<div style="height: 300px;overflow: scroll;">
16822 efrain 872
    				<table id="gridTableUploadCustomers" style="width: 100%" class="table table-bordered">
15457 efrain 873
                		<thead>
874
                			<tr>
875
                          		<th>LABEL_FIRST_NAME</th>
876
                         		<th>LABEL_LAST_NAME</th>
877
                             	<th>LABEL_EMAIL</th>
878
                           		<th>LABEL_CAPSULES</th>
879
                 			</tr>
880
                      	</thead>
881
                   		<tbody>
882
                   		</tbody>
883
             		</table>
1 www 884
         		</div>
16891 efrain 885
      				</div>
886
      			</div>
887
 
1 www 888
 
889
      		</div>
890
 
891
            <!-- Modal footer -->
16891 efrain 892
      		<div class="modal-footer text-right">
1 www 893
      			<button type="submit" class="btn btn-primary btn-upload-customers-step2">LABEL_SAVE</button>
894
        		<button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
895
      		</div>
896
 
897
    	</div>
898
	</div>
899
</div>
900
 
901
 
902
 
903
 
904