Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 17012 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 17012 Rev 17019
Línea 2... Línea 2...
2
$currentUser = $this->currentUserHelper();
2
$currentUser = $this->currentUserHelper();
3
$currentUser = $currentUser->getUser();
3
$currentUser = $currentUser->getUser();
Línea 4... Línea 4...
4
 
4
 
Línea 5... Línea -...
5
$routeTimeline = $this->url('feeds/timeline');
-
 
6
 
5
$routeTimeline = $this->url('feeds/timeline');
7
 
6
 
Línea 8... Línea 7...
8
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
7
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
Línea 9... Línea -...
9
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
10
 
8
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
11
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
9
 
Línea 12... Línea 10...
12
 
10
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
13
 
11
 
14
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/css/fileinput.min.css'));
12
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/css/fileinput.min.css'));
15
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fa/theme.css'));
13
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fa/theme.css'));
16
 
14
 
17
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/piexif.js'));
15
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/piexif.js'));
Línea -... Línea 16...
-
 
16
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/sortable.js'));
18
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/sortable.js'));
17
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/fileinput.js'));
19
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/fileinput.js'));
18
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/locales/es.js'));
Línea -... Línea 19...
-
 
19
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/fa/theme.js'));
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/locales/es.js'));
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fa/theme.js'));
Línea -... Línea 21...
-
 
21
 
Línea 21... Línea 22...
21
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/fa/theme.js'));
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/moment/moment-with-locales.min.js'));
Línea 22... Línea 23...
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fa/theme.js'));
23
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css'));
23
 
24
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'));
Línea 54... Línea 55...
54
                $('.posts-section').empty();
55
                $('.posts-section').empty();
Línea 55... Línea 56...
55
 
56
 
56
                $( ".posts-section" ).append(
57
                $( ".posts-section" ).append(
57
                    $( "#feedTemplate" ).render( response['data']['current']['items'] )
58
                    $( "#feedTemplate" ).render( response['data']['current']['items'] )
58
                );
59
                );
Línea 59... Línea 60...
59
            
60
 
60
 
61
 
61
                if(response['data']['total']['pages'] > 1 ) {
62
                if(response['data']['total']['pages'] > 1 ) {
62
             
63
 
63
                    $('#paginator-process-comm').show();
64
                    $('#paginator-process-comm').show();
64
                    if(response['data']['current']['page']  > 1) {
65
                    if(response['data']['current']['page']  > 1) {
65
                        $('#btn-page-previous').data('page', response['data']['current']['page'] - 1);
66
                        $('#btn-page-previous').data('page', response['data']['current']['page'] - 1);
66
                        $('#btn-page-previous').show();
67
                        $('#btn-page-previous').show();
67
                    } else {
68
                    } else {
68
                         $('#btn-page-previous').hide();
69
                         $('#btn-page-previous').hide();
69
                    } 
70
                    }
70
                    if(response['data']['current']['page'] <  response['data']['total']['pages']) {
71
                    if(response['data']['current']['page'] <  response['data']['total']['pages']) {
71
                        $('#btn-page-next').data('page', response['data']['current']['page'] + 1);
72
                        $('#btn-page-next').data('page', response['data']['current']['page'] + 1);
72
                        $('#btn-page-next').show();
73
                        $('#btn-page-next').show();
73
                    } else {
74
                    } else {
Línea 74... Línea 75...
74
                         $('#btn-page-next').hide();
75
                         $('#btn-page-next').hide();
75
                    } 
76
                    }
76
 
77
 
77
                    $('#paginator-process-comm').show();
78
                    $('#paginator-process-comm').show();
78
      
79
 
79
                } else {
80
                } else {
80
                    $('#paginator-process-comm').hide();
81
                    $('#paginator-process-comm').hide();
81
                }
82
                }
82
                            
83
 
83
    
84
 
84
            } else {
85
            } else {
85
                $.fn.showError(response['data']);
86
                $.fn.showError(response['data']);
86
            } 
87
            }
87
        }).fail(function( jqXHR, textStatus, errorThrown) {
88
        }).fail(function( jqXHR, textStatus, errorThrown) {
88
            $.fn.showError(textStatus);
89
            $.fn.showError(textStatus);
Línea 95... Línea 96...
95
    $('#btn-page-previous').click(function(e) {
96
    $('#btn-page-previous').click(function(e) {
96
        e.preventDefault();
97
        e.preventDefault();
Línea 97... Línea 98...
97
 
98
 
98
        var page = $(this).data('page');
99
        var page = $(this).data('page');
99
        $.fn.reload(page);
100
        $.fn.reload(page);
100
        
101
 
Línea 101... Línea 102...
101
    });
102
    });
102
 
103
 
Línea 103... Línea 104...
103
    $('#btn-page-next').click(function(e) {
104
    $('#btn-page-next').click(function(e) {
104
        e.preventDefault();
105
        e.preventDefault();
105
 
106
 
106
        var page = $(this).data('page');
107
        var page = $(this).data('page');
Línea 107... Línea 108...
107
        $.fn.reload(page);
108
        $.fn.reload(page);
Línea 108... Línea 109...
108
        
109
 
109
    });
110
    });
110
 
111
 
111
 
112
 
Línea 140... Línea 141...
140
                'url'       : $('#form-feed').attr('action'),
141
                'url'       : $('#form-feed').attr('action'),
141
                'data'      : $('#form-feed').serialize(),
142
                'data'      : $('#form-feed').serialize(),
142
            }).done(function(response) {
143
            }).done(function(response) {
143
                if(response['success']) {
144
                if(response['success']) {
144
                    var s = $( "#feedTemplate" ).render( response['data'] );
145
                    var s = $( "#feedTemplate" ).render( response['data'] );
145
                    $(s).prependTo(".posts-section");                    
146
                    $(s).prependTo(".posts-section");
Línea 146... Línea 147...
146
 
147
 
147
                   $('#form-feed')[0].reset()
148
                   $('#form-feed')[0].reset()
148
                    $("#modal-feed-box").modal('hide'); 
149
                    $("#modal-feed-box").modal('hide');
149
                } else {
150
                } else {
150
                    validatorFeed.resetForm();
151
                    validatorFeed.resetForm();
151
                    if(jQuery.type(response['data']) == 'string') {
152
                    if(jQuery.type(response['data']) == 'string') {
152
                        $.fn.showError(response['data']);
153
                        $.fn.showError(response['data']);
Línea 163... Línea 164...
163
                NProgress.done();
164
                NProgress.done();
164
            });
165
            });
165
            return false;
166
            return false;
166
        },
167
        },
167
        invalidHandler: function(form, validator) {
168
        invalidHandler: function(form, validator) {
168
        
169
 
169
        }
170
        }
170
    });
171
    });
Línea 171... Línea 172...
171
 
172
 
172
    $('.btn-modal-feed-close').click(function(e) {
173
    $('.btn-modal-feed-close').click(function(e) {
Línea 177... Línea 178...
177
    });
178
    });
Línea 178... Línea 179...
178
 
179
 
179
    $('#description-main, #btn-description-main').click(function(e) {
180
    $('#description-main, #btn-description-main').click(function(e) {
Línea -... Línea 181...
-
 
181
        e.preventDefault();
-
 
182
 
-
 
183
         $('.nav-tabs a[href="#tab-share-basic"]').tab('show');
-
 
184
 
-
 
185
        $('#form-feed #notification_active').prop('checked', false);
-
 
186
        $('#form-feed #notification_custom_active').prop('checked', false);
-
 
187
        $('#form-feed #notification_custom_active').attr('disabled', 'disabled');
-
 
188
 
-
 
189
 
-
 
190
        $('#form-feed #notification_custom_title').val('');
-
 
191
        $('#form-feed #notification_custom_title').attr('readonly', 'readonly');
-
 
192
_
-
 
193
 
-
 
194
        CKEDITOR.instances.notification_custom_description_share.setData('');
-
 
195
        CKEDITOR.instances.notification_custom_description_sahre.setReadOnly(true);
180
        e.preventDefault();
196
 
181
 
197
 
182
        $('#form-feed')[0].reset()
198
        $('#form-feed')[0].reset()
183
        validatorFeed.resetForm();
199
        validatorFeed.resetForm();
Línea 184... Línea 200...
184
        $("#modal-feed-box").modal('show'); 
200
        $("#modal-feed-box").modal('show');
185
    })
201
    })
186
 
202
 
Línea 224... Línea 240...
224
                'data'      : formdata ? formdata : $('#form-feed-image').serialize(),
240
                'data'      : formdata ? formdata : $('#form-feed-image').serialize(),
225
                'processData': false,
241
                'processData': false,
226
                'contentType': false,
242
                'contentType': false,
227
            }).done(function(response) {
243
            }).done(function(response) {
228
                if(response['success']) {
244
                if(response['success']) {
229
                    
245
 
Línea 230... Línea 246...
230
 
246
 
231
                    var s = $( "#feedTemplate" ).render( response['data'] );
247
                    var s = $( "#feedTemplate" ).render( response['data'] );
Línea 232... Línea 248...
232
                    $(s).prependTo(".posts-section");  
248
                    $(s).prependTo(".posts-section");
233
 
249
 
234
                    $("#modal-feed-image-box").modal('hide');
250
                    $("#modal-feed-image-box").modal('hide');
235
                } else {
251
                } else {
236
                    validatorFeedImage.resetForm();
252
                    validatorFeedImage.resetForm();
237
                    if(jQuery.type(response['data']) == 'string') {
253
                    if(jQuery.type(response['data']) == 'string') {
238
                        $.fn.showError(response['data']);
254
                        $.fn.showError(response['data']);
239
                    } else  {
255
                    } else  {
240
                        $.each(response['data'], function( fieldname, errors ) {
256
                        $.each(response['data'], function( fieldname, errors ) {
241
       
257
 
242
                                $.fn.showFormErrorValidator('#form-feed-image #' + fieldname, errors);
258
                                $.fn.showFormErrorValidator('#form-feed-image #' + fieldname, errors);
243
                       
259
 
244
                        });
260
                        });
245
                    }
261
                    }
246
                }
262
                }
Línea 251... Línea 267...
251
                NProgress.done();
267
                NProgress.done();
252
            });
