Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 15457 Rev 16822
Línea 11... Línea 11...
11
 
11
 
12
 
12
 
Línea 13... Línea 13...
13
$allowApprove   = $acl->isAllowed($roleName, 'users/request-access/approve') ? 1 : 0;
13
$allowApprove   = $acl->isAllowed($roleName, 'users/request-access/approve') ? 1 : 0;
14
$allowReject    = $acl->isAllowed($roleName, 'users/request-access/reject') ? 1 : 0;
14
$allowReject    = $acl->isAllowed($roleName, 'users/request-access/reject') ? 1 : 0;
Línea 15... Línea 15...
15
 
15
 
16
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
16
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
-
 
17
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
-
 
18
 
-
 
19
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
-
 
20
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
-
 
21
 
Línea 17... Línea -...
17
$this->inlineScript()->appendFile($this->basePath('plugins/nprogress/nprogress.js'));
-
 
18
 
-
 
19
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-bs4/css/dataTables.bootstrap4.min.css'));
-
 
20
$this->headLink()->appendStylesheet($this->basePath('plugins/datatables-responsive/css/responsive.bootstrap4.min.css'));
-
 
Línea 21... Línea -...
21
 
-
 
Línea 22... Línea 22...
22
$this->inlineScript()->appendFile($this->basePath('plugins/datatables/jquery.dataTables.min.js'));
22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
23
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js'));
23
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
Línea 102... Línea 102...
102
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
102
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
103
                },
103
                },
104
            },
104
            },
105
            'drawCallback': function( settings ) {
105
            'drawCallback': function( settings ) {
106
                NProgress.done();
106
                NProgress.done();
107
                $('button.btn-approve').confirmation({
-
 
108
                    rootSelector: 'button.btn-approve',
-
 
109
                    title : 'LABEL_ARE_YOU_SURE',
-
 
110
                    singleton : true,
-
 
111
                    btnOkLabel: 'LABEL_YES',
-
 
112
                    btnCancelLabel: 'LABEL_NO',
-
 
113
                    onConfirm: function(value) {
-
 
114
                        action = $(this).data('href');
-
 
115
                        NProgress.start();
-
 
116
                        $.ajax({
-
 
117
                            'dataType'  : 'json',
-
 
118
                            'accept'    : 'application/json',
-
 
119
                            'method'    : 'post',
-
 
120
                            'url'       :  action,
-
 
121
                        }).done(function(response) {
-
 
122
                            if(response['success']) {
-
 
123
                                $.fn.showSuccess(response['data']);
-
 
124
                                gridTable.api().ajax.reload(null, false);
-
 
125
                            } else {
-
 
126
                                $.fn.showError(response['data']);
-
 
127
                            }
-
 
128
                        }).fail(function( jqXHR, textStatus, errorThrown) {
-
 
129
                            $.fn.showError(textStatus);
-
 
130
                        }).always(function() {
-
 
131
                            NProgress.done();
-
 
132
                        });
-
 
133
                    },
-
 
134
                });
-
 
135
 
107
               
136
                $('button.btn-reject').confirmation({
-
 
137
                    rootSelector: 'button.btn-reject',
-
 
138
                    title : 'LABEL_ARE_YOU_SURE',
-
 
139
                    singleton : true,
-
 
140
                    btnOkLabel: 'LABEL_YES',
-
 
141
                    btnCancelLabel: 'LABEL_NO',
-
 
142
                    onConfirm: function(value) {
-
 
143
                        action = $(this).data('href');
-
 
144
                        NProgress.start();
-
 
145
                        $.ajax({
-
 
146
                            'dataType'  : 'json',
-
 
147
                            'accept'    : 'application/json',
-
 
148
                            'method'    : 'post',
-
 
149
                            'url'       :  action,
-
 
150
                        }).done(function(response) {
-
 
151
                            if(response['success']) {
-
 
152
                                $.fn.showSuccess(response['data']);
-
 
153
                                gridTable.api().ajax.reload(null, false);
-
 
154
                            } else {
-
 
155
                                $.fn.showError(response['data']);
-
 
156
                            }
-
 
157
                        }).fail(function( jqXHR, textStatus, errorThrown) {
-
 
158
                            $.fn.showError(textStatus);
-
 
159
                        }).always(function() {
-
 
160
                            NProgress.done();
-
 
161
                        });
-
 
162
                    },
-
 
163
                });
-
 
164
            },
108
            },
