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
15457 efrain 1
<?php
2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
 
5
$roleName = $currentUser->getUserTypeId();
6
 
7
 
8
//$routeAdd       = $this->url('users/add');
9
$routeDatatable = $this->url('users/request-access');
10
$routeDashboard = $this->url('dashboard');
11
 
12
 
13
$allowApprove   = $acl->isAllowed($roleName, 'users/request-access/approve') ? 1 : 0;
14
$allowReject    = $acl->isAllowed($roleName, 'users/request-access/reject') ? 1 : 0;
15
 
16
$this->headLink()->appendStylesheet($this->basePath('plugins/nprogress/nprogress.css'));
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'));
21
 
22
$this->inlineScript()->appendFile($this->basePath('plugins/datatables/jquery.dataTables.min.js'));
23
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-bs4/js/dataTables.bootstrap4.min.js'));
24
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/dataTables.responsive.min.js'));
25
$this->inlineScript()->appendFile($this->basePath('plugins/datatables-responsive/js/responsive.bootstrap4.min.js'));
26
 
27
 
28
$this->inlineScript()->appendFile($this->basePath('plugins/bootstrap-confirmation/dist/bootstrap-confirmation.js'));
29
 
30
 
31
 
32
$this->inlineScript()->captureStart();
33
echo <<<JS
34
    jQuery( document ).ready(function( $ ) {
35
 
36
 
37
 
38
        var allowApprove = $allowApprove;
39
        var allowReject = $allowReject;
40
 
41
 
42
 
43
 
44
        var gridTable = $('#gridTable').dataTable( {
45
            'processing': true,
46
            'serverSide': true,
47
            'searching': true,
48
            'order': [[ 1, 'asc' ]],
49
            'ordering':  true,
50
            'ordenable' : true,
51
            'responsive': true,
52
            'select' : false,
53
        	'paging': true,
54
            'pagingType': 'simple_numbers',
55
    		'ajax': {
56
    			'url' : '$routeDatatable',
57
    			'type' : 'get',
58
                'beforeSend': function (request) {
59
                  NProgress.start();
60
                },
61
                'dataFilter': function(response) {
62
                    var response = jQuery.parseJSON( response );
63
 
64
                    var json                = {};
65
                    json.recordsTotal       = 0;
66
                    json.recordsFiltered    = 0;
67
                    json.data               = [];
68
 
69
 
70
                    if(response.success) {
71
                        json.recordsTotal       = response.data.total;
72
                        json.recordsFiltered    = response.data.total;
73
                        json.data               = response.data.items;
74
                    } else {
75
                        $.fn.showError(response.data)
76
                    }
77
 
78
                    return JSON.stringify( json );
79
                }
80
    		},
81
            'language' : {
82
                'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
83
                'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
84
                'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
85
                'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
86
                'sInfo':           'LABEL_DATATABLE_SINFO',
87
                'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
88
                'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
89
                'sInfoPostFix':    '',
90
                'sSearch':         'LABEL_DATATABLE_SSEARCH',
91
                'sUrl':            '',
92
                'sInfoThousands':  ',',
93
                'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
94
                'oPaginate': {
95
                    'sFirst':    'LABEL_DATATABLE_SFIRST',
96
                    'sLast':     'LABEL_DATATABLE_SLAST',
97
                    'sNext':     'LABEL_DATATABLE_SNEXT',
98
                    'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
99
                },
100
                'oAria': {
101
                    'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
102
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
103
                },
104
            },
105
            'drawCallback': function( settings ) {
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
 
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
            },
165
            'aoColumns': [
166
                { 'mDataProp': 'first_name' },
167
                { 'mDataProp': 'last_name' },
168
                { 'mDataProp': 'email' },
169
                { 'mDataProp': 'actions' },
170
    	    ],
171
            'columnDefs': [
172
                {
173
                    'targets': 0,
174
                    'className' : 'text-vertical-middle',
175
                },
176
                {
177
                    'targets': 1,
178
                    'className' : 'text-vertical-middle',
179
                },
180
                {
181
                    'targets': 2,
182
                    'className' : 'text-vertical-middle',
183
                },
184
                {
185
                    'targets': -1,
186
                    'orderable': false,
187
                    'render' : function ( data, type, row ) {
188
                        s = '';
189
 
190
                        if(allowApprove && data['link_approve']) {
191
                            s = s + '<button class="btn btn-primary btn-approve" data-href="' + data['link_approve']+ '" data-toggle="tooltip" title="LABEL_APPROVE"><i class="fa fa-check"></i> LABEL_APPROVE </button>&nbsp;';
192
                        }
193
                        if(allowReject && data['link_reject']) {
194
                            s = s + '<button class="btn btn-info btn-reject" data-href="' + data['link_reject']+ '" data-toggle="tooltip" title="LABEL_REJECT"><i class="fa fa-ban"></i> LABEL_REJECT </button>&nbsp;';
195
                        }
196
                        return s;
197
                    }
198
                }
199
 
200
            ],
201
        });
202
 
203
 
204
 
205
 
206
 
207
        $('body').on('click', 'button.btn-refresh', function(e) {
208
            e.preventDefault();
209
            gridTable.api().ajax.reload(null, false);
210
        });
211
 
212
 
213
 
214
 
215
 
216
    });
217
JS;
218
$this->inlineScript()->captureEnd();
219
$this->headLink()->appendStylesheet('/css/style.css');
220
?>
221
 
222
 
223
 
224
 
225
 
226
 
227
 
228
<!-- Content Header (Page header) -->
229
<section class="content-header">
230
	<div class="container-fluid">
231
    	<div class="row mb-2">
232
        	<div class="col-sm-12">
233
            	<h1>LABEL_USERS</h1>
234
			</div>
235
		</div>
236
	</div><!-- /.container-fluid -->
237
</section>
238
 
239
<section class="content">
240
	<div class="container-fluid">
241
    	<div class="row">
242
        	<div class="col-12">
243
				<div class="card">
244
					<div class="card-body">
245
        	    		<table id="gridTable" class="table   table-hover" style="width: 100%">
246
                      		<thead>
247
        						<tr>
248
                                	<th>LABEL_FIRST_NAME</th>
249
                                	<th>LABEL_LAST_NAME</th>
250
                                	<th>LABEL_EMAIL</th>
251
                                  	<th>LABEL_ACTIONS</th>
252
                                </tr>
253
                       		</thead>
254
                         	<tbody>
255
                         	</tbody>
256
                    	</table>
257
                   	</div>
258
                   	<div class="card-footer clearfix">
259
                   		<div style="float:right;">
260
							<button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH  </button>
261
						</div>
262
                 	</div>
263
          		</div>
264
           	</div>
265
        </div>
266
 	</div>
267
</section>
268
 
269
 
270
 
271
 
272
 
273