Proyectos de Subversion LeadersLinked - Backend

Rev

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

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