268
            });
253
            return false;
269
            return false;
254
        },
270
        },
255
        invalidHandler: function(form, validator) {
271
        invalidHandler: function(form, validator) {
256
        
272
 
257
        }
273
        }
258
    });
274
    });
Línea 259... Línea 275...
259
 
275
 
260
    var validatorFeedVideo = $('#form-feed-video').validate({
276
    var validatorFeedVideo = $('#form-feed-video').validate({
Línea 298... Línea 314...
298
                'processData': false,
314
                'processData': false,
299
                'contentType': false,
315
                'contentType': false,
300
            }).done(function(response) {
316
            }).done(function(response) {
301
                if(response['success']) {
317
                if(response['success']) {
302
                    var s = $( "#feedTemplate" ).render( response['data'] );
318
                    var s = $( "#feedTemplate" ).render( response['data'] );
303
                    $(s).prependTo(".posts-section");  
319
                    $(s).prependTo(".posts-section");
Línea 304... Línea 320...
304
 
320
 
305
                    $("#modal-feed-video-box").modal('hide');
321
                    $("#modal-feed-video-box").modal('hide');
306
                } else {
322
                } else {
307
                    validatorFeedVideo.resetForm();
323
                    validatorFeedVideo.resetForm();
Línea 320... Línea 336...
320
                NProgress.done();
336
                NProgress.done();
321
            });
337
            });
322
            return false;
338
            return false;
323
        },
339
        },
324
        invalidHandler: function(form, validator) {
340
        invalidHandler: function(form, validator) {
325
        
341
 
326
        }
342
        }
327
    });
343
    });
Línea 328... Línea 344...
328
 
344
 
329
    var validatorFeedDocument = $('#form-feed-document').validate({
345
    var validatorFeedDocument = $('#form-feed-document').validate({
Línea 367... Línea 383...
367
                'processData': false,
383
                'processData': false,
368
                'contentType': false,
384
                'contentType': false,
369
            }).done(function(response) {
385
            }).done(function(response) {
370
                if(response['success']) {
386
                if(response['success']) {
371
                    var s = $( "#feedTemplate" ).render( response['data'] );
387
                    var s = $( "#feedTemplate" ).render( response['data'] );
372
                    $(s).prependTo(".posts-section");  
388
                    $(s).prependTo(".posts-section");
Línea 373... Línea 389...
373
 
389
 
374
                    $("#modal-feed-document-box").modal('hide');
390
                    $("#modal-feed-document-box").modal('hide');
375
                } else {
391
                } else {
376
                    validatorFeedDocument.resetForm();
392
                    validatorFeedDocument.resetForm();
Línea 389... Línea 405...
389
                NProgress.done();
405
                NProgress.done();
390
            });
406
            });
391
            return false;
407
            return false;
392
        },
408
        },
393
        invalidHandler: function(form, validator) {
409
        invalidHandler: function(form, validator) {
394
        
410
 
395
        }
411
        }
396
    });
412
    });
Línea 397... Línea 413...
397
 
413
 
Línea 398... Línea 414...
398
    
414
 
399
 
415
 
Línea -... Línea 416...
-
 
416
 
-
 
417
 
400
 
418
    $('i.fa-file').on('click', function(e){
401
 
419
        e.preventDefault();
402
    $('i.fa-file').on('click', function(e){
420
 
Línea -... Línea 421...
-
 
421
        $('.nav-tabs a[href="#tab-document-basic"]').tab('show');
-
 
422
 
-
 
423
        $('#form-feed-document #shared_with').val('');
-
 
424
        $('#form-feed-document #file').val('');
-
 
425
        CKEDITOR.instances.description_document.setData('');
-
 
426
 
-
 
427
        $('#form-feed-document #notification_active').prop('checked', false);
-
 
428
        $('#form-feed-document #notification_custom_active').prop('checked', false);
-
 
429
        $('#form-feed-document #notification_custom_active').attr('disabled', 'disabled');
-
 
430
 
-
 
431
 
-
 
432
        $('#form-feed-document #notification_custom_title').val('');
403
        e.preventDefault();
433
        $('#form-feed-document #notification_custom_title').attr('readonly', 'readonly');
404
 
434
 
405
        $('#form-feed-document #shared_with').val('');
435
 
406
        $('#form-feed-document #file').val('');
436
        CKEDITOR.instances.notification_custom_description_document.setData('');
Línea 418... Línea 448...
418
        dropZoneEnabled: false,
448
        dropZoneEnabled: false,
419
        maxFileCount: 1,
449
        maxFileCount: 1,
420
        allowedFileExtensions: ['pdf'],
450
        allowedFileExtensions: ['pdf'],
421
    });
451
    });
Línea 422... Línea 452...
422
 
452
 
423
    
453
 
424
    $('.btn-modal-feed-document-close').on('click', function(e){
454
    $('.btn-modal-feed-document-close').on('click', function(e){
425
        e.preventDefault();
455
        e.preventDefault();
426
            
456
 
427
        $('#modal-feed-document-box').modal('hide');
457
        $('#modal-feed-document-box').modal('hide');
428
        return false;
458
        return false;
Línea 429... Línea 459...
429
    });
459
    });
430
 
460
 
Línea -... Línea 461...
-
 
461
 
-
 
462
    $('i.fa-camera').on('click', function(e){
431
 
463
        e.preventDefault();
432
    $('i.fa-camera').on('click', function(e){
464
 
433
        e.preventDefault();
465
        $('.nav-tabs a[href="#tab-image-basic"]').tab('show');
Línea -... Línea 466...
-
 
466
 
-
 
467
        $('#form-feed-image #shared_with').val('');
-
 
468
        $('#form-feed-image #file').val('');
-
 
469
        CKEDITOR.instances.description_image.setData('');
-
 
470
 
-
 
471
        $('#form-feed-image #notification_active').prop('checked', false);
-
 
472
        $('#form-feed-image #notification_custom_active').prop('checked', false);
-
 
473
        $('#form-feed-image #notification_custom_active').attr('disabled', 'disabled');
-
 
474
 
-
 
475
 
-
 
476
        $('#form-feed-image #notification_custom_title').val('');
-
 
477
        $('#form-feed-image #notification_custom_title').attr('readonly', 'readonly');
-
 
478
 
434
 
479
 
435
        $('#form-feed-image #shared_with').val('');
480
        CKEDITOR.instances.notification_custom_description_video.setData('');
436
        $('#form-feed-image #file').val('');
481
        CKEDITOR.instances.notification_custom_description_video.setReadOnly(true);
437
        CKEDITOR.instances.description_image.setData('');
482
 
Línea 448... Línea 493...
448
        dropZoneEnabled: false,
493
        dropZoneEnabled: false,
449
        maxFileCount: 1,
494
        maxFileCount: 1,
450
        allowedFileExtensions: ['jpg', 'jpeg', 'png', 'gif'],
495
        allowedFileExtensions: ['jpg', 'jpeg', 'png', 'gif'],
451
    });
496
    });
Línea 452... Línea 497...
452
 
497
 
453
    
498
 
454
    $('.btn-modal-feed-image-close').on('click', function(e){
499
    $('.btn-modal-feed-image-close').on('click', function(e){
455
        e.preventDefault();
500
        e.preventDefault();
456
            
501
 
457
        $('#modal-feed-image-box').modal('hide');
502
        $('#modal-feed-image-box').modal('hide');
458
        return false;
503
        return false;
Línea 459... Línea 504...
459
    });
504
    });
460
 
505
 
Línea -... Línea 506...
-
 
506
 
-
 
507
    $('i.fa-video').on('click', function(e){
461
 
508
        e.preventDefault();
462
    $('i.fa-video').on('click', function(e){
509
 
463
        e.preventDefault();
510
        $('.nav-tabs a[href="#tab-video-basic"]').tab('show');
Línea -... Línea 511...
-
 
511
 
-
 
512
        $('#form-feed-video #shared_with').val('');
-
 
513
        $('#form-feed-video #file').val('');
-
 
514
        CKEDITOR.instances.description_video.setData('');
-
 
515
 
-
 
516
 
-
 
517
        $('#form-feed-video #scheduled_active').prop('checked', false);
-
 
518
        $('#form-feed-video #scheduled_timestamp').val('');
-
 
519
        $('#form-feed-video #scheduled_timestamp').attr('readonly', 'readonly');
-
 
520
 
-
 
521
 
-
 
522
        $('#form-feed-video #notification_active').prop('checked', false);
-
 
523
        $('#form-feed-video #notification_custom_active').prop('checked', false);
-
 
524
        $('#form-feed-video #notification_custom_active').attr('disabled', 'disabled');
-
 
525
 
-
 
526
 
-
 
527
        $('#form-feed-video #notification_custom_title').val('');
-
 
528
        $('#form-feed-video #notification_custom_title').attr('readonly', 'readonly');
464
 
529
 
465
        $('#form-feed-video #shared_with').val('');
530
 
466
        $('#form-feed-video #file').val('');
531
        CKEDITOR.instances.notification_custom_description_video.setData('');
467
        CKEDITOR.instances.description_video.setData('');
532
        CKEDITOR.instances.notification_custom_description_video.setReadOnly(true);
Línea 479... Línea 544...
479
        dropZoneEnabled: false,
544
        dropZoneEnabled: false,
480
        maxFileCount: 1,
545
        maxFileCount: 1,
481
        allowedFileExtensions: ['mp4', 'mpeg','webm'],
546
        allowedFileExtensions: ['mp4', 'mpeg','webm'],
482
    });
547
    });
Línea 483... Línea 548...
483
 
548
 
484
    
549
 
485
    $('.btn-modal-feed-video-close').on('click', function(e){
550
    $('.btn-modal-feed-video-close').on('click', function(e){
486
        e.preventDefault();
551
        e.preventDefault();
487
            
552
 
488
        $('#modal-feed-video-box').modal('hide');
553
        $('#modal-feed-video-box').modal('hide');
489
        return false;
554
        return false;
Línea 490... Línea 555...
490
    });
555
    });
491
 
556
 
492
    $('body').on('click', 'a.btn-indicator', function(e) {
557
    $('body').on('click', 'a.btn-indicator', function(e) {
493
    
558
 
Línea 494... Línea 559...
494
        e.preventDefault();
559
        e.preventDefault();
Línea 495... Línea 560...
495
    });
560
    });
