Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16928 | Rev 16971 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 16928 Rev 16929
Línea 17... Línea 17...
17
 
17
 
18
 
18
 
Línea 19... Línea -...
19
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
-
 
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
21
 
-
 
-
 
19
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
-
 
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
21
 
Línea 22... Línea 22...
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/jquery.validate.js'));
22
 
Línea 23... Línea 23...
23
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/additional-methods.js'));
23
 
24
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-validation/localization/messages_es.js'));
24
 
Línea 55... Línea 55...
55
 
55
 
56
$this->inlineScript()->captureStart();
56
$this->inlineScript()->captureStart();
57
echo <<<JS
57
echo <<<JS
Línea 58... Línea -...
58
    jQuery( document ).ready(function( $ ) {
-
 
59
 
-
 
60
        $.validator.setDefaults({
-
 
61
            debug: true,
-
 
62
            highlight: function(element) {
-
 
63
                $(element).addClass('is-invalid');
-
 
64
            },
-
 
65
            unhighlight: function(element) {
-
 
66
                $(element).removeClass('is-invalid');
-
 
67
            },
-
 
68
            errorElement: 'span',
-
 
69
            errorClass: 'error invalid-feedback',
-
 
70
            errorPlacement: function(error, element) {
-
 
71
                if(element.parent('.form-group').length) {
-
 
72
                    error.insertAfter(element);
-
 
73
                } else if(element.parent('.toggle').length) {
-
 
74
                    error.insertAfter(element.parent().parent());
-
 
75
                } else {
-
 
76
                    error.insertAfter(element.parent());
-
 
77
                }
-
 
78
            }
-
 
79
        });
58
    jQuery( document ).ready(function( $ ) {
80
    
-
 
81
    
-
 
82
        $.fn.showFormErrorValidator = function(fieldname, errors) {
-
 
83
            var field = $(fieldname);
-
 
84
            if(field) {
-
 
85
                $(field).addClass('is-invalid');
-
 
86
    
-
 
87
 
-
 
88
                var error = $('<span id="' + fieldname +'-error" class="error invalid-feedback">' + errors + '</div>');
-
 
89
                if(field.parent('.form-group').length) {
-
 
90
                    error.insertAfter(field);
-
 
91
                } else  if(field.parent('.toggle').length) {
-
 
92
                    error.insertAfter(field.parent().parent());
-
 
93
                } else {
-
 
94
                    error.insertAfter(field.parent());
-
 
95
                }
-
 
Línea 96... Línea 59...
96
            }
59
 
Línea 544... Línea 507...
544
                <h6 class="modal-title">LABEL_ENGAGEMENT_ADD_REWARD</h6>
507
                <h6 class="modal-title">LABEL_ENGAGEMENT_ADD_REWARD</h6>
545
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
508
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
546
            </div>
509
            </div>
Línea 547... Línea 510...
547
 
510
 
548
            <!-- Modal body -->
-
 
549
            <div class="modal-body">
511
            <!-- Modal body -->
550
                <?php
512
                <?php
551
                $form = $this->formAdd;
513
                $form = $this->formAdd;
552
                $form->setAttributes([
514
                $form->setAttributes([
553
                    'method'    => 'post',
515
                    'method'    => 'post',
Línea 557... Línea 519...
557
                ]);
519
                ]);
Línea 558... Línea 520...
558
 
520
 
559
                $form->prepare();
521
                $form->prepare();
560
                echo $this->form()->openTag($form);
522
                echo $this->form()->openTag($form);
-
 
523
                ?>
-
 
524
            <div class="modal-body">
561
                ?>
525
            
-
 
526
              	<div class="row">
562
                <div class="form-group">
527
              		<div class="col-12 mt-3">
563
                    <?php
528
                    <?php
564
                    $element = $form->get('name');
529
                    $element = $form->get('name');
565
                    $element->setOptions(['label' => 'LABEL_NAME']);
530
                    $element->setOptions(['label' => 'LABEL_NAME']);
Línea 566... Línea 531...
566
                    $element->setAttributes(['class' => 'form-control']);
531
                    $element->setAttributes(['class' => 'form-control']);
567
 
532
 
568
                    echo $this->formLabel($element);
533
                    echo $this->formLabel($element);
-
 
534
                    echo $this->formText($element);
569
                    echo $this->formText($element);
535
                    ?>
570
                    ?>
536
                    </div>
-
 
537
                </div>
571
                </div>
538
              	<div class="row">
572
              	<div class="form-group">
539
              		<div class="col-12 mt-3">
573
                    <?php
540
                    <?php
574
                    $element = $form->get('points');
541
                    $element = $form->get('points');
Línea 575... Línea 542...
575
                    $element->setOptions(['label' => 'LABEL_POINTS']);
542
                    $element->setOptions(['label' => 'LABEL_POINTS']);
576
                    $element->setAttributes(['class' => 'form-control']);
543
                    $element->setAttributes(['class' => 'form-control']);
577
                    
544
                    
-
 
545
                    echo $this->formLabel($element);
578
                    echo $this->formLabel($element);
546
                    echo $this->formNumber($element);
579
                    echo $this->formNumber($element);
547
                    ?>
-
 
548
                    </div>
580
                    ?>
549
                </div>
Línea 581... Línea 550...
581
                </div>
550
              	<div class="row">
582
                <div class="form-group">
551
              		<div class="col-12 mt-3">
Línea 583... Línea 552...
583
                    <?php
552
                    <?php
584
                    
553
                    
585
                    $element = $form->get('status');
554
                    $element = $form->get('status');
586
                    $element->setOptions(['label' => 'LABEL_STATUS']);
555
                    $element->setOptions(['label' => 'LABEL_STATUS']);
-
 
556
                    
587
                    
557
                    echo $this->formLabel($element);
588
                    echo $this->formLabel($element);
558
                    echo '<br/>';
-
 
559
                    echo $this->formCheckbox($element);
589
                    echo '<br/>';
560
                    ?>
590
                    echo $this->formCheckbox($element);
561
                    </div>
591
                    ?>
562
                </div>
592
                </div>
563
              	<div class="row">
Línea 593... Línea 564...
593
              	<div class="form-group">
564
              		<div class="col-12 mt-3">
594
                    <?php
565
                    <?php
595
                    $element = $form->get('image');
566
                    $element = $form->get('image');
-
 
567
                    $element->setOptions(['label' => 'LABEL_IMAGE']);
596
                    $element->setOptions(['label' => 'LABEL_IMAGE']);
568
                    $element->setAttributes(['class' => 'form-control']);
-
 
569
                    
-
 
570
                    echo $this->formLabel($element);
597
                    $element->setAttributes(['class' => 'form-control']);
571
                    echo $this->formFile($element);
598
                    
572
                    ?>
599
                    echo $this->formLabel($element);
573
                    </div>
600
                    echo $this->formFile($element);
574
                </div>
601
                    ?>
575
 
602
                </div>
-
 
603
                <div class="text-right">
-
 
604
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
-
 
605
                    <button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
576
            </div>
606
                </div>
577
                <div class="modal-footer text-right">
607
                <?php echo $this->form()->closeTag($form); ?>
578
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
Línea 608... Línea 579...
608
            </div>
579
                    <button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
Línea 621... Línea 592...
621
            <div class="modal-header">
592
            <div class="modal-header">
622
                <h6 class="modal-title">LABEL_ENGAGEMENT_EDIT_REWARD</h6>
593
                <h6 class="modal-title">LABEL_ENGAGEMENT_EDIT_REWARD</h6>
623
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
594
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
624
            </div>
595
            </div>
Línea 625... Línea -...
625
 
-
 
626
            <!-- Modal body -->
-
 
627
            <div class="modal-body">
596
 
628
                <?php
597
                <?php
629
                $form = $this->formEdit;
598
                $form = $this->formEdit;
630
                $form->setAttributes([
599
                $form->setAttributes([
631
                    'method'    => 'post',
600
                    'method'    => 'post',
Línea 634... Línea 603...
634
                ]);
603
                ]);
Línea 635... Línea 604...
635
 
604
 
636
                $form->prepare();
605
                $form->prepare();
637
                echo $this->form()->openTag($form);
606
                echo $this->form()->openTag($form);
-
 
607
                ?>
-
 
608
            <div class="modal-body">
638
                ?>
609
 
-
 
610
              	<div class="row">
639
                <div class="form-group">
611
              		<div class="col-12 mt-3">
640
                    <?php
612
                    <?php
641
                    $element = $form->get('name');
613
                    $element = $form->get('name');
642
                    $element->setOptions(['label' => 'LABEL_NAME']);
614
                    $element->setOptions(['label' => 'LABEL_NAME']);
Línea 643... Línea 615...
643
                    $element->setAttributes(['class' => 'form-control']);
615
                    $element->setAttributes(['class' => 'form-control']);
644
 
616
 
645
                    echo $this->formLabel($element);
617
                    echo $this->formLabel($element);
-
 
618
                    echo $this->formText($element);
646
                    echo $this->formText($element);
619
                    ?>
647
                    ?>
620
                    </div>
-
 
621
                </div>
648
                </div>
622
              	<div class="row">
649
              	<div class="form-group">
623
              		<div class="col-12 mt-3">
650
                    <?php
624
                    <?php
651
                    $element = $form->get('points');
625
                    $element = $form->get('points');
Línea 652... Línea 626...
652
                    $element->setOptions(['label' => 'LABEL_POINTS']);
626
                    $element->setOptions(['label' => 'LABEL_POINTS']);
653
                    $element->setAttributes(['class' => 'form-control']);
627
                    $element->setAttributes(['class' => 'form-control']);
654
                    
628
                    
-
 
629
                    echo $this->formLabel($element);
655
                    echo $this->formLabel($element);
630
                    echo $this->formNumber($element);
656
                    echo $this->formNumber($element);
631
                    ?>
-
 
632
                    </div>
657
                    ?>
633
                </div>
Línea 658... Línea 634...
658
                </div>
634
              	<div class="row">
659
                <div class="form-group">
635
              		<div class="col-12 mt-3">
Línea 660... Línea 636...
660
                    <?php
636
                    <?php
661
                    
637
                    
662
                    $element = $form->get('status');
638
                    $element = $form->get('status');
663
                    $element->setOptions(['label' => 'LABEL_STATUS']);
639
                    $element->setOptions(['label' => 'LABEL_STATUS']);
-
 
640
                    
664
                    
641
                    echo $this->formLabel($element);
665
                    echo $this->formLabel($element);
642
                    echo '<br/>';
-
 
643
                    echo $this->formCheckbox($element);
666
                    echo '<br/>';
644
                    ?>
667
                    echo $this->formCheckbox($element);
645
                    </div>
668
                    ?>
646
                </div>
669
                </div>
647
              	<div class="row">
Línea 670... Línea 648...
670
              	<div class="form-group">
648
              		<div class="col-12 mt-3">
671
                    <?php
649
                    <?php
672
                    $element = $form->get('image');
650
                    $element = $form->get('image');
-
 
651
                    $element->setOptions(['label' => 'LABEL_IMAGE']);
673
                    $element->setOptions(['label' => 'LABEL_IMAGE']);
652
                    $element->setAttributes(['class' => 'form-control']);
-
 
653
                    
-
 
654
                    echo $this->formLabel($element);
674
                    $element->setAttributes(['class' => 'form-control']);
655
                    echo $this->formFile($element);
675
                    
656
                    ?>
676
                    echo $this->formLabel($element);
657
                    </div>
677
                    echo $this->formFile($element);
658
                </div>
678
                    ?>
659
    
679
                </div>
-
 
680
                <div class="text-right">
-
 
Línea 681... Línea 660...
681
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
660
            </div>
682
                    <button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
661
            <div class="modal-footer text-right">
683
                </div>
662
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
684
                <?php echo $this->form()->closeTag($form); ?>
663
                    <button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>