Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16822 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
15831 efrain 1
<?php
2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
 
8
$routeSave       = $this->url('settings/my-private-network/moodle');
9
 
10
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
11
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
12
 
13
 
14
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/jquery.validate.js'));
15
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/additional-methods.js'));
16
$this->inlineScript()->appendFile($this->basePath('plugins/jquery-validation/localization/messages_es.js'));
17
 
18
$this->headLink()->appendStylesheet($this->basePath('plugins/bootstrap-fileinput/css/fileinput.css'));
19
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-fileinput/js/fileinput.js'));
20
 
21
$this->inlineScript()->captureStart();
22
echo <<<JS
23
    jQuery( document ).ready(function( $ ) {
24
 
25
        $.validator.setDefaults({
26
            debug: true,
27
            highlight: function(element) {
28
                $(element).addClass('is-invalid');
29
            },
30
            unhighlight: function(element) {
31
                $(element).removeClass('is-invalid');
32
            },
33
            errorElement: 'span',
34
            errorClass: 'error invalid-feedback',
35
            errorPlacement: function(error, element) {
36
                if(element.parent('.btn-file').length) {
37
                    error.insertAfter(element.parent().parent());
38
                } else if(element.parent('.toggle').length) {
39
                    error.insertAfter(element.parent().parent());
40
                } else {
41
                    error.insertAfter(element.parent());
42
                }
43
            }
44
        });
45
 
46
        $.fn.handleDisable = function() {
47
            const disabledValue = $('button[type="submit"]').prop('disabled')
48
            $('button[type="submit"]').prop('disabled', !disabledValue);
49
        }
50
 
51
        $.fn.showFormErrorValidator = function(fieldname, errors) {
52
            var element = $(elementname);
53
            if(element) {
54
                $(element).addClass('is-invalid');
55
 
56
 
57
                var error = $('<span id="' + elementname +'-error" class="error invalid-feedback">' + errors + '</div>');
58
                if(element.parent('.btn-file').length) {
59
                    error.insertAfter(element.parent().parent());
60
                } else if(element.parent('.toggle').length) {
61
                    error.insertAfter(element.parent().parent());
62
                } else {
63
                    error.insertAfter(element.parent());
64
                }
65
            }
66
        };
67
 
68
var validator  = $('#form').validate({
69
        debug: true,
70
        onclick: false,
71
        onkeyup: false,
72
        ignore: [],
73
        rules: {
74
            'file': {
75
                required: false,
76
                extension: 'jpg|jpeg|png',
77
                accept: 'image/jpg,image/jpeg,image/png'
78
            },
79
 
80
 
81
        },
82
        submitHandler: function(form)
83
        {
84
            var formdata = false;
85
            if (window.FormData){
86
                formdata = new FormData(form); //form[0]);
87
            }
88
 
89
            $.fn.handleDisable()
90
 
91
            $.ajax({
92
                'dataType'  : 'json',
93
                'accept'    : 'application/json',
94
                'method'    : 'post',
95
                'url'       :  $('#form').attr('action'),
96
                'data'      :  formdata,
97
                'processData': false,
98
                'contentType': false,
99
            }).done(function(response) {
100
                if(response['success']) {
101
                    $.fn.showSuccess(response['data'], $.fn.handleDisable)
102
 
103
                } else {
104
                    validator.resetForm();
105
                    if(jQuery.type(response['data']) == 'string') {
106
                        $.fn.showError(response['data']);
107
                    } else  {
108
                        $.each(response['data'], function( fieldname, errors ) {
109
                            $.fn.showFormErrorValidator('#form #' + fieldname, errors);
110
                        });
111
                    }
112
                }
113
            }).fail(function( jqXHR, textStatus, errorThrown) {
114
                $.fn.showError(textStatus);
115
            }).always(function() {
116
                NProgress.done();
117
            });
118
            return false;
119
        },
120
        invalidHandler: function(form, validator) {
121
 
122
        }
123
    });
124
 
125
 
126
    $('#form #file').fileinput({
127
        theme: 'fas',
128
        language: 'es',
129
        showUpload: false,
130
        dropZoneEnabled: false,
131
        maxFileCount: 1,
132
        allowedFileExtensions: ['jpeg', 'jpg', 'png'],
133
        msgPlaceholder: 'LABEL_RECOMMENDED_SIZE $image_size',
134
    });
135
 
136
});
137
JS;
138
$this->inlineScript()->captureEnd();
139
?>
140
 
141
<!-- Content Header (Page header) -->
142
<section class="content-header">
143
    <div class="container-fluid">
144
        <div class="row mb-2">
145
            <div class="col-sm-12">
146
                <h1>LABEL_MY_PRIVATE_NETWORK_MOODLE</h1>
147
            </div>
148
        </div>
149
        <div class="row mb-2">
150
            <div class="col-sm-12">
151
                <?php
152
                $form = $this->form;
153
                $form->setAttributes([
154
                    'method'  => 'post',
155
                    'action'  => $routeSave,
156
                    'name'    => 'form',
157
                    'id'      => 'form',
158
                ]);
159
 
160
                $form->prepare();
161
                echo $this->form()->openTag($form);
162
                ?>
163
                <div class="form-group">
164
                    <?php
165
                    $element = $form->get('file');
166
 
167
                    $element->setAttributes(['class' => 'form-control',  'accept' => 'image/jpg,image/jpeg,image/png']);
168
                    $element->setOptions(['label' => 'LABEL_IMAGE']);
169
                    echo $this->formLabel($element);
170
                    ?>
171
                    <div class="file-loading">
172
                        <?php echo $this->formFile($element); ?>
173
                    </div>
174
                </div>
175
                <div class="form-group">
176
                    <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
177
                </div>
178
                <?php echo $this->form()->closeTag($form); ?>
179
            </div>
180
        </div>
181
    </div><!-- /.container-fluid -->
182
</section>