496
 
561
 
Línea 516... Línea 581...
516
        }).done(function(response) {
581
        }).done(function(response) {
517
            if(response['success']) {
582
            if(response['success']) {
518
                $('#comment-' + unique).val('');
583
                $('#comment-' + unique).val('');
Línea 519... Línea 584...
519
 
584
 
520
                var s = $( "#commentTemplate" ).render( response['data'] );
585
                var s = $( "#commentTemplate" ).render( response['data'] );
-
 
586
                $(s).appendTo('ul.comment-sec-' + unique);
Línea 521... Línea -...
521
                $(s).appendTo('ul.comment-sec-' + unique);  
-
 
522
 
587
 
Línea 523... Línea 588...
523
   
588
 
524
                $('#btn-comments-' + unique).html('<i class="<i class="fa fa-comments"></i>"></i> ' + response['total_comments']);
589
                $('#btn-comments-' + unique).html('<i class="<i class="fa fa-comments"></i>"></i> ' + response['total_comments']);
525
 
590
 
526
                $('form.form-comment-feed > input[name="comment"]').val('');
591
                $('form.form-comment-feed > input[name="comment"]').val('');
527
                
592
 
528
            } else {
593
            } else {
529
               $.fn.showError(response['data']);
594
               $.fn.showError(response['data']);
Línea 552... Línea 617...
552
              $('.post-bar-' +  feed_unique).remove();
617
              $('.post-bar-' +  feed_unique).remove();
Línea 553... Línea 618...
553
 
618
 
554
                $.fn.showSuccess(response['data']);
619
                $.fn.showSuccess(response['data']);
555
            } else {
620
            } else {
556
                $.fn.showError(response['data']);
621
                $.fn.showError(response['data']);
557
            } 
622
            }
558
        }).fail(function( jqXHR, textStatus, errorThrown) {
623
        }).fail(function( jqXHR, textStatus, errorThrown) {
559
            $.fn.showError(textStatus);
624
            $.fn.showError(textStatus);
560
        }).always(function() {
625
        }).always(function() {
561
            NProgress.done();
626
            NProgress.done();
Línea 596... Línea 661...
596
        }).done(function(response) {
661
        }).done(function(response) {
597
            if(response['success']) {
662
            if(response['success']) {
Línea 598... Línea 663...
598
 
663
 
599
                $('.comment-' + unique).closest('li').remove();
664
                $('.comment-' + unique).closest('li').remove();
600
                $('#btn-comments-' + feed_unique).html('<i class="fa fa-comments"></i> ' + response['data']['total_comments']);
665
                $('#btn-comments-' + feed_unique).html('<i class="fa fa-comments"></i> ' + response['data']['total_comments']);
601
            
666
 
602
                $.fn.showSuccess(response['data']['message']);
667
                $.fn.showSuccess(response['data']['message']);
603
            } else {
668
            } else {
604
                $.fn.showError(response['data']);
669
                $.fn.showError(response['data']);
605
            } 
670
            }
606
        }).fail(function( jqXHR, textStatus, errorThrown) {
671
        }).fail(function( jqXHR, textStatus, errorThrown) {
607
            $.fn.showError(textStatus);
672
            $.fn.showError(textStatus);
608
        }).always(function() {
673
        }).always(function() {
609
            NProgress.done();
674
            NProgress.done();
Línea 615... Línea 680...
615
 
680
 
616
    $('body').on('click', 'a.btn-comment-trash', function(e) {
681
    $('body').on('click', 'a.btn-comment-trash', function(e) {
617
        e.preventDefault();
682
        e.preventDefault();
618
        var url = $(this).data('link');
683
        var url = $(this).data('link');
619
        var unique = $(this).data('comment-unique');
684
        var unique = $(this).data('comment-unique');
620
        
685
 
621
          swal.fire({
686
          swal.fire({
622
            title: 'LABEL_ARE_YOU_SURE',
687
            title: 'LABEL_ARE_YOU_SURE',
623
            message: 'LABEL_QUESTION_DELETE_COMMENT',
688
            message: 'LABEL_QUESTION_DELETE_COMMENT',
624
            icon: 'question',
689
            icon: 'question',
Línea 630... Línea 695...
630
                   $.fn.deleteComment(url, unique);
695
                   $.fn.deleteComment(url, unique);
631
            }
696
            }
632
        });
697
        });
633
    });
698
    });
Línea -... Línea 699...
-
 
699
 
-
 
700
    $('#form-feed #scheduled_timestamp').datetimepicker({
-
 
701
        //viewMode: 'years',
-
 
702
        locale: 'es',
-
 
703
        format: 'YYYY-MM-DD HH:mm:ss'
-
 
704
    });
-
 
705
 
-
 
706
    $('#form-feed-document #scheduled_timestamp').datetimepicker({
-
 
707
        //viewMode: 'years',
-
 
708
        locale: 'es',
-
 
709
        format: 'YYYY-MM-DD HH:mm:ss'
-
 
710
    });
-
 
711
 
-
 
712
 
-
 
713
    $ ('#form-feed-image #scheduled_timestamp').datetimepicker({
-
 
714
        //viewMode: 'years',
-
 
715
        locale: 'es',
-
 
716
        format: 'YYYY-MM-DD HH:mm:ss'
-
 
717
    });
-
 
718
 
-
 
719
   $('#form-feed-video #scheduled_timestamp').datetimepicker({
-
 
720
        //viewMode: 'years',
-
 
721
        locale: 'es',
-
 
722
        format: 'YYYY-MM-DD HH:mm:ss'
-
 
723
    });
-
 
724
 
Línea 634... Línea 725...
634
 
725
 
635
 
726
 
636
    $('div.modal').on("hide.bs.modal", function() {
727
    $('div.modal').on("hide.bs.modal", function() {
Línea 637... Línea -...
637
    	$(".wrapper").removeClass("overlay");
-
 
638
    })
728
    	$(".wrapper").removeClass("overlay");
639
 
729
    })
640
 
730
 
641
    $.fn.reload(1);
731
 
642
 
732
   
Línea -... Línea 733...
-
 
733
    CKEDITOR.replace('description_feed');
-
 
734
    CKEDITOR.replace('description_video');
-
 
735
    CKEDITOR.replace('description_image');
-
 
736
    CKEDITOR.replace('description_document');
-
 
737
 
-
 
738
    CKEDITOR.replace('notification_custom_description_image');
-
 
739
    CKEDITOR.replace('notification_custom_description_video');
-
 
740
    CKEDITOR.replace('notification_custom_description_document');
-
 
741
    CKEDITOR.replace('notification_custom_description_share');
Línea 643... Línea 742...
643
    CKEDITOR.replace('description_feed');
742
 
Línea 644... Línea 743...
644
    CKEDITOR.replace('description_video');
743
 
645
    CKEDITOR.replace('description_image');
744
     $.fn.reload(1);
Línea 646... Línea 745...
646
    CKEDITOR.replace('description_document');
745
 
Línea 647... Línea 746...
647
 
746
 
648
 
747
 
Línea 649... Línea 748...
649
});
748
});
650
 
749
 
-
 
750
 
-
 
751
JS;
651
 
752
$this->inlineScript()->captureEnd();
652
JS;
753
 
653
$this->inlineScript()->captureEnd();
754
?>
654
 
755
 
-
 
756
<div class="container">
655
?>
757
	<h6 class="mb-2">LABEL_FEEDS</h6>
-
 
758
 
656
 
759
	<main class="feed-section">
-
 
760
		<form class="theme-container p-2" id="form-main" name="form-main">
657
<div class="container">
761
			<input id="description-main" name="description-main"
-
 
762
				placeholder="LABEL_WHAT_DO_YOU_HAVE_IN_MIND"
658
    <h6 class="mb-2">LABEL_FEEDS</h6>
763
				class="cursor-pointer mb-2" readonly="readonly" rows="2"></input>
659
 
764
 
660
        <main class="feed-section">
765
			<div class="d-flex align-items-center justify-content-end gap-2">
661
            <form class="theme-container p-2" id="form-main" name="form-main">
766
				<a class="btn btn-trans btn-icon add-tooltip" href="#"><i
-
 
767
					class="fa fa-video"></i></a> <a
-
 
768
					class="btn btn-trans btn-icon add-tooltip" href="#"><i
-
 
769
					class="fa fa-camera"></i></a> <a
-
 
770
					class="btn btn-trans btn-icon add-tooltip" href="#"><i
-
 
771
					class="fa fa-file "></i></a>
-
 
772
				<button class="btn btn-sm btn-primary" type="button"
-
 
773
					id="btn-description-main">
-
 
774
					<i class="fa fa-edit"></i> LABEL_SHARE
-
 
775
				</button>
-
 
776
			</div>
-
 
777
		</form>
-
 
778
 
-
 
779
		<!--posts-section star-->
-
 
780
		<div class="posts-section w-100"></div>
-
 
781
 
-
 
782
		<div class="process-comm" id="paginator-process-comm"
-
 
783
			style="display: none">
Línea 662... Línea -...
662
                <input id="description-main" name="description-main" placeholder="¿Qué tienes en mente?" class="cursor-pointer mb-2" readonly="readonly" rows="2"></input>
-
 
663
 
-
 
664
                <div class="d-flex align-items-center justify-content-end gap-2">
-
 
665
                    <a class="btn btn-trans btn-icon add-tooltip" href="#"><i class="fa fa-video"></i></a>
-
 
666
                    <a class="btn btn-trans btn-icon add-tooltip" href="#"><i class="fa fa-camera"></i></a>
-
 
667
                    <a class="btn btn-trans btn-icon add-tooltip" href="#"><i class="fa fa-file "></i></a>
-
 
668
                    <button class="btn btn-sm btn-primary" type="button" id="btn-description-main">
-
 
669
                        <i class="fa fa-edit"></i> LABEL_SHARE
-
 
670
                    </button>
-
 
671
                </div>
-
 
672
            </form>
-
 
673
 
784
			<button class="btn btn-sm btn-primary" data-page="0"
674
            <!--posts-section star-->
785
				id="btn-page-previous">