165
            'aoColumns': [
109
            'aoColumns': [
166
                { 'mDataProp': 'first_name' },
110
                { 'mDataProp': 'first_name' },
167
                { 'mDataProp': 'last_name' },
111
                { 'mDataProp': 'last_name' },
168
                { 'mDataProp': 'email' },
112
                { 'mDataProp': 'email' },
Línea 208... Línea 152...
208
            e.preventDefault();
152
            e.preventDefault();
209
            gridTable.api().ajax.reload(null, false);
153
            gridTable.api().ajax.reload(null, false);
210
        });
154
        });
Línea -... Línea 155...
-
 
155
        
-
 
156
 
-
 
157
 $('body').on('click', 'button.btn-approve', function(e) { 
-
 
158
        e.preventDefault();
-
 
159
        var action = $(this).data('href');
-
 
160
 
-
 
161
 
-
 
162
          swal.fire({
-
 
163
            title: 'LABEL_ARE_YOU_SURE',
-
 
164
            icon: 'question',
-
 
165
            cancelButtonText: 'LABEL_NO',
-
 
166
            showCancelButton: true,
-
 
167
            confirmButtonText: 'LABEL_YES'
-
 
168
          }).then((result) => {
-
 
169
            if (result.isConfirmed) {
-
 
170
 
-
 
171
                    NProgress.start();
-
 
172
                    $.ajax({
-
 
173
                        'dataType'  : 'json',
-
 
174
                        'accept'    : 'application/json',
-
 
175
                        'method'    : 'post',
-
 
176
                        'url'       :  action,
-
 
177
                    }).done(function(response) {
-
 
178
                        if(response['success']) {
-
 
179
                            $.fn.showSuccess(response['data']);
-
 
180
                            gridTable.api().ajax.reload(null, false);
-
 
181
                        } else {
-
 
182
                            $.fn.showError(response['data']);
-
 
183
                        }
-
 
184
                    }).fail(function( jqXHR, textStatus, errorThrown) {
-
 
185
                        $.fn.showError(textStatus);
-
 
186
                    }).always(function() {
-
 
187
                        NProgress.done();
-
 
188
                    });
-
 
189
            }
-
 
190
       });
-
 
191
    });
-
 
192
 
-
 
193
 
-
 
194
 $('body').on('click', 'button.btn-reject', function(e) { 
-
 
195
        e.preventDefault();
-
 
196
        var action = $(this).data('href');
-
 
197
 
-
 
198
 
-
 
199
          swal.fire({
-
 
200
            title: 'LABEL_ARE_YOU_SURE',
-
 
201
            icon: 'question',
-
 
202
            cancelButtonText: 'LABEL_NO',
-
 
203
            showCancelButton: true,
-
 
204
            confirmButtonText: 'LABEL_YES'
-
 
205
          }).then((result) => {
-
 
206
            if (result.isConfirmed) {
-
 
207
 
-
 
208
                    NProgress.start();
-
 
209
                    $.ajax({
-
 
210
                        'dataType'  : 'json',
-
 
211
                        'accept'    : 'application/json',
-
 
212
                        'method'    : 'post',
-
 
213
                        'url'       :  action,
-
 
214
                    }).done(function(response) {
-
 
215
                        if(response['success']) {
-
 
216
                            $.fn.showSuccess(response['data']);
-
 
217
                            gridTable.api().ajax.reload(null, false);
-
 
218
                        } else {
-
 
219
                            $.fn.showError(response['data']);
-
 
220
                        }
-
 
221
                    }).fail(function( jqXHR, textStatus, errorThrown) {
-
 
222
                        $.fn.showError(textStatus);
-
 
223
                    }).always(function() {
-
 
224
                        NProgress.done();
-
 
225
                    });
-
 
226
            }
Línea 211... Línea 227...
211
        
227
       });
212
 
228
    });