Línea 675... Línea -...
675
            <div class="posts-section w-100">
-
 
676
            </div>
-
 
Línea 677... Línea 786...
677
 
786
				<i class="fa fa-chevron-left" aria-hidden="true"></i> LABEL_PREVIOUS
678
            <div class="process-comm" id="paginator-process-comm" style="display: none">
787
			</button>
679
                <button class="btn btn-sm btn-primary" data-page="0" id="btn-page-previous"> <i class="fa fa-chevron-left" aria-hidden="true"></i> LABEL_PREVIOUS </button>
788
			<button class="btn btn-sm btn-primary" data-page="0"
680
                <button class="btn btn-sm btn-primary" data-page="0" id="btn-page-next"> LABEL_NEXT <i class="fa fa-chevron-right" aria-hidden="true"></i> </button>
789
				id="btn-page-next">
681
            </div>
790
				LABEL_NEXT <i class="fa fa-chevron-right" aria-hidden="true"></i>
682
            <!--posts-section end-->
791
			</button>
683
        </main>
792
		</div>
Línea 701... Línea 810...
701
            'enctype' => 'multipart/form-data'
810
            'enctype' => 'multipart/form-data'
702
        ]);
811
        ]);
703
        $form->prepare();
812
        $form->prepare();
704
        echo $this->form()->openTag($form);
813
        echo $this->form()->openTag($form);
Línea 705... Línea -...
705
 
-
 
706
 
814
 
707
        ?>
815
        ?>
708
        <div class="modal-content">
816
        <div class="modal-content">
709
            <div class="modal-header">
817
			<div class="modal-header">
710
                <h6 class="modal-title">LABEL_SHARE_IMAGE</h6>
818
				<h6 class="modal-title">LABEL_SHARE_IMAGE</h6>
711
            </div>
819
			</div>
-
 
820
			<div class="modal-body">
-
 
821
 
-
 
822
				<ul class="nav nav-tabs" id="tabImage" role="tablist">
-
 
823
					<li class="nav-item"><a class="nav-link active" id="tab-image-basic-tab"
-
 
824
						data-bs-toggle="tab" href="#tab-image-basic" role="tab"
-
 
825
						aria-controls="basic" aria-selected="true">LABEL_BASIC</a></li>
-
 
826
					<li class="nav-item"><a class="nav-link" id="tab-image-scheduled-tab"
-
 
827
						data-bs-toggle="tab" href="#tab-image-scheduled" role="tab"
-
 
828
						aria-controls="scheduled" aria-selected="false">LABEL_SCHEDULED</a>
-
 
829
					</li>
-
 
830
					<li class="nav-item"><a class="nav-link" id="tab-image-notification-tab"
-
 
831
						data-bs-toggle="tab" href="#tab-image-notification" role="tab"
-
 
832
						aria-controls="notification" aria-selected="false">LABEL_NOTIFICATION</a>
-
 
833
					</li>
-
 
834
				</ul>
-
 
835
				<div class="tab-content border border-top-0 p-3"
-
 
836
					id="tabImageContent">
-
 
837
					<div class="tab-pane fade show active" id="tab-image-basic" role="tabpanel"
-
 
838
						aria-labelledby="tab-image-basic-tab">
712
            <div class="modal-body">
839
 
713
                <div class="row">
840
						<div class="row">
714
                   <div class="col-12 mt-3">
841
							<div class="col-12 mt-3">
715
                    <?php
842
                            <?php
-
 
843
                            $element = $form->get('description');
-
 
844
                            $element->setAttributes([
-
 
845
                                'id' => 'description_image',
-
 
846
                                'rows' => '2',
716
                    $element = $form->get('description');
847
                                'placeholder' => 'LABEL_WHAT_DO_YOU_HAVE_IN_MIND',
-
 
848
                                'class' => 'form-control'
717
                    $element->setAttributes(['id' => 'description_image', 'rows' => '2', 'placeholder' => '¿Qué tienes en mente?', 'class' => 'form-control']);
849
                            ]);
718
                    echo $this->formTextArea($element);
850
                            echo $this->formTextArea($element);
719
                    ?>
851
                            ?>
-
 
852
                            </div>
-
 
853
						</div>
-
 
854
						<div class="row">
-
 
855
							<div class="col-12 mt-3">
-
 
856
                                <?php
-
 
857
                                $element = $form->get('file');
-
 
858
                                $element->setAttributes([
-
 
859
                                    'accept' => 'image/jpg,image/jpeg,image/png'
-
 
860
                                ]);
-
 
861
                                echo $this->formFile($element);
720
                    </div>
862
                                ?>
-
 
863
                            </div>
-
 
864
						</div>
-
 
865
 
-
 
866
					</div>
-
 
867
					<div class="tab-pane fade" id="tab-image-scheduled" role="tabpanel"
721
                </div>
868
						aria-labelledby="tab-image-scheduled-tab">
722
                <div class="row">
869
						<div class="row">
-
 
870
							<div class="col-12 mt-3">
723
                   <div class="col-12 mt-3">
871
								<div class="form-check mb-3">
-
 
872
                        			<?php
-
 
873
                                    $element = $form->get('scheduled_active');
-
 
874
                                    $element->setAttributes([
-
 
875
                                        'class' => 'form-check-input'
-
 
876
                                    ]);
-
 
877
                                    $element->setOptions([
-
 
878
                                        'label' => 'LABEL_SCHEDULED_ACTIVE',
-
 
879
                                        'class' => 'form-check-label'
-
 
880
                                    ]);
-
 
881
                                    echo $this->formCheckbox($element);
-
 
882
                                    echo $this->formLabel($element);
-
 
883
                                    ?>
-
 
884
								</div>
-
 
885
							</div>
-
 
886
						</div>
-
 
887
						<div class="row">
-
 
888
							<div class="col-12 mt-3">
-
 
889
                                <?php
-
 
890
                                $element = $form->get('scheduled_timestamp');
-
 
891
                                $element->setOptions([
-
 
892
                                    'label' => 'LABEL_SCHEDULED_DATETIME',
-
 
893
                                    'class' => 'form-label'
-
 
894
                                ]);
-
 
895
                                $element->setAttributes([
-
 
896
                                    'class' => 'form-control'
-
 
897
                                ]);
-
 
898
                                echo $this->formLabel($element);
-
 
899
                                echo $this->formText($element);
-
 
900
                                ?>
-
 
901
                            </div>
-
 
902
						</div>
-
 
903
 
-
 
904
					</div>
-
 
905
					<div class="tab-pane fade" id="tab-image-notification" role="tabpanel"
-
 
906
						aria-labelledby="tab-image-notification-tab">
-
 
907
						<div class="row">
-
 
908
							<div class="col-12 mt-3">
-
 
909
								<div class="form-check mb-3">
724
                        <?php
910
                            		<?php
725
                        $element = $form->get('file');
911
                            $element = $form->get('notification_active');
-
 
912
                            $element->setAttributes([
-
 
913
                                'class' => 'form-check-input'
-
 
914
                            ]);
-
 
915
                            $element->setOptions([
-
 
916
                                'label' => 'LABEL_NOTIFICATION_ACTIVE',
-
 
917
                                'class' => 'form-check-label'
-
 
918
                            ]);
726
                        $element->setAttributes(['accept' => 'image/jpg,image/jpeg,image/png']);
919
                            echo $this->formCheckbox($element);
727
                        echo $this->formFile($element);
920
                            echo $this->formLabel($element);
-
 
921
                            ?>
-
 
922
								</div>
-
 
923
							</div>
-
 
924
						</div>
-
 
925
						<div class="row">
-
 
926
							<div class="col-12 mt-3">
-
 
927
								<div class="form-check mb-3">
-
 
928
                            		<?php
-
 
929
                            $element = $form->get('notification_custom_active');
-
 
930
                            $element->setAttributes([
-
 
931
                                'class' => 'form-check-input'
-
 
932
                            ]);
-
 
933
                            $element->setOptions([
-
 
934
                                'label' => 'LABEL_USE_CUSTOM_NOTIFICATION',
-
 
935
                                'class' => 'form-check-label'
-
 
936
                            ]);
-
 
937
                            echo $this->formCheckbox($element);
728
                        ?>
938
                            echo $this->formLabel($element);
-
 
939
                            ?>
-
 
940
								</div>
-
 
941
 
-
 
942
							</div>
-
 
943
						</div>
-
 
944
 
-
 
945
						<div class="row">
-
 
946
							<div class="col-12 mt-3">
-
 
947
                                <?php
-
 
948
                                $element = $form->get('notification_custom_title');
-
 
949
                                $element->setOptions([
-
 
950
                                    'label' => 'LABEL_TITLE',
-
 
951
                                    'class' => 'form-label'
-
 
952
                                ]);
-
 
953
                                $element->setAttributes([
-
 
954
                                    'class' => 'form-control'
-
 
955
                                ]);
-
 
956
                                echo $this->formLabel($element);
-
 
957
                                echo $this->formText($element);
729
                    </div>
958
                                ?>
-
 
959
              				</div>
-
 
960
						</div>
-
 
961
						<div class="row">
-
 
962
							<div class="col-12 mt-3">
-
 
963
                                <?php
-
 
964
                                $element = $form->get('notification_custom_description');
-
 
965
                                $element->setOptions([
-
 
966
                                    'label' => 'LABEL_DESCRIPTION',
-
 
967
                                    'class' => 'form-label'
-
 
968
                                ]);
-
 
969
                                $element->setAttributes([
-
 
970
                                    'id' => 'notification_custom_description_image',
-
 
971
                                    'rows' => '2',
-
 
972
                                    'class' => 'form-control'
-
 
973
                                ]);
-
 
974
                                echo $this->formLabel($element);
-
 
975
                                echo $this->formTextArea($element);
730
                </div>
976
                                ?>
-
 
977
                        	</div>
-
 
978
						</div>
-
 
979
					</div>
-
 
980
				</div>
-
 
981
 
-
 
982
 
-
 
983
 
731
            </div>
984
			</div>
732
            <div class="modal-footer text-right">
985
			<div class="modal-footer text-right">
-
 
986
				<button type="submit" class="btn btn-sm btn-primary save">LABEL_UPLOAD</button>
733
                <button type="submit" class="btn btn-sm btn-primary save">LABEL_UPLOAD</button>
987
				<button type="button"
734
                <button type="button" class="btn btn-light cancel btn-modal-feed-image-close">LABEL_CANCEL</button>
988
					class="btn btn-light cancel btn-modal-feed-image-close">LABEL_CANCEL</button>
735
            </div>
989
			</div>
736
 
990
 
737
        </div>
991
		</div>
-
 
992
		<a href="#" title="" class="close-box btn-feed-image-close"><i
738
        <a href="#" title="" class="close-box btn-feed-image-close"><i class="la la-close"></i></a>
993
			class="la la-close"></i></a>
739
        <?php echo $this->form()->closeTag($form); ?>
994
        <?php echo $this->form()->closeTag($form); ?>
740
    </div>
995
    </div>
Línea 741... Línea 996...
741
</div>
996
</div>
742
 
997
 
743
 
998
 
744
<div class="modal" tabindex="-1" role="dialog" id="modal-feed-video-box">
999
<div class="modal" tabindex="-1" role="dialog" id="modal-feed-video-box">
745
    <div class="modal-dialog modal-xl" role="document">
1000
	<div class="modal-dialog modal-xl" role="document">
746
        <?php
1001
        <?php
747
        $form = $this->formFeed;
1002
        $form = $this->formFeed;
Línea 753... Línea 1008...
753
            'enctype' => 'multipart/form-data'
1008
            'enctype' => 'multipart/form-data'
754
        ]);
1009
        ]);
755
        $form->prepare();
1010
        $form->prepare();
756
        echo $this->form()->openTag($form);
1011
        echo $this->form()->openTag($form);
Línea 757... Línea -...
757
 
-
 
758
 
1012
 
759
        ?>
1013
        ?>
760
        <div class="modal-content">
1014
        <div class="modal-content">
761
            <div class="modal-header">
1015
			<div class="modal-header">
762
                <h6 class="modal-title">LABEL_SHARE_VIDEO</h6>
1016
				<h6 class="modal-title">LABEL_SHARE_VIDEO</h6>
763
            </div>
1017
			</div>
-
 
1018
			<div class="modal-body">
-
 
1019
				<ul class="nav nav-tabs" id="tabVideo" role="tablist">
-
 
1020
					<li class="nav-item"><a class="nav-link active" id="tab-video-basic-tab"
-
 
1021
						data-bs-toggle="tab" href="#tab-video-basic" role="tab"
-
 
1022
						aria-controls="basic" aria-selected="true">LABEL_BASIC</a></li>
-
 
1023
					<li class="nav-item"><a class="nav-link" id="tab-video-scheduled-tab"
-
 
1024
						data-bs-toggle="tab" href="#tab-video-scheduled" role="tab"
-
 
1025
						aria-controls="scheduled" aria-selected="false">LABEL_SCHEDULED</a>
-
 
1026
					</li>
-
 
1027
					<li class="nav-item"><a class="nav-link" id="tab-video-notification-tab"
-
 
1028
						data-bs-toggle="tab" href="#tab-video-notification" role="tab"
-
 
1029
						aria-controls="notification" aria-selected="false">LABEL_NOTIFICATION</a>
-
 
1030
					</li>
-
 
1031
				</ul>
-
 
1032
				<div class="tab-content border border-top-0 p-3"
-
 
1033
					id="tabVideoContent">
-
 
1034
					<div class="tab-pane fade show active" id="tab-video-basic" role="tabpanel"
-
 
1035
						aria-labelledby="tab-video-basic-tab">
764
            <div class="modal-body">
1036
 
765
              	<div class="row">
1037
						<div class="row">
766
              		<div class="col-12 mt-3">
1038
							<div class="col-12 mt-3">
767
                    <?php
1039
                                <?php
-
 
1040
                                $element = $form->get('description');
-
 
1041
                                $element->setAttributes([
-
 
1042
                                    'id' => 'description_video',
-
 
1043
                                    'rows' => '2',
768
                    $element = $form->get('description');
1044
                                    'placeholder' => 'LABEL_WHAT_DO_YOU_HAVE_IN_MIND',
-
 
1045
                                    'class' => 'form-control'
769
                    $element->setAttributes(['id' => 'description_video', 'rows' => '2', 'placeholder' => '¿Qué tienes en mente?', 'class' => 'form-control']);
1046
                                ]);
770
                    echo $this->formTextArea($element);
1047
                                echo $this->formTextArea($element);
771
                    ?>
1048
                                ?>
-
 
1049
                        	</div>
-
 
1050
						</div>
-
 
1051
						<div class="row">
-
 
1052
							<div class="col-12 mt-3">
-
 
1053
                                <?php
-
 
1054
                                $element = $form->get('file');
-
 
1055
                                $element->setAttributes([
-
 
1056
                                    'accept' => 'video/webm,video/mpeg,video/mp4'
-
 
1057
                                ]);
-
 
1058
                                echo $this->formFile($element);
772
                    </div>
1059
                                ?>
-
 
1060
                            </div>
-
 
1061
						</div>
-
 
1062
 
-
 
1063
					</div>
-
 
1064
					<div class="tab-pane fade" id="tab-video-scheduled" role="tabpanel"
773
                </div>
1065
						aria-labelledby="tab-video-scheduled-tab">
774
              	<div class="row">
1066
						<div class="row">
-
 
1067
							<div class="col-12 mt-3">
775
              		<div class="col-12 mt-3">
1068
								<div class="form-check mb-3">
776
                        <?php
1069
                        			<?php
777
                        $element = $form->get('file');
1070
                        $element = $form->get('scheduled_active');
-
 
1071
                        $element->setAttributes([
-
 
1072
                            'class' => 'form-check-input'
-
 
1073
                        ]);
-
 
1074
                        $element->setOptions([
-
 
1075
                            'label' => 'LABEL_SCHEDULED_ACTIVE',
-
 
1076
                            'class' => 'form-check-label'
-
 
1077
                        ]);
778
                        $element->setAttributes(['accept' => 'video/webm,video/mpeg,video/mp4']);
1078
                        echo $this->formCheckbox($element);
779
                        echo $this->formFile($element);
1079
                        echo $this->formLabel($element);
-
 
1080
                        ?>
-
 
1081
								</div>
-
 
1082
							</div>
-
 
1083
						</div>
-
 
1084
						<div class="row">
-
 
1085
							<div class="col-12 mt-3">
-
 
1086
                                <?php
-
 
1087
                                $element = $form->get('scheduled_timestamp');
-
 
1088
                                $element->setOptions([
-
 
1089
                                    'label' => 'LABEL_SCHEDULED_DATETIME',
-
 
1090
                                    'class' => 'form-label'
-
 
1091
                                ]);
-
 
1092
                                $element->setAttributes([
-
 
1093
                                    'class' => 'form-control'
-
 
1094
                                ]);
-
 
1095
                                echo $this->formLabel($element);
-
 
1096
                                echo $this->formText($element);
780
                        ?>
1097
                                ?>
-
 
1098
                            </div>
-
 
1099
						</div>
-
 
1100
 
-
 
1101
					</div>
-
 
1102
					<div class="tab-pane fade" id="tab-video-notification" role="tabpanel"
-
 
1103
						aria-labelledby="tab-video-notification-tab">
-
 
1104
						<div class="row">
-
 
1105
							<div class="col-12 mt-3">
-
 
1106
								<div class="form-check mb-3">
-
 
1107
                            		<?php
-
 
1108
                            $element = $form->get('notification_active');
-
 
1109
                            $element->setAttributes([
-
 
1110
                                'class' => 'form-check-input'
-
 
1111
                            ]);
-
 
1112
                            $element->setOptions([
-
 
1113
                                'label' => 'LABEL_NOTIFICATION_ACTIVE',
-
 
1114
                                'class' => 'form-check-label'
-
 
1115
                            ]);
-
 
1116
                            echo $this->formCheckbox($element);
-
 
1117
                            echo $this->formLabel($element);
-
 
1118
                            ?>
-
 
1119
								</div>
-
 
1120
							</div>
-
 
1121
						</div>
-
 
1122
						<div class="row">
-
 
1123
							<div class="col-12 mt-3">
-
 
1124
								<div class="form-check mb-3">
-
 
1125
                            		<?php
-
 
1126
                            $element = $form->get('notification_custom_active');
-
 
1127
                            $element->setAttributes([
-
 
1128
                                'class' => 'form-check-input'
-
 
1129
                            ]);
-
 
1130
                            $element->setOptions([
-
 
1131
                                'label' => 'LABEL_USE_CUSTOM_NOTIFICATION',
-
 
1132
                                'class' => 'form-check-label'
-
 
1133
                            ]);
-
 
1134
                            echo $this->formCheckbox($element);
-
 
1135
                            echo $this->formLabel($element);
-
 
1136
                            ?>
-
 
1137
								</div>
-
 
1138
 
-
 
1139
							</div>
-
 
1140
						</div>
-
 
1141
 
-
 
1142
						<div class="row">
-
 
1143
							<div class="col-12 mt-3">
-
 
1144
                                <?php
-
 
1145
                                $element = $form->get('notification_custom_title');
-
 
1146
                                $element->setOptions([
-
 
1147
                                    'label' => 'LABEL_TITLE',
-
 
1148
                                    'class' => 'form-label'
-
 
1149
                                ]);
-
 
1150
                                $element->setAttributes([
-
 
1151
                                    'class' => 'form-control'
-
 
1152
                                ]);
-
 
1153
                                echo $this->formLabel($element);
-
 
1154
                                echo $this->formText($element);
781
                    </div>
1155
                                ?>
-
 
1156
              				</div>
-
 
1157
						</div>
-
 
1158
						<div class="row">
-
 
1159
							<div class="col-12 mt-3">
-
 
1160
                                <?php
-
 
1161
                                $element = $form->get('notification_custom_description');
-
 
1162
                                $element->setOptions([
-
 
1163
                                    'label' => 'LABEL_DESCRIPTION',
-
 
1164
                                    'class' => 'form-label'
-
 
1165
                                ]);
-
 
1166
                                $element->setAttributes([
-
 
1167
                                    'id' => 'notification_custom_description_video',
-
 
1168
                                    'rows' => '2',
-
 
1169
                                    'class' => 'form-control'
-
 
1170
                                ]);
-
 
1171
                                echo $this->formLabel($element);
-
 
1172
                                echo $this->formTextArea($element);
782
                </div>
1173
                                ?>
-
 
1174
                        	</div>
-
 
1175
						</div>
-
 
1176
					</div>
-
 
1177
				</div>
-
 
1178
 
-
 
1179
 
-
 
1180
 
783
            </div>
1181
			</div>
784
            <div class="modal-footer">
1182
			<div class="modal-footer">
-
 
1183
				<button type="submit" class="btn btn-sm btn-primary save">LABEL_UPLOAD</button>
785
                <button type="submit" class="btn btn-sm btn-primary save">LABEL_UPLOAD</button>
1184
				<button type="button"
786
                <button type="button" class="btn btn-light cancel btn-modal-feed-video-close">LABEL_CANCEL</button>
1185
					class="btn btn-light cancel btn-modal-feed-video-close">LABEL_CANCEL</button>
787
            </div>
1186
			</div>
788
 
1187
 
789
        </div>
1188
		</div>
-
 
1189
		<a href="#" title="" class="close-box btn-feed-video-close"><i
790
        <a href="#" title="" class="close-box btn-feed-video-close"><i class="la la-close"></i></a>
1190
			class="la la-close"></i></a>
791
        <?php echo $this->form()->closeTag($form); ?>
1191
        <?php echo $this->form()->closeTag($form); ?>
792
    </div>
1192
    </div>
Línea 793... Línea 1193...
793
</div>
1193
</div>
-
 
1194
 
794
 
1195
<div class="modal" tabindex="-1" role="dialog"
795
<div class="modal" tabindex="-1" role="dialog" id="modal-feed-document-box">
1196
	id="modal-feed-document-box">
796
    <div class="modal-dialog  modal-xl" role="document">
1197
	<div class="modal-dialog  modal-xl" role="document">
797
        <?php
1198
        <?php
798
        $form = $this->formFeed;
1199
        $form = $this->formFeed;
799
        $form->setAttributes([
1200
        $form->setAttributes([
Línea 804... Línea 1205...
804
            'enctype' => 'multipart/form-data'
1205
            'enctype' => 'multipart/form-data'
805
        ]);
1206
        ]);
806
        $form->prepare();
1207
        $form->prepare();
807
        echo $this->form()->openTag($form);
1208
        echo $this->form()->openTag($form);
Línea 808... Línea -...
808
 
-
 
809
 
-
 
810
 
1209
 
811
        ?>
1210
        ?>
812
        <div class="modal-content">
1211
        <div class="modal-content">
813
            <div class="modal-header">
1212
			<div class="modal-header">
814
                <h6 class="modal-title">LABEL_SHARE_DOCUMENT</h6>
1213
				<h6 class="modal-title">LABEL_SHARE_DOCUMENT</h6>
815
            </div>
1214
			</div>
-
 
1215
			<div class="modal-body">
-
 
1216
 
-
 
1217
				<ul class="nav nav-tabs" id="tabDocument" role="tablist">
-
 
1218
					<li class="nav-item"><a class="nav-link active" id="tab-document-basic-tab"
-
 
1219
						data-bs-toggle="tab" href="#tab-document-basic" role="tab"
-
 
1220
						aria-controls="basic" aria-selected="true">LABEL_BASIC</a></li>
-
 
1221
					<li class="nav-item"><a class="nav-link" id="tab-document-scheduled-tab"
-
 
1222
						data-bs-toggle="tab" href="#tab-document-scheduled" role="tab"
-
 
1223
						aria-controls="scheduled" aria-selected="false">LABEL_SCHEDULED</a>
-
 
1224
					</li>
-
 
1225
					<li class="nav-item"><a class="nav-link" id="tab-document-notification-tab"
-
 
1226
						data-bs-toggle="tab" href="#tab-document-notification" role="tab"
-
 
1227
						aria-controls="notification" aria-selected="false">LABEL_NOTIFICATION</a>
-
 
1228
					</li>
-
 
1229
				</ul>
-
 
1230
				<div class="tab-content border border-top-0 p-3"
-
 
1231
					id="tabDocumentContent">
-
 
1232
					<div class="tab-pane fade show active" id="tab-document-basic" role="tabpanel"
-
 
1233
						aria-labelledby="tab-document-basic-tab">
816
            <div class="modal-body">
1234
 
817
                <div class="row">
1235
						<div class="row">
818
                    <div class="col-12 mt-3">
1236
							<div class="col-12 mt-3">
819
                    <?php
1237
                            <?php
-
 
1238
                            $element = $form->get('description');
-
 
1239
                            $element->setAttributes([
-
 
1240
                                'id' => 'description_document',
-
 
1241
                                'rows' => '2',
820
                    $element = $form->get('description');
1242
                                'placeholder' => 'LABEL_WHAT_DO_YOU_HAVE_IN_MIND',
-
 
1243
                                'class' => 'form-control'
821
                    $element->setAttributes(['id' => 'description_document', 'rows' => '2', 'placeholder' => '¿Qué tienes en mente?', 'class' => 'form-control']);
1244
                            ]);
822
                    echo $this->formTextArea($element);
1245
                            echo $this->formTextArea($element);
823
                    ?>
1246
                            ?>
-
 
1247
                            </div>
-
 
1248
						</div>
-
 
1249
						<div class="row">
-
 
1250
							<div class="col-12 mt-3">
-
 
1251
                                <?php
-
 
1252
                                $element = $form->get('file');
-
 
1253
                                $element->setAttributes([
-
 
1254
                                    'accept' => 'application/pdf'
-
 
1255
                                ]);
-
 
1256
                                echo $this->formFile($element);
824
                    </div>
1257
                                ?>
-
 
1258
                            </div>
-
 
1259
						</div>
-
 
1260
 
-
 
1261
					</div>
-
 
1262
					<div class="tab-pane fade" id="tab-document-scheduled" role="tabpanel"
825
                </div>
1263
						aria-labelledby="tab-document-scheduled-tab">
826
                <div class="row">
1264
						<div class="row">
-
 
1265
							<div class="col-12 mt-3">
827
                    <div class="col-12 mt-3">
1266
								<div class="form-check mb-3">
828
                        <?php
1267
                        			<?php
829
                        $element = $form->get('file');
1268
                        $element = $form->get('scheduled_active');
-
 
1269
                        $element->setAttributes([
-
 
1270
                            'class' => 'form-check-input'
-
 
1271
                        ]);
-
 
1272
                        $element->setOptions([
-
 
1273
                            'label' => 'LABEL_SCHEDULED_ACTIVE',
-
 
1274
                            'class' => 'form-check-label'
-
 
1275
                        ]);
830
                        $element->setAttributes(['accept' => 'application/pdf']);
1276
                        echo $this->formCheckbox($element);
831
                        echo $this->formFile($element);
1277
                        echo $this->formLabel($element);
-
 
1278
                        ?>
-
 
1279
								</div>
-
 
1280
							</div>
-
 
1281
						</div>
-
 
1282
						<div class="row">
-
 
1283
							<div class="col-12 mt-3">
-
 
1284
                                <?php
-
 
1285
                                $element = $form->get('scheduled_timestamp');
-
 
1286
                                $element->setOptions([
-
 
1287
                                    'label' => 'LABEL_SCHEDULED_DATETIME',
-
 
1288
                                    'class' => 'form-label'
-
 
1289
                                ]);
-
 
1290
                                $element->setAttributes([
-
 
1291
                                    'class' => 'form-control'
-
 
1292
                                ]);
-
 
1293
                                echo $this->formLabel($element);
-
 
1294
                                echo $this->formText($element);
832
                        ?>
1295
                                ?>
-
 
1296
                            </div>
-
 
1297
						</div>
-
 
1298
 
-
 
1299
					</div>
-
 
1300
					<div class="tab-pane fade" id="tab-document-notification" role="tabpanel"
-
 
1301
						aria-labelledby="tab-document-notification-tab">
-
 
1302
						<div class="row">
-
 
1303
							<div class="col-12 mt-3">
-
 
1304
								<div class="form-check mb-3">
-
 
1305
                            		<?php
-
 
1306
                            $element = $form->get('notification_active');
-
 
1307
                            $element->setAttributes([
-
 
1308
                                'class' => 'form-check-input'
-
 
1309
                            ]);
-
 
1310
                            $element->setOptions([
-
 
1311
                                'label' => 'LABEL_NOTIFICATION_ACTIVE',
-
 
1312
                                'class' => 'form-check-label'
-
 
1313
                            ]);
-
 
1314
                            echo $this->formCheckbox($element);
-
 
1315
                            echo $this->formLabel($element);
-
 
1316
                            ?>
-
 
1317
								</div>
-
 
1318
							</div>
-
 
1319
						</div>
-
 
1320
						<div class="row">
-
 
1321
							<div class="col-12 mt-3">
-
 
1322
								<div class="form-check mb-3">
-
 
1323
                            		<?php
-
 
1324
                            $element = $form->get('notification_custom_active');
-
 
1325
                            $element->setAttributes([
-
 
1326
                                'class' => 'form-check-input'
-
 
1327
                            ]);
-
 
1328
                            $element->setOptions([
-
 
1329
                                'label' => 'LABEL_USE_CUSTOM_NOTIFICATION',
-
 
1330
                                'class' => 'form-check-label'
-
 
1331
                            ]);
-
 
1332
                            echo $this->formCheckbox($element);
-
 
1333
                            echo $this->formLabel($element);
-
 
1334
                            ?>
-
 
1335
								</div>
-
 
1336
 
-
 
1337
							</div>
-
 
1338
						</div>
-
 
1339
 
-
 
1340
						<div class="row">
-
 
1341
							<div class="col-12 mt-3">
-
 
1342
                                <?php
-
 
1343
                                $element = $form->get('notification_custom_title');
-
 
1344
                                $element->setOptions([
-
 
1345
                                    'label' => 'LABEL_TITLE',
-
 
1346
                                    'class' => 'form-label'
-
 
1347
                                ]);
-
 
1348
                                $element->setAttributes([
-
 
1349
                                    'class' => 'form-control'
-
 
1350
                                ]);
-
 
1351
                                echo $this->formLabel($element);
-
 
1352
                                echo $this->formText($element);
833
                    </div>
1353
                                ?>
-
 
1354
              				</div>
-
 
1355
						</div>
-
 
1356
						<div class="row">
-
 
1357
							<div class="col-12 mt-3">
-
 
1358
                                <?php
-
 
1359
                                $element = $form->get('notification_custom_description');
-
 
1360
                                $element->setOptions([
-
 
1361
                                    'label' => 'LABEL_DESCRIPTION',
-
 
1362
                                    'class' => 'form-label'
-
 
1363
                                ]);
-
 
1364
                                $element->setAttributes([
-
 
1365
                                    'id' => 'notification_custom_description_document',
-
 
1366
                                    'rows' => '2',
-
 
1367
                                    'class' => 'form-control'
-
 
1368
                                ]);
-
 
1369
                                echo $this->formLabel($element);
-
 
1370
                                echo $this->formTextArea($element);
834
                </div>
1371
                                ?>
-
 
1372
                        	</div>
-
 
1373
						</div>
-
 
1374
					</div>
-
 
1375
				</div>
-
 
1376
 
-
 
1377
 
-
 
1378
 
835
            </div>
1379
			</div>
836
            <div class="modal-footer text-right">
1380
			<div class="modal-footer text-right">
-
 
1381
				<button type="submit" class="btn btn-sm btn-primary save">LABEL_UPLOAD</button>
837
                <button type="submit" class="btn btn-sm btn-primary save">LABEL_UPLOAD</button>
1382
				<button type="button"
838
                <button type="button" class="btn btn-light cancel btn-modal-feed-document-close">LABEL_CANCEL</button>
1383
					class="btn btn-light cancel btn-modal-feed-document-close">LABEL_CANCEL</button>
839
            </div>
1384
			</div>
840
        </div>
1385
		</div>
-
 
1386
		<a href="#" title="" class="close-box btn-feed-document-close"><i
841
        <a href="#" title="" class="close-box btn-feed-document-close"><i class="la la-close"></i></a>
1387
			class="la la-close"></i></a>
842
        <?php echo $this->form()->closeTag($form); ?>
1388
        <?php echo $this->form()->closeTag($form); ?>
843
    </div>
1389
    </div>
Línea 844... Línea 1390...
844
</div>
1390
</div>
845
 
1391
 
846
<div class="modal" tabindex="-1" role="dialog" id="modal-feed-box">
1392
<div class="modal" tabindex="-1" role="dialog" id="modal-feed-box">
847
    <div class="modal-dialog modal-xl" role="document">
1393
	<div class="modal-dialog modal-xl" role="document">
848
        <?php
1394
        <?php
849
        $form = $this->formFeed;
1395
        $form = $this->formFeed;
850
        $form->setAttributes([
1396
        $form->setAttributes([
851
            'method' => 'post',
1397
            'method' => 'post',
852
            'action' => $this->url('feeds/add'),
1398
            'action' => $this->url('feeds/add'),
853
            'name' => 'form-feed',
1399
            'name' => 'form-feed',
854
            'id' => 'form-feed',
1400
            'id' => 'form-feed'
855
        ]);
1401
        ]);
Línea 856... Línea -...
856
        $form->prepare();
-
 
857
        echo $this->form()->openTag($form);
-
 
858
 
1402
        $form->prepare();
859
 
1403
        echo $this->form()->openTag($form);
860
 
1404
 
861
        ?>
1405
        ?>
862
        <div class="modal-content">
1406
        <div class="modal-content">
863
            <div class="modal-header">
1407
			<div class="modal-header">
-
 
1408
				<h6 class="modal-title">LABEL_SHARE</h6>
-
 
1409
			</div>
-
 
1410
			<div class="modal-body">
-
 
1411
 
-
 
1412
 
-
 
1413
				<ul class="nav nav-tabs" id="tabShare" role="tablist">
-
 
1414
					<li class="nav-item"><a class="nav-link active" id="tab-share-basic-tab"
-
 
1415
						data-bs-toggle="tab" href="#tab-share-basic" role="tab"
-
 
1416
						aria-controls="basic" aria-selected="true">LABEL_BASIC</a></li>
-
 
1417
					<li class="nav-item"><a class="nav-link" id="tab-share-scheduled-tab"
-
 
1418
						data-bs-toggle="tab" href="#tab-share-scheduled" role="tab"
-
 
1419
						aria-controls="scheduled" aria-selected="false">LABEL_SCHEDULED</a>
-
 
1420
					</li>
-
 
1421
					<li class="nav-item"><a class="nav-link" id="tab-share-notification-tab"
-
 
1422
						data-bs-toggle="tab" href="#tab-share-notification" role="tab"
-
 
1423
						aria-controls="notification" aria-selected="false">LABEL_NOTIFICATION</a>
-
 
1424
					</li>
-
 
1425
				</ul>
-
 
1426
				<div class="tab-content border border-top-0 p-3" id="tabTextContent">
-
 
1427
					<div class="tab-pane fade show active" id="tab-share-basic" role="tabpanel"
-
 
1428
						aria-labelledby="basic-tab">
-
 
1429
						<div class="row">
-
 
1430
							<div class="col-12 mt-3">
-
 
1431
                                <?php
-
 
1432
                                $element = $form->get('description');
-
 
1433
                                $element->setAttributes([
-
 
1434
                                    'id' => 'description_feed',
-
 
1435
                                    'rows' => '2',
-
 
1436
                                    'placeholder' => 'LABEL_WHAT_DO_YOU_HAVE_IN_MIND',
-
 
1437
                                    'class' => 'form-control'
864
                <h6 class="modal-title">LABEL_SHARE</h6>
1438
                                ]);
-
 
1439
                                echo $this->formTextArea($element);
-
 
1440
                                ?>
-
 
1441
                            </div>
-
 
1442
						</div>
-
 
1443
					</div>
865
            </div>
1444
					<div class="tab-pane fade" id="tab-share-scheduled" role="tabpanel"
-
 
1445
						aria-labelledby="scheduled-tab">
866
            <div class="modal-body">
1446
						<div class="row">
867
                <div class="row">
1447
							<div class="col-12 mt-3">
-
 
1448
								<div class="form-check mb-3">
-
 
1449
                        			<?php
-
 
1450
                        $element = $form->get('scheduled_active');
-
 
1451
                        $element->setAttributes([
-
 
1452
                            'class' => 'form-check-input'
868
                	<div class="col-12 mt-3">
1453
                        ]);
-
 
1454
                        $element->setOptions([
-
 
1455
                            'label' => 'LABEL_SCHEDULED_ACTIVE',
869
                    <?php
1456
                            'class' => 'form-check-label'
870
                    $element = $form->get('description');
1457
                        ]);
-
 
1458
                        echo $this->formCheckbox($element);
-
 
1459
                        echo $this->formLabel($element);
-
 
1460
                        ?>
-
 
1461
								</div>
-
 
1462
							</div>
-
 
1463
						</div>
-
 
1464
						<div class="row">
-
 
1465
							<div class="col-12 mt-3">
-
 
1466
                                <?php
-
 
1467
                                $element = $form->get('scheduled_timestamp');
-
 
1468
                                $element->setOptions([
-
 
1469
                                    'label' => 'LABEL_SCHEDULED_DATETIME',
-
 
1470
                                    'class' => 'form-label'
-
 
1471
                                ]);
-
 
1472
                                $element->setAttributes([
-
 
1473
                                    'class' => 'form-control'
-
 
1474
                                ]);
871
                    $element->setAttributes(['id' => 'description_feed', 'rows' => '2', 'placeholder' => '¿Qué tienes en mente?', 'class' => 'form-control']);
1475
                                echo $this->formLabel($element);
-
 
1476
                                echo $this->formText($element);
-
 
1477
                                ?>
-
 
1478
                            </div>
-
 
1479
						</div>
-
 
1480
 
-
 
1481
					</div>
-
 
1482
					<div class="tab-pane fade" id="tab-share-notification" role="tabpanel"
-
 
1483
						aria-labelledby="notification-tab">
-
 
1484
						<div class="row">
-
 
1485
							<div class="col-12 mt-3">
-
 
1486
								<div class="form-check mb-3">
-
 
1487
                            		<?php
-
 
1488
                            $element = $form->get('notification_active');
-
 
1489
                            $element->setAttributes([
-
 
1490
                                'class' => 'form-check-input'
-
 
1491
                            ]);
-
 
1492
                            $element->setOptions([
-
 
1493
                                'label' => 'LABEL_NOTIFICATION_ACTIVE',
-
 
1494
                                'class' => 'form-check-label'
-
 
1495
                            ]);
-
 
1496
                            echo $this->formCheckbox($element);
-
 
1497
                            echo $this->formLabel($element);
-
 
1498
                            ?>
-
 
1499
								</div>
-
 
1500
							</div>
-
 
1501
						</div>
-
 
1502
						<div class="row">
-
 
1503
							<div class="col-12 mt-3">
-
 
1504
								<div class="form-check mb-3">
-
 
1505
                            		<?php
-
 
1506
                            $element = $form->get('notification_custom_active');
-
 
1507
                            $element->setAttributes([
-
 
1508
                                'class' => 'form-check-input'
-
 
1509
                            ]);
-
 
1510
                            $element->setOptions([
-
 
1511
                                'label' => 'LABEL_USE_CUSTOM_NOTIFICATION',
-
 
1512
                                'class' => 'form-check-label'
-
 
1513
                            ]);
-
 
1514
                            echo $this->formCheckbox($element);
-
 
1515
                            echo $this->formLabel($element);
-
 
1516
                            ?>
-
 
1517
								</div>
-
 
1518
 
-
 
1519
							</div>
-
 
1520
						</div>
-
 
1521
 
-
 
1522
						<div class="row">
-
 
1523
							<div class="col-12 mt-3">
-
 
1524
                                <?php
-
 
1525
                                $element = $form->get('notification_custom_title');
-
 
1526
                                $element->setOptions([
-
 
1527
                                    'label' => 'LABEL_TITLE',
-
 
1528
                                    'class' => 'form-label'
-
 
1529
                                ]);
-
 
1530
                                $element->setAttributes([
-
 
1531
                                    'class' => 'form-control'
-
 
1532
                                ]);
872
                    echo $this->formTextArea($element);
1533
                                echo $this->formLabel($element);
-
 
1534
                                echo $this->formText($element);
-
 
1535
                                ?>
-
 
1536
              				</div>
-
 
1537
						</div>
-
 
1538
						<div class="row">
-
 
1539
							<div class="col-12 mt-3">
-
 
1540
                                <?php
-
 
1541
                                $element = $form->get('notification_custom_description');
-
 
1542
                                $element->setOptions([
-
 
1543
                                    'label' => 'LABEL_DESCRIPTION',
-
 
1544
                                    'class' => 'form-label'
-
 
1545
                                ]);
-
 
1546
                                $element->setAttributes([
-
 
1547
                                    'id' => 'notification_custom_description_share',
-
 
1548
                                    'rows' => '2',
-
 
1549
                                    'class' => 'form-control'
-
 
1550
                                ]);
873
                    ?>
1551
                                echo $this->formLabel($element);
-
 
1552
                                echo $this->formTextArea($element);
-
 
1553
                                ?>
-
 
1554
                        	</div>
-
 
1555
						</div>
-
 
1556
					</div>
874
                    </div>
1557
				</div>
875
                </div>
1558
 
-
 
1559
			</div>
876
            </div>
1560
			<div class="modal-footer text-right">
877
            <div class="modal-footer text-right">
1561
				<button type="submit" class="btn btn-sm btn-primary save">LABEL_SAVE</button>
878
                <button type="submit" class="btn btn-sm btn-primary save">LABEL_SAVE</button>
1562
				<button type="button"
879
                <button type="button" class="btn btn-light cancel btn-modal-feed-close">LABEL_CANCEL</button>
1563
					class="btn btn-light cancel btn-modal-feed-close">LABEL_CANCEL</button>
-
 
1564
			</div>
880
            </div>
1565
		</div>
881
        </div>
1566
		<a href="#" title="" class="close-box btn-modal-feed-close"><i
882
        <a href="#" title="" class="close-box btn-modal-feed-close"><i class="la la-close"></i></a>
1567
			class="la la-close"></i></a>
Línea 890... Línea 1575...
890
<script id="commentTemplate" type="text/x-jsrender">
1575
<script id="commentTemplate" type="text/x-jsrender">
891
    <li>
1576
    <li>
892
        <div class="comment-list">
1577
        <div class="comment-list">
893
                <div class="comment comment-{{:unique}}" >
1578
                <div class="comment comment-{{:unique}}" >
894
                    <a href="{{>user_url}}"><h6>{{>user_name}}</h6>
1579
                    <a href="{{>user_url}}"><h6>{{>user_name}}</h6>
895
                    <span><img src="<?php echo $this->basePath('assets/images/clock.png') ?>" alt="">{{>time_elapsed}} 
1580
                    <span><img src="<?php echo $this->basePath('assets/images/clock.png') ?>" alt="">{{>time_elapsed}}
896
                {{if link_delete}}
1581
                {{if link_delete}}
897
                    <a href="#" class="btn-comment-trash" data-link="{{:link_delete}}" data-comment-unique="{{>unique}}"><i class="fa fa-trash"></i></a> 
1582
                    <a href="#" class="btn-comment-trash" data-link="{{:link_delete}}" data-comment-unique="{{>unique}}"><i class="fa fa-trash"></i></a>
898
                {{/if}}
1583
                {{/if}}
899
                    </span>
1584
                    </span>
900
                
1585
 
901
                    <p>{{>comment}}</p>
1586
                    <p>{{>comment}}</p>
902
                </div>
1587
                </div>
903
        </div>
1588
        </div>
904
    </li>
1589
    </li>
905
</script>
1590
</script>
Línea 908... Línea 1593...
908
    <div class="theme-container feed-{{>feed_unique}} mb-2">
1593
    <div class="theme-container feed-{{>feed_unique}} mb-2">
909
        <div class="feed-header">
1594
        <div class="feed-header">
910
            <a href="{{>owner_url}}">
1595
            <a href="{{>owner_url}}">
911
                <img src="{{>owner_image}}" alt="">
1596
                <img src="{{>owner_image}}" alt="">
912
            </a>
1597
            </a>
913
            
1598
 
914
            <div class="feed-info">
1599
            <div class="feed-info">
915
                <a href="{{>owner_url}}">
1600
                <a href="{{>owner_url}}">
916
                    <h2>{{>owner_name}}</h2>
1601
                    <h2>{{>owner_name}}</h2>
917
                </a>
1602
                </a>
Línea 918... Línea 1603...
918
 
1603
 
919
                <span>
1604
                <span>
920
                    <img src="<?php echo $this->basePath('assets/images/clock.png') ?>" alt="">
1605
                    <img src="<?php echo $this->basePath('assets/images/clock.png') ?>" alt="">
921
                    {{>owner_time_elapse}} 
1606
                    {{>owner_time_elapse}}
922
                    {{if feed_delete_url}}  
1607
                    {{if feed_delete_url}}
923
                        <a href="#" class="btn-feed-trash" data-link="{{:feed_delete_url}}" data-feed-unique="{{>feed_unique}}"><i class="fa fa-trash"></i></a>
1608
                        <a href="#" class="btn-feed-trash" data-link="{{:feed_delete_url}}" data-feed-unique="{{>feed_unique}}"><i class="fa fa-trash"></i></a>
924
                    {{/if}}
1609
                    {{/if}}
925
                </span>  
1610
                </span>
926
            </div>
1611
            </div>
Línea 927... Línea 1612...
927
        </div>
1612
        </div>
928
 
1613
 
Línea 948... Línea 1633...
948
                    <div class="feed-info">
1633
                    <div class="feed-info">
949
                        <h6>{{>shared_name}}</h6>
1634
                        <h6>{{>shared_name}}</h6>
950
                        <span>
1635
                        <span>
951
                            <img style="width: 12px; height: auto" src="<?php echo $this->basePath('assets/images/clock.png') ?>" alt="">
1636
                            <img style="width: 12px; height: auto" src="<?php echo $this->basePath('assets/images/clock.png') ?>" alt="">
952
                            {{>shared_time_elapse}}
1637
                            {{>shared_time_elapse}}
953
                        </span>       
1638
                        </span>
954
                    </div>
1639
                    </div>
955
                </div>
1640
                </div>
Línea 956... Línea 1641...
956
 
1641
 
957
                <div class="feed-body">
1642
                <div class="feed-body">
Línea 974... Línea 1659...
974
        <div class="feed-actions">
1659
        <div class="feed-actions">
975
            <span id="btn-comments-{{>feed_unique}}" class="btn-indicator"><i class="fa fa-comments"></i> {{>owner_comments}}</span>
1660
            <span id="btn-comments-{{>feed_unique}}" class="btn-indicator"><i class="fa fa-comments"></i> {{>owner_comments}}</span>
976
            <span id="btn-share-{{>feed_unique}}" class="btn-indicator"><i class="fa fa-share"></i> {{>owner_shared}}</span>
1661
            <span id="btn-share-{{>feed_unique}}" class="btn-indicator"><i class="fa fa-share"></i> {{>owner_shared}}</span>
977
        </div>
1662
        </div>
Línea 978... Línea 1663...
978
 
1663
 
979
        {{if comments}}  
1664
        {{if comments}}
980
            <ul class="comment-list comment-sec-{{>feed_unique}}" data-feed-unique="{{>feed_unique}}">
1665
            <ul class="comment-list comment-sec-{{>feed_unique}}" data-feed-unique="{{>feed_unique}}">
981
                {{for comments}}
1666
                {{for comments}}
982
                    <li>
1667
                    <li>
983
                        <div class="comment-container comment-{{:unique}}">
1668
                        <div class="comment-container comment-{{:unique}}">
984
                            <a href="{{>user_url}}">
1669
                            <a href="{{>user_url}}">
985
                                <h2>{{>user_name}}</h2>
1670
                                <h2>{{>user_name}}</h2>
Línea 986... Línea 1671...
986
                            </a>
1671
                            </a>
987
 
1672
 
988
                            <span>
1673
                            <span>
989
                                <img src="<?php echo $this->basePath('assets/images/clock.png') ?>" alt="">
1674
                                <img src="<?php echo $this->basePath('assets/images/clock.png') ?>" alt="">
990
                                {{>time_elapsed}} 
1675
                                {{>time_elapsed}}
991
                                {{if link_delete}}
1676
                                {{if link_delete}}
992
                                    <a href="#" class="btn-comment-trash" data-link="{{:link_delete}}" data-comment-unique="{{>unique}}">
1677
                                    <a href="#" class="btn-comment-trash" data-link="{{:link_delete}}" data-comment-unique="{{>unique}}">
993
                                        <i class="fa fa-trash"></i>
1678
                                        <i class="fa fa-trash"></i>
994
                                    </a> 
1679
                                    </a>
Línea 995... Línea 1680...
995
                                {{/if}}
1680
                                {{/if}}
996
                            </span>
1681
                            </span>
997
 
1682
 
998
                            <p>{{>comment}}</p>
1683
                            <p>{{>comment}}</p>
999
                        </div>
1684
                        </div>
1000
                    </li>
1685
                    </li>
1001
                {{/for}}
1686
                {{/for}}
1002
            </ul>
1687
            </ul>
1003
        {{/if}}
1688
        {{/if}}
1004
        
1689
 
1005
        <form class="form-comment-feed comment-form px-2 mb-2" data-feed-unique="{{>feed_unique}}"  action="{{>comment_add_url}}">
1690
        <form class="form-comment-feed comment-form px-2 mb-2" data-feed-unique="{{>feed_unique}}"  action="{{>comment_add_url}}">
1006
            <input type="text" name="comment" id="comment-{{>feed_unique}}" maxlength="256"  placeholder="LABEL_WRITE_A_COMMENT">
1691
            <input type="text" name="comment" id="comment-{{>feed_unique}}" maxlength="256"  placeholder="LABEL_WRITE_A_COMMENT">