Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16941 | Rev 16944 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16941 stevensc 1
<?php
1 www 2
$acl            = $this->viewModel()->getRoot()->getVariable('acl');
3
$currentUser    = $this->currentUserHelper();
4
$roleName       = $currentUser->getUserTypeId();
5
 
6
$routeAdd           = $this->url('jobs/add');
7
 
8
$routeDatatable   = $this->url('jobs');
9
 
10
$allowAdd = $acl->isAllowed($roleName, 'jobs/add') ? 1 : 0;
11
$allowDelete = $acl->isAllowed($roleName, 'jobs/delete') ? 1 : 0;
12
$allowEdit = $acl->isAllowed($roleName, 'jobs/edit') ? 1 : 0;
13
$allowUsersWhoApplied = $acl->isAllowed($roleName, 'jobs/users-who-applied') ? 1 : 0;
14
 
16822 efrain 15
 
16
 
17
$this->inlineScript()->appendFile('https://maps.googleapis.com/maps/api/js?key=' . $google_map_key . '&libraries=places');
18
 
16841 efrain 19
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/nprogress/nprogress.css'));
20
$this->inlineScript()->appendFile($this->basePath('assets/vendors/nprogress/nprogress.js'));
16822 efrain 21
 
16841 efrain 22
$this->inlineScript()->appendFile($this->basePath('assets/vendors/ckeditor/ckeditor.js'));
16822 efrain 23
 
24
 
16841 efrain 25
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/css/fileinput.min.css'));
26
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.css'));
16822 efrain 27
 
16843 efrain 28
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/piexif.js'));
29
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/plugins/sortable.js'));
16841 efrain 30
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/fileinput.js'));
31
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/js/locales/es.js'));
32
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/fas/theme.js'));
33
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-fileinput/themes/explorer-fas/theme.js'));
16822 efrain 34
 
35
 
36
 
16929 efrain 37
 
38
 
39
 
16843 efrain 40
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.css'));
41
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.css'));
16822 efrain 42
 
16843 efrain 43
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net/jquery.dataTables.js'));
44
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5/dataTables.bootstrap5.js'));
45
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/dataTables.responsive.min.js'));
46
$this->inlineScript()->appendFile($this->basePath('assets/vendors/datatables.net-bs5-responsive/responsive.bootstrap5.min.js'));
16822 efrain 47
 
48
 
49
 
16841 efrain 50
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2/css/select2.min.css'));
16845 efrain 51
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/select2-bootstrap5-theme/select2-bootstrap-5-theme.css'));
16841 efrain 52
$this->inlineScript()->appendFile($this->basePath('assets/vendors/select2/js/select2.min.js'));
16822 efrain 53
 
54
 
16841 efrain 55
$this->inlineScript()->appendFile($this->basePath('assets/vendors/jquery-input-number/input-number-format.jquery.min.js'));
16822 efrain 56
 
57
 
58
 
16841 efrain 59
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap4-toggle/css/bootstrap4-toggle.min.css'));
60
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap4-toggle/js/bootstrap4-toggle.min.js'));
11128 stevensc 61
 
16841 efrain 62
$this->inlineScript()->appendFile($this->basePath('assets/vendors/moment/moment-with-locales.min.js'));
63
$this->headLink()->appendStylesheet($this->basePath('assets/vendors/bootstrap-datetimepicker/css/bootstrap-datetimepicker.css'));
64
$this->inlineScript()->appendFile($this->basePath('assets/vendors/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js'));
16822 efrain 65
 
66
 
11128 stevensc 67
$this->headStyle()->captureStart();
68
echo <<<CSS
69
 
16822 efrain 70
 
11128 stevensc 71
#gridTableUsersWhoApplied {
72
    display: flex;
73
    flex-flow: column;
74
    width: 100%;
75
}
76
 
77
#gridTableUsersWhoApplied thead {
78
    flex: 0 0 auto;
79
}
80
 
81
#gridTableUsersWhoApplied tbody {
82
    flex: 1 1 auto;
83
    display: block;
84
    overflow-y: auto;
85
    overflow-x: hidden;
86
}
87
 
88
#gridTableUsersWhoApplied tr {
89
    width: 100%;
90
    display: table;
91
    table-layout: fixed;
92
}
93
CSS;
94
$this->headStyle()->captureEnd();
95
 
16822 efrain 96
$this->inlineScript()->captureStart();
97
echo <<<JS
98
jQuery( document ).ready(function( $ ) {
99
       var route_status = '';
100
       var route_title =  '';
101
       var route_extended =  '';
102
       var route_location =  '';
103
       var route_job_category =  '';
104
       var route_employment_type =  '';
105
       var route_salary =  '';
106
       var route_experience = '';
107
       var route_languages =  '';
108
       var route_degrees = '';
109
       var route_skills =  '';
110
       var route_last_date_of_application =  '';
111
 
11139 stevensc 112
 
14162 stevensc 113
 
16822 efrain 114
        var allowDelete = $allowDelete;
115
        var allowEdit = $allowEdit;
116
        var allowUsersWhoApplied = $allowUsersWhoApplied;
117
 
118
        var gridTable = $('#gridTable').dataTable( {
119
            'processing': true,
120
            'serverSide': true,
121
            'searching': true,
122
            'order': [[ 0, 'desc' ]],
123
            'ordering':  true,
124
            'ordenable' : true,
125
            'responsive': true,
126
            'select' : false,
127
        	'paging': true,
128
            'pagingType': 'simple_numbers',
1 www 129
 
16822 efrain 130
    		'ajax': {
131
    			'url' : '$routeDatatable',
132
    			'type' : 'get',
133
                'beforeSend': function (request) {
134
                  NProgress.start();
135
                },
136
                'dataFilter': function(response) {
137
                    var response = jQuery.parseJSON( response );
138
 
139
                    var json                = {};
140
                    json.recordsTotal       = 0;
141
                    json.recordsFiltered    = 0;
142
                    json.data               = [];
143
 
144
                    if(response.success) {
145
                        json.recordsTotal       = response.data.total;
146
                        json.recordsFiltered    = response.data.total;
147
                        json.data               = response.data.items;
148
                    } else {
149
                        $.fn.showError(response.data)
150
                    }
151
 
152
                    return JSON.stringify( json );
153
                }
154
    		},
155
            'language' : {
156
                'sProcessing':     'LABEL_DATATABLE_SPROCESSING',
157
                'sLengthMenu':     'LABEL_DATATABLE_SLENGTHMENU',
158
                'sZeroRecords':    'LABEL_DATATABLE_SZERORECORDS',
159
                'sEmptyTable':     'LABEL_DATATABLE_SEMPTYTABLE',
160
                'sInfo':           'LABEL_DATATABLE_SINFO',
161
                'sInfoEmpty':      'LABEL_DATATABLE_SINFOEMPTY',
162
                'sInfoFiltered':   'LABEL_DATATABLE_SINFOFILTERED',
163
                'sInfoPostFix':    '',
164
                'sSearch':         'LABEL_DATATABLE_SSEARCH',
165
                'sUrl':            '',
166
                'sInfoThousands':  ',',
167
                'sLoadingRecords': 'LABEL_DATATABLE_SLOADINGRECORDS',
168
                'oPaginate': {
169
                    'sFirst':    'LABEL_DATATABLE_SFIRST',
170
                    'sLast':     'LABEL_DATATABLE_SLAST',
171
                    'sNext':     'LABEL_DATATABLE_SNEXT',
172
                    'sPrevious': 'LABEL_DATATABLE_SPREVIOUS'
173
                },
174
                'oAria': {
175
                    'sSortAscending':  ': LABEL_DATATABLE_SSORTASCENDING',
176
                    'sSortDescending': ':LABEL_DATATABLE_SSORTDESCENDING'
177
                },
178
            },
179
            'drawCallback': function( settings ) {
180
                NProgress.done();
181
 
182
            },
183
            'aoColumns': [
184
                { 'mDataProp': 'last_date_of_application' },
185
                { 'mDataProp': 'title' },
186
                { 'mDataProp': 'details' },
187
                { 'mDataProp': 'actions' },
188
    	    ],
189
            'columnDefs': [
14162 stevensc 190
 
16822 efrain 191
                {
192
                    'targets': -2,
193
                    'orderable': false,
194
                    'render' : function ( data, type, row ) {
195
                        var s = 'LABEL_STATUS : ' + row['details']['status'] + '<br>';
196
                        s = s + 'LABEL_EMPLOYMENT_TYPE : <br>' + row['details']['employment_type'] + '<br>';
197
                        s = s +  'LABEL_QTY_USERS_WHO_APPLIED : ' + row['details']['users_who_applied'] + '<br>';
198
 
199
                        return s;
200
                    }
201
                },
202
 
203
                {
204
                    'targets': -1,
205
                    'orderable': false,
206
                    'render' : function ( data, type, row ) {
207
                        s = '';
208
 
209
                        if(allowEdit && data['link_edit']  ) {
16845 efrain 210
                            s = s + '<button class="btn btn-info btn-sm btn-edit" style="margin-top: 5px" data-href="' + data['link_edit']+ '" data-toggle="tooltip" title="LABEL_EDIT"><i class="fa fa-pen"></i> LABEL_EDIT </button><br>';
16822 efrain 211
                        }
212
                        if(allowDelete && data['link_delete']  ) {
213
                            s = s + '<button class="btn btn-danger btn-sm btn-delete" style="margin-top: 5px" data-href="' + data['link_delete']+ '" data-toggle="tooltip" title="LABEL_DELETE"><i class="fa fa-trash"></i> LABEL_DELETE </button><br>';
214
                        }
215
                        if(allowUsersWhoApplied && data['link_users_who_applied']  ) {
216
                            s = s + '<button class="btn btn-primary btn-sm btn-users-who-applied" style="margin-top: 5px" data-href="' + data['link_users_who_applied']+ '" data-toggle="tooltip" title="LABEL_USERS_WHO_APPLIED"><i class="fa fa-users"></i> LABEL_USERS_WHO_APPLIED </button><br>';
217
                        }
218
 
219
                        return s;
220
                    }
221
                }
222
              ],
223
        });
224
 
225
    $.validator.addMethod('greaterThanFloat', function (value, element, param) {
226
        var otherElement = $(param);
227
        return parseFloat(value) > parseFloat(otherElement.val());
228
    }, 'ERROR_INVALID_MINIMUM');
229
 
230
 
231
 
232
    $.validator.addMethod('greaterThan', function (value, element, param) {
233
        var otherElement = $(param);
234
        return parseInt(value, 10) > parseInt(otherElement.val(), 10);
235
    }, 'ERROR_INVALID_MINIMUM');
236
 
237
 
238
    $.validator.addMethod('checkLocation', function (value, element, param) {
239
        var otherElement = $(param);
240
 
241
        return $.trim(otherElement.val()).length > 0;
242
    }, 'ERROR_PLACED_AUTOCOMPLETE_DOES_NOT_CONTAIN_GEOMETRY');
243
 
244
    var autocompleteLocation = new google.maps.places.Autocomplete(
245
        (document.getElementById('location_search')),
246
        {types: ['(cities)']}
247
    );
248
 
249
    $.fn.fillInAddressLocation = function() {
250
 
251
        var place = autocompleteLocation.getPlace();
252
        if (!place.geometry) {
253
            $.fn.showError('ERROR_PLACED_AUTOCOMPLETE_DOES_NOT_CONTAIN_GEOMETRY')
254
            return;
255
        } else {
256
            address1 = '';
257
            address2 = '';
258
            city1 = '';
259
            city2 = '';
260
            state = '';
261
            country = '';
262
            postal_code = '';
263
 
264
            formatted_address = place.formatted_address;
265
            latitude = place.geometry.location.lat();
266
            longitude = place.geometry.location.lng();
267
            var arrAddress = place.address_components;
268
 
269
            $.each(arrAddress, function(i, address_component) {
270
                if (address_component.types[0] == "route") {
271
                    address1 = address_component.long_name;
272
                }
273
                if (address_component.types[0] == "sublocality") {
274
                    address2 = address_component.long_name;
275
                }
276
                if (address_component.types[0] == "locality") {
277
                    city1 = address_component.long_name;
278
                }
279
                if (address_component.types[0] == "administrative_area_level_2") {
280
                    city2 = address_component.long_name;
281
                }
282
                if (address_component.types[0] == "administrative_area_level_1") {
283
                    state = address_component.long_name;
284
                }
285
                if (address_component.types[0] == "country") {
286
                    country = address_component.long_name;
287
                }
288
                if (address_component.types[0] == "postal_code") {
289
                    postal_code = address_component.long_name;
290
                }
291
            });
292
 
293
            $('#form-location #formatted_address').val(formatted_address);
294
            $('#form-location #address1').val(address1);
295
            $('#form-location #address2').val(address2);
296
            $('#form-location #city1').val(city1);
297
            $('#form-location #city2').val(city2);
298
            $('#form-location #state').val(state);
299
            $('#form-location #country').val(country);
300
            $('#form-location #postal_code').val(postal_code);
301
            $('#form-location #latitude').val(latitude);
302
            $('#form-location #longitude').val(longitude);
303
        }
304
    }
305
 
306
 
307
    var autocompleteLocationNew = new google.maps.places.Autocomplete(
308
        (document.getElementById('add_location_search')),
309
        {types: ['(cities)']}
310
    );
311
 
312
    $.fn.fillInAddressNewLocation = function() {
313
 
314
 
315
        var place = autocompleteLocationNew.getPlace();
316
        if (!place.geometry) {
317
            $.fn.showError('ERROR_PLACED_AUTOCOMPLETE_DOES_NOT_CONTAIN_GEOMETRY')
318
            return;
319
        } else {
320
            address1 = '';
321
            address2 = '';
322
            city1 = '';
323
            city2 = '';
324
            state = '';
325
            country = '';
326
            postal_code = '';
327
 
328
            formatted_address = place.formatted_address;
329
            latitude = place.geometry.location.lat();
330
            longitude = place.geometry.location.lng();
331
            var arrAddress = place.address_components;
332
 
333
            $.each(arrAddress, function(i, address_component) {
334
                if (address_component.types[0] == "route") {
335
                    address1 = address_component.long_name;
336
                }
337
                if (address_component.types[0] == "sublocality") {
338
                    address2 = address_component.long_name;
339
                }
340
                if (address_component.types[0] == "locality") {
341
                    city1 = address_component.long_name;
342
                }
343
                if (address_component.types[0] == "administrative_area_level_2") {
344
                    city2 = address_component.long_name;
345
                }
346
                if (address_component.types[0] == "administrative_area_level_1") {
347
                    state = address_component.long_name;
348
                }
349
                if (address_component.types[0] == "country") {
350
                    country = address_component.long_name;
351
                }
352
                if (address_component.types[0] == "postal_code") {
353
                    postal_code = address_component.long_name;
354
                }
355
            });
356
 
357
            $('#form-add #formatted_address').val(formatted_address);
358
            $('#form-add #address1').val(address1);
359
            $('#form-add #address2').val(address2);
360
            $('#form-add #city1').val(city1);
361
            $('#form-add #city2').val(city2);
362
            $('#form-add #state').val(state);
363
            $('#form-add #country').val(country);
364
            $('#form-add #postal_code').val(postal_code);
365
            $('#form-add #latitude').val(latitude);
366
            $('#form-add #longitude').val(longitude);
367
        }
368
    }
369
 
370
 
371
    var validatorAdd = $('#form-add').validate({
372
        debug: true,
373
        onclick: false,
374
        onkeyup: false,
375
        onfocusout: false,
376
        ignore: [],
377
        rules: {
378
            'name': {
379
                required: true,
380
                maxlength: 128,
381
            },
382
            'title': {
383
                required: true,
384
            },
385
            'last_date_of_application': {
386
                required: true,
387
            },
388
            'job_category_id' :  {
389
                required: true,
390
            },
391
            'employment_type' : {
392
                required: true,
393
            },
394
            'add_location_search': {
395
                required: true,
396
                checkLocation: '#form-add #latitude'
397
            }
398
        },
399
        submitHandler: function(form)
400
        {
401
            NProgress.start();
402
            $.ajax({
403
                'dataType'  : 'json',
404
                'accept'    : 'application/json',
405
                'method'    : 'post',
406
                'url'       :  '$routeAdd',
407
                'data'      :  $('#form-add').serialize(),
408
            }).done(function(response) {
409
                if(response['success']) {
410
                    $('#add-job-box').modal('hide');
411
                    gridTable.api().ajax.reload(null, false);
412
 
413
                    $('#overview-title').html(response['data']['title']);
414
                    $('#overview-job-category').html(response['data']['job_category']);
415
					$('#overview-last-date-of-application').html(response['data']['last_date_of_application']);
416
					$('#overview-employment-type').html(response['data']['employment_type']);
417
                    $('#overview-location').html(response['data']['location']);
418
 
419
                    $('#overview-status').html(response['data']['status']);
420
                    $('#overview-description').html(response['data']['description']);
421
 
422
                    $('#overview-salary').html(response['data']['salary']);
423
                    $('#overview-experience').html('')
424
 
425
 
426
 
427
 
428
 
429
                    $('list-skills').empty();
430
                    $('list-languages').empty();
431
                    $('list-degrees').empty();
432
 
433
 
434
                    route_status = response['data']['route_status'];
435
                    route_title =  response['data']['route_title'];
436
                    route_extended =  response['data']['route_extended'];
437
                    route_location =  response['data']['route_location'];
438
                    route_job_category =  response['data']['route_job_category'];
439
                    route_employment_type =  response['data']['route_employment_type'];
440
                    route_salary =  response['data']['route_salary'];
441
                    route_experience = response['data']['route_experience'];
442
                    route_languages =  response['data']['route_languages'];
443
                    route_degrees = response['data']['route_degrees'];
444
                    route_skills =  response['data']['route_skills'];
445
                    route_last_date_of_application =  response['data']['route_last_date_of_application'];
446
 
447
                    $('#divListing').hide();
448
                    $('#divEdit').show();
449
 
450
                } else {
451
                    validatorAdd.resetForm();
452
                    if(jQuery.type(response['data']) == 'string') {
453
                        $.fn.showError(response['data']);
454
                    } else  {
455
                        $.each(response['data'], function( fieldname, errors ) {
456
                            $.fn.showFormErrorValidator('#form-add #' + fieldname, errors);
457
                        });
458
                    }
459
                }
460
            }).fail(function( jqXHR, textStatus, errorThrown) {
461
                $.fn.showError(textStatus);
462
            }).always(function() {
463
                NProgress.done();
464
            });
465
            return false;
466
        },
467
        invalidHandler: function(form, validator) {
468
 
469
        }
470
    });
471
 
472
    $('body').on('click', 'button.btn-edit', function(e) {
473
        e.preventDefault();
474
 
475
        var href = $(this).data('href');
476
 
477
        NProgress.start();
478
            $.ajax({
479
                'dataType'  : 'json',
480
                'accept'    : 'application/json',
481
                'method'    : 'get',
482
                'url'       :  href,
483
            }).done(function(response) {
484
                if(response['success']) {
485
                    $('#add-job-box').modal('hide');
486
                    gridTable.api().ajax.reload(null, false);
487
 
488
                    $('#overview-title').html(response['data']['title']);
489
                    $('#overview-job-category').html(response['data']['job_category']);
490
					$('#overview-last-date-of-application').html(response['data']['last_date_of_application']);
491
					$('#overview-employment-type').html(response['data']['employment_type']);
492
                    $('#overview-location').html(response['data']['location']);
493
 
494
                    $('#overview-status').html(response['data']['status']);
495
                    $('#overview-description').html(response['data']['description']);
496
 
497
 
498
                    if(response['data']['salary']) {
499
					   $('#overview-salary').html(response['data']['salary']);
500
                    } else {
501
                       $('#overview-salary').html('')
502
                    }
503
 
504
                    if(response['data']['experience']) {
505
					   $('#overview-experience').html(response['data']['experience'] + ' LABEL_YEARS');
506
                    } else {
507
                       $('#overview-experience').html('')
508
                    }
509
 
510
 
511
 
512
                    $('#list-skills').empty();
513
                    $.each(response['data']['skills'], function(i, name) {
514
                        $('#list-skills').append('<li>' + name + '</li>');
515
                    });
516
 
517
                    $('#list-languages').empty();
518
                    $.each(response['data']['languages'], function(i, name) {
519
                        $('#list-languages').append('<li>' + name + '</li>');
520
                    });
521
 
522
                    $('#list-degrees').empty();
523
                    $.each(response['data']['degrees'], function(i, name) {
524
                        $('#list-degrees').append('<li>' + name + '</li>');
525
                    });
526
 
527
 
528
                    route_status =  response['data']['route_status'];
529
                    route_title =   response['data']['route_title'];
530
                    route_extended =   response['data']['route_extended'];
531
                    route_location =   response['data']['route_location'];
532
                    route_job_category =   response['data']['route_job_category'];
533
                    route_employment_type =   response['data']['route_employment_type'];
534
                    route_salary =   response['data']['route_salary'];
535
                    route_experience =  response['data']['route_experience'];
536
                    route_languages =   response['data']['route_languages'];
537
                    route_degrees =  response['data']['route_degrees'];
538
                    route_skills =   response['data']['route_skills'];
539
                    route_last_date_of_application =   response['data']['route_last_date_of_application'];
540
 
541
 
542
                    $('#divListing').hide();
543
                    $('#divEdit').show();
544
 
545
                } else {
546
                    validatorAdd.resetForm();
547
                    if(jQuery.type(response['data']) == 'string') {
548
                        $.fn.showError(response['data']);
549
                    } else  {
550
                        $.each(response['data'], function( fieldname, errors ) {
551
                            $.fn.showFormErrorValidator('#form-add #' + fieldname, errors);
552
                        });
553
                    }
554
                }
555
            }).fail(function( jqXHR, textStatus, errorThrown) {
556
                $.fn.showError(textStatus);
557
            }).always(function() {
558
                NProgress.done();
559
            });
560
            return false;
561
    });
562
 
563
 
564
 
565
    $(".close-box, .btn-add-job-cancel").on("click", function(e){
566
        e.preventDefault();
567
        $('#add-job-box').modal('hide');
568
        return false;
569
    });
570
 
571
    $('body').on('click', 'button.btn-add', function(e) {
572
        e.preventDefault();
573
 
574
 
575
        $('#form-add #title').val('');
576
        $('#form-add #last_date_of_application').val('');
577
        $('#form-add #employment_type').val('').trigger('change');
578
        $('#form-add #job_category_id').val('').trigger('change');
579
        $('#form-add #formatted_address').val('');
580
        $('#form-add #address1').val('');
581
        $('#form-add #address2').val('');
582
        $('#form-add #country').val('');
583
        $('#form-add #state').val('');
584
        $('#form-add #city1').val('');
585
        $('#form-add #city2').val('');
586
        $('#form-add #postal_code').val('');
587
        $('#form-add #latitude').val('');
588
        $('#form-add #longitude').val('');
589
        $('#form-add #add_location_search').val('');
590
        validatorAdd.resetForm();
591
 
592
        $('#add-job-box').modal('show');
593
        return false;
594
    });
595
 
596
    $('#form-add #last_date_of_application').datetimepicker({
597
        //viewMode: 'years',
598
        locale: 'es',
16943 efrain 599
        format: 'YYYY-MM-DD'
16822 efrain 600
    });
601
 
602
 
603
    $('body').on('click', 'button.btn-view-profile', function(e) {
604
        e.preventDefault();
605
 
606
        var href = $(this).data('href');
607
        window.open(href, '_blank');
608
 
609
    });
610
 
611
    $('body').on('click', 'button.btn-users-who-applied', function(e) {
612
        e.preventDefault();
613
 
614
        var href = $(this).data('href');
615
        NProgress.start();
616
        $.ajax({
617
            'dataType'  : 'json',
618
            'accept'    : 'application/json',
619
            'method'    : 'get',
620
            'url'       :  href
621
        }).done(function(response) {
622
            if(response['success']) {
623
                $('#gridTableUsersWhoApplied tbody').empty();
624
                $.each(response['data'], function(i, record) {
625
                    var s = '<tr>';
626
                    s = s + '<td>' + record['first_name'] + '</td>';
627
                    s = s + '<td>' + record['last_name'] + '</td>';
628
                    s = s + '<td>' + record['email'] + '</td>';
16932 efrain 629
                    s = s + '<td><button class="btn btn-default btn-view-profile" data-href="' + record['link_view']+ '"><i class="fa fa-external-link-alt"></i></button></td>';
16822 efrain 630
                    s = s + '<tr>';
631
 
632
                    $('#gridTableUsersWhoApplied tbody').append(s);
633
 
634
                });
635
 
636
 
637
                $('#modalUsersWhoApplied').modal('show');
638
            } else {
639
                $.fn.showError(response['data']);
640
 
641
            }
642
        }).fail(function( jqXHR, textStatus, errorThrown) {
643
            $.fn.showError(textStatus);
644
        }).always(function() {
645
            NProgress.done();
646
        });
647
        return false;
648
 
649
    });
650
 
651
 var validatorLocation = $('#form-location').validate({
652
        debug: true,
653
        onclick: false,
654
        onkeyup: false,
655
        onfocusout: false,
656
        ignore: [],
657
        rules: {
658
            'location_search': {
659
                required: true,
660
                checkLocation: '#form-location #latitude'
661
            }
662
        },
663
        submitHandler: function(form)
664
        {
665
            NProgress.start();
666
            $.ajax({
667
                'dataType'  : 'json',
668
                'accept'    : 'application/json',
669
                'method'    : 'post',
670
                'url'       :  route_location,
671
                'data'      :  $('#form-location').serialize(),
672
            }).done(function(response) {
673
 
674
 
675
 
676
                if(response['success']) {
677
                    $('#overview-location').html(response.data);
678
                    $("#location-box").modal('hide');
679
                } else {
680
                    validatorLocation.resetForm();
681
                    $.fn.showError(response['data']);
682
                }
683
            }).fail(function( jqXHR, textStatus, errorThrown) {
684
                $.fn.showError(textStatus);
685
            }).always(function() {
686
                NProgress.done();
687
            });
688
            return false;
689
        },
690
        invalidHandler: function(form, validator) {
691
 
692
        }
693
    });
694
 
695
 
696
    $('body').on('click', 'a.btn-location-edit', function(e) {
697
        e.preventDefault();
698
 
699
        $('#form-location #location_search').val('');
700
        $('#form-location #formatted_address').val('');
701
        $('#form-location #address1').val('');
702
        $('#form-location #address2').val('');
703
        $('#form-location #country').val('');
704
        $('#form-location #state').val('');
705
        $('#form-location #city1').val('');
706
        $('#form-location #city2').val('');
707
        $('#form-location #postal_code').val('');
708
        $('#form-location #latitude').val('');
709
        $('#form-location #longitude').val('');
710
        validatorLocation.resetForm();
711
 
712
        $("#location-box").modal('show');
713
    });
714
 
715
    $('.btn-location-close').on("click", function(e){
716
        e.preventDefault();
717
 
718
        $("#location-box").modal('hide');
719
        return false;
720
    });
721
 
722
 
723
 
724
 
725
    var validatorLastDateOfApplication = $('#form-last-date-of-application').validate({
726
        debug: true,
727
        onclick: false,
728
        onkeyup: false,
729
        onfocusout: false,
730
        ignore: [],
731
        rules: {
732
            'last_date_of_application': {
733
                required: true,
734
            },
735
        },
736
 
737
        submitHandler: function(form)
738
        {
739
            NProgress.start();
740
            $.ajax({
741
                'dataType'  : 'json',
742
                'accept'    : 'application/json',
743
                'method'    : 'post',
744
                'url'       :  route_last_date_of_application,
745
                'data'      :  $('#form-last-date-of-application').serialize()
746
            }).done(function(response) {
747
                if(response['success']) {
748
 
749
                    $('#overview-last-date-of-application').html(response['data']);
750
                    $("#last-date-of-application-box").modal('hide');
751
                } else {
752
                    validatorLastDateOfApplication.resetForm();
753
                    if(jQuery.type(response['data']) == 'string') {
754
                        $.fn.showError(response['data']);
755
                    } else  {
756
                        $.each(response['data'], function( fieldname, errors ) {
757
                            $.fn.showFormErrorValidator('#form-last-date-of-application #' + fieldname, errors);
758
                        });
759
                    }
760
                }
761
            }).fail(function( jqXHR, textStatus, errorThrown) {
762
                $.fn.showError(textStatus);
763
            }).always(function() {
764
                NProgress.done();
765
            });
766
            return false;
767
        },
768
        invalidHandler: function(form, validator) {
769
 
770
        }
771
    });
772
 
773
 
774
    $('.btn-last-date-of-application-edit').on("click", function(e){
775
        e.preventDefault();
776
 
777
        NProgress.start();
778
        $.ajax({
779
            'dataType'  : 'json',
780
            'accept'    : 'application/json',
781
            'method'    : 'get',
782
            'url'       : route_last_date_of_application,
783
        }).done(function(response) {
784
           if(response['success']) {
785
                $('#form-last-date-of-application #last_date_of_application').val(response['data']);
786
                validatorLastDateOfApplication.resetForm();
787
 
788
                $("#last-date-of-application-box").modal('show');
789
            } else {
790
                $.fn.showError(response['data']);
791
            }
792
        }).fail(function( jqXHR, textStatus, errorThrown) {
793
            $.fn.showError(textStatus);
794
        }).always(function() {
795
            NProgress.done();
796
        });
797
        return false;
798
 
799
    });
800
 
801
    $('.btn-last-date-of-application-close').on("click", function(e){
802
        e.preventDefault();
803
 
804
        $("#last-date-of-application-box").modal('hide');
805
        return false;
806
    });
807
 
808
 
809
    var validatorExtended = $('#form-extended').validate({
810
        debug: true,
811
        onclick: false,
812
        onkeyup: false,
813
        onfocusout: false,
814
        ignore: [],
815
        rules: {
816
            'description': {
817
                updateCkeditor:function() {
818
                        CKEDITOR.instances.description.updateElement();
819
                },
820
                required: false,
821
            },
822
        },
823
 
824
        submitHandler: function(form)
825
        {
826
            NProgress.start();
827
            $.ajax({
828
                'dataType'  : 'json',
829
                'accept'    : 'application/json',
830
                'method'    : 'post',
831
                'url'       :  route_extended,
832
                'data'      :  $('#form-extended').serialize()
833
            }).done(function(response) {
834
                if(response['success']) {
835
 
836
                    $('#overview-description').html(response['data']['description']);
837
                    $("#extended-box").modal('hide');
838
                } else {
839
                    validatorExtended.resetForm();
840
                    if(jQuery.type(response['data']) == 'string') {
841
                        $.fn.showError(response['data']);
842
                    } else  {
843
                        $.each(response['data'], function( fieldname, errors ) {
844
                            $.fn.showFormErrorValidator('#form-extended #' + fieldname, errors);
845
                        });
846
                    }
847
                }
848
            }).fail(function( jqXHR, textStatus, errorThrown) {
849
                $.fn.showError(textStatus);
850
            }).always(function() {
851
                NProgress.done();
852
            });
853
            return false;
854
        },
855
        invalidHandler: function(form, validator) {
856
 
857
        }
858
    });
859
 
860
 
861
    $('.btn-extended-edit').on("click", function(e){
862
        e.preventDefault();
863
 
864
        NProgress.start();
865
        $.ajax({
866
            'dataType'  : 'json',
867
            'accept'    : 'application/json',
868
            'method'    : 'get',
869
            'url'       : route_extended,
870
        }).done(function(response) {
871
           if(response['success']) {
872
                CKEDITOR.instances.description.setData(response['data']['description']);
873
                validatorExtended.resetForm();
874
 
875
                $("#extended-box").modal('show');
876
            } else {
877
                $.fn.showError(response['data']);
878
            }
879
        }).fail(function( jqXHR, textStatus, errorThrown) {
880
            $.fn.showError(textStatus);
881
        }).always(function() {
882
            NProgress.done();
883
        });
884
        return false;
885
 
886
    });
887
 
888
    $('.btn-extended-close').on("click", function(e){
889
        e.preventDefault();
890
 
891
        $("#extended-box").modal('hide');
892
        return false;
893
    });
894
 
895
 
896
    var validatorJobCategory = $('#form-job-category').validate({
897
        debug: true,
898
        onclick: false,
899
        onkeyup: false,
900
        ignore: [],
901
        rules: {
902
            'job-category_id': {
903
                required: false,
904
                digits: true
905
            },
906
        },
907
        submitHandler: function(form)
908
        {
909
            NProgress.start();
910
            $.ajax({
911
                'dataType'  : 'json',
912
                'accept'    : 'application/json',
913
                'method'    : 'post',
914
                'url'       :  route_job_category,
915
                'data'      :  $('#form-job-category').serialize()
916
            }).done(function(response) {
917
                if(response['success']) {
918
					$('#overview-job-category').html(response['data']);
919
                    $("#job-category-box").modal('hide');
920
                } else {
921
                    validatorJobCategory.resetForm();
922
                    if(jQuery.type(response['data']) == 'string') {
923
                        $.fn.showError(response['data']);
924
                    } else  {
925
                        $.each(response['data'], function( fieldname, errors ) {
926
                            $.fn.showFormErrorValidator('#form-job-category #' + fieldname, errors);
927
                        });
928
                    }
929
                }
930
            }).fail(function( jqXHR, textStatus, errorThrown) {
931
                $.fn.showError(textStatus);
932
            }).always(function() {
933
                NProgress.done();
934
            });
935
            return false;
936
        },
937
        invalidHandler: function(form, validator) {
938
 
939
        }
940
    });
941
 
942
    $('.btn-job-category-edit').on("click", function(e){
943
        e.preventDefault();
944
 
945
        NProgress.start();
946
        $.ajax({
947
            'dataType'  : 'json',
948
            'accept'    : 'application/json',
949
            'method'    : 'get',
950
            'url'       : route_job_category,
951
        }).done(function(response) {
952
           if(response['success']) {
16845 efrain 953
                $('#form-job-category #job_category_id').val(response['data']['job_category']).trigger('change');
16822 efrain 954
                validatorJobCategory.resetForm();
955
                $("#job-category-box").modal('show');
956
            } else {
957
                $.fn.showError(response['data']);
958
            }
959
        }).fail(function( jqXHR, textStatus, errorThrown) {
960
            $.fn.showError(textStatus);
961
        }).always(function() {
962
            NProgress.done();
963
        });
964
        return false;
965
 
966
    });
967
 
968
    $('.btn-job-category-close').on("click", function(e){
969
        e.preventDefault();
970
 
971
        $("#job-category-box").modal('hide');
972
        return false;
973
    });
974
 
975
 
976
 
977
    var validatorEmploymentType = $('#form-employment-type').validate({
978
        debug: true,
979
        onclick: false,
980
        onkeyup: false,
981
        ignore: [],
982
        rules: {
983
            'employment_type': {
984
                required: false,
985
            },
986
        },
987
        submitHandler: function(form)
988
        {
989
            NProgress.start();
990
            $.ajax({
991
                'dataType'  : 'json',
992
                'accept'    : 'application/json',
993
                'method'    : 'post',
994
                'url'       :  route_employment_type,
995
                'data'      :  $('#form-employment-type').serialize()
996
            }).done(function(response) {
997
                if(response['success']) {
998
					$('#overview-employment-type').html(response['data']);
999
                    $("#employment-type-box").modal('hide');
1000
                } else {
1001
                    validatorEmploymentType.resetForm();
1002
                    if(jQuery.type(response['data']) == 'string') {
1003
                        $.fn.showError(response['data']);
1004
                    } else  {
1005
                        $.each(response['data'], function( fieldname, errors ) {
1006
                            $.fn.showFormErrorValidator('#form-employment-type #' + fieldname, errors);
1007
                        });
1008
                    }
1009
                }
1010
            }).fail(function( jqXHR, textStatus, errorThrown) {
1011
                $.fn.showError(textStatus);
1012
            }).always(function() {
1013
                NProgress.done();
1014
            });
1015
            return false;
1016
        },
1017
        invalidHandler: function(form, validator) {
1018
 
1019
        }
1020
    });
1021
 
1022
    $('.btn-employment-type-edit').on("click", function(e){
1023
        e.preventDefault();
1024
 
1025
        NProgress.start();
1026
        $.ajax({
1027
            'dataType'  : 'json',
1028
            'accept'    : 'application/json',
1029
            'method'    : 'get',
1030
            'url'       : route_employment_type,
1031
        }).done(function(response) {
1032
           if(response['success']) {
1033
                $('#form-employment-type #employment_type').val(response['data']).trigger('change');
1034
                validatorEmploymentType.resetForm();
1035
                $("#employment-type-box").modal('show');
1036
            } else {
1037
                $.fn.showError(response['data']);
1038
            }
1039
        }).fail(function( jqXHR, textStatus, errorThrown) {
1040
            $.fn.showError(textStatus);
1041
        }).always(function() {
1042
            NProgress.done();
1043
        });
1044
        return false;
1045
 
1046
    });
1047
 
1048
    $('.btn-employment-type-close').on("click", function(e){
1049
        e.preventDefault();
1050
 
1051
        $("#employment-type-box").modal('hide');
1052
        return false;
1053
    });
1054
 
1055
    var validatorSalary = $('#form-salary').validate({
1056
        debug: true,
1057
        onclick: false,
1058
        onkeyup: false,
1059
        ignore: [],
1060
        rules: {
1061
            'salary_visible': {
1062
                required: false,
1063
            },
1064
            'salary_min': {
1065
                required:  '#form-salary #salary_visible:checked',
1066
                number: true,
1067
                maxlength: 10,
1068
            },
1069
            'salary currency': {
1070
                required:  '#form-salary #salary_visible:checked',
1071
                maxlength: 5,
1072
            },
1073
            'salary_max': {
1074
                required:  '#form-salary #salary_visible:checked',
1075
                number: true,
1076
                maxlength: 10,
1077
                greaterThanFloat : '#form-salary #salary_min',
1078
            },
1079
        },
1080
        submitHandler: function(form)
1081
        {
1082
            NProgress.start();
1083
            $.ajax({
1084
                'dataType'  : 'json',
1085
                'accept'    : 'application/json',
1086
                'method'    : 'post',
1087
                'url'       :  route_salary,
1088
                'data'      :  $('#form-salary').serialize()
1089
            }).done(function(response) {
1090
                if(response['success']) {
1091
					$('#overview-salary').html(response['data']);
1092
                    $("#salary-box").modal('hide');
1093
                } else {
1094
                    validatorSalary.resetForm();
1095
                    if(jQuery.type(response['data']) == 'string') {
1096
                        $.fn.showError(response['data']);
1097
                    } else  {
1098
                        $.each(response['data'], function( fieldname, errors ) {
1099
                            $.fn.showFormErrorValidator('#form-salary #' + fieldname, errors);
1100
                        });
1101
                    }
1102
                }
1103
            }).fail(function( jqXHR, textStatus, errorThrown) {
1104
                $.fn.showError(textStatus);
1105
            }).always(function() {
1106
                NProgress.done();
1107
            });
1108
            return false;
1109
        },
1110
        invalidHandler: function(form, validator) {
1111
 
1112
        }
1113
    });
1114
 
1115
    $('.btn-salary-edit').on("click", function(e){
1116
        e.preventDefault();
1117
 
1118
        NProgress.start();
1119
        $.ajax({
1120
            'dataType'  : 'json',
1121
            'accept'    : 'application/json',
1122
            'method'    : 'get',
1123
            'url'       : route_salary,
1124
        }).done(function(response) {
1125
           if(response['success']) {
1126
                if(response['data']['salary_visible'] == 'y') {
1127
                    $('#form-salary #salary_visible').bootstrapToggle('on')
1128
                    $('#form-salary #salary_min').val(response['data']['salary_min']);
1129
                    $('#form-salary #salary_min').prop('readonly', false);
1130
                    $('#form-salary #salary_max').val(response['data']['salary_max']);
1131
                    $('#form-salary #salary_max').prop('readonly', false);
1132
                    $('#form-salary #salary_currency').val(response['data']['salary_currency']);
1133
                    $('#form-salary #salary_currency').prop('disable',false);
1134
                } else {
1135
                    $('#form-salary #salary_visible').bootstrapToggle('off')
1136
                    $('#form-salary #salary_min').val('1');
1137
                    $('#form-salary #salary_min').prop('readonly', true);
1138
                    $('#form-salary #salary_max').val('99');
1139
                    $('#form-salary #salary_max').prop('readonly', true);
1140
                    $('#form-salary #salary_currency').val('USD');
1141
                    $('#form-salary #salary_currency').prop('disable',true);
1142
                }
1143
                validatorSalary.resetForm();
1144
                $("#salary-box").modal('show');
1145
            } else {
1146
                $.fn.showError(response['data']);
1147
            }
1148
        }).fail(function( jqXHR, textStatus, errorThrown) {
1149
            $.fn.showError(textStatus);
1150
        }).always(function() {
1151
            NProgress.done();
1152
        });
1153
        return false;
1154
 
1155
    });
1156
 
1157
    $('.btn-salary-close').on("click", function(e){
1158
        e.preventDefault();
1159
 
1160
        $("#salary-box").modal('hide');
1161
        return false;
1162
    });
1163
 
1164
    var validatorExperience = $('#form-experience').validate({
1165
        debug: true,
1166
        onclick: false,
1167
        onkeyup: false,
1168
        ignore: [],
1169
        rules: {
1170
            'experience_visible': {
1171
                required: false,
1172
            },
1173
            'experience_min': {
1174
                required:  '#form-experience #experience_visible:checked',
1175
                digits: true,
1176
                maxlength: 2,
1177
            },
1178
            'experience_max': {
1179
                required:  '#form-experience #experience_visible:checked',
1180
                digits: true,
1181
                maxlength: 4,
1182
                greaterThan : '#form-experience #experience_min',
1183
            },
1184
        },
1185
        submitHandler: function(form)
1186
        {
1187
            NProgress.start();
1188
            $.ajax({
1189
                'dataType'  : 'json',
1190
                'accept'    : 'application/json',
1191
                'method'    : 'post',
1192
                'url'       :  route_experience,
1193
                'data'      :  $('#form-experience').serialize()
1194
            }).done(function(response) {
1195
                if(response['success']) {
1196
					$('#overview-experience').html(response['data']);
1197
                    $("#experience-box").modal('hide');
1198
                } else {
1199
                    validatorExperience.resetForm();
1200
                    if(jQuery.type(response['data']) == 'string') {
1201
                        $.fn.showError(response['data']);
1202
                    } else  {
1203
                        $.each(response['data'], function( fieldname, errors ) {
1204
                            $.fn.showFormErrorValidator('#form-experience #' + fieldname, errors);
1205
                        });
1206
                    }
1207
                }
1208
            }).fail(function( jqXHR, textStatus, errorThrown) {
1209
                $.fn.showError(textStatus);
1210
            }).always(function() {
1211
                NProgress.done();
1212
            });
1213
            return false;
1214
        },
1215
        invalidHandler: function(form, validator) {
1216
 
1217
        }
1218
    });
1219
 
1220
    $('.btn-experience-edit').on("click", function(e){
1221
        e.preventDefault();
1222
 
1223
        NProgress.start();
1224
        $.ajax({
1225
            'dataType'  : 'json',
1226
            'accept'    : 'application/json',
1227
            'method'    : 'get',
1228
            'url'       : route_experience,
1229
        }).done(function(response) {
1230
           if(response['success']) {
1231
                if(response['data']['experience_visible'] == 'y') {
1232
                    $('#form-experience #experience_visible').bootstrapToggle('on')
1233
                    $('#form-experience #experience_min').val(response['data']['experience_min']);
1234
                    $('#form-experience #experience_min').prop('readonly', false);
1235
                    $('#form-experience #experience_max').val(response['data']['experience_max']);
1236
                    $('#form-experience #experience_max').prop('readonly', false);
1237
                } else {
1238
                    $('#form-experience #experience_visible').bootstrapToggle('off')
1239
                    $('#form-experience #experience_min').val('1');
1240
                    $('#form-experience #experience_min').prop('readonly', true);
1241
                    $('#form-experience #experience_max').val('5');
1242
                    $('#form-experience #experience_max').prop('readonly', true);
1243
                }
1244
 
1245
                validatorExperience.resetForm();
1246
                $("#experience-box").modal('show');
1247
            } else {
1248
                $.fn.showError(response['data']);
1249
            }
1250
        }).fail(function( jqXHR, textStatus, errorThrown) {
1251
            $.fn.showError(textStatus);
1252
        }).always(function() {
1253
            NProgress.done();
1254
        });
1255
        return false;
1256
 
1257
    });
1258
 
1259
    $('.btn-experience-close').on("click", function(e){
1260
        e.preventDefault();
1261
 
1262
        $("#experience-box").modal('hide');
1263
        return false;
1264
    });
1265
 
1266
 
1267
    $('.btn-skills-edit').on("click", function(e){
1268
        e.preventDefault();
1269
 
1270
        NProgress.start();
1271
        $.ajax({
1272
            'dataType'  : 'json',
1273
            'accept'    : 'application/json',
1274
            'method'    : 'get',
1275
            'url'       : route_skills,
1276
        }).done(function(response) {
1277
           if(response['success']) {
16845 efrain 1278
 
1279
                $('#form-skill #skills').val(response['data']['skills_selected']).trigger('change');
16822 efrain 1280
                validatorSkills.resetForm();
1281
 
1282
                $('#skills-box').modal('show');
1283
            } else {
1284
                $.fn.showError(response['data']);
1285
            }
1286
        }).fail(function( jqXHR, textStatus, errorThrown) {
1287
            $.fn.showError(textStatus);
1288
        }).always(function() {
1289
            NProgress.done();
1290
        });
1291
        return false;
1292
 
1293
    });
1294
 
1295
    $('.btn-skills-close').on("click", function(e){
1296
        e.preventDefault();
1297
 
1298
        $('#skills-box').modal('hide');
1299
        return false;
1300
    });
1301
 
1302
    var validatorSkills = $('#form-skill').validate({
1303
        debug: true,
1304
        onclick: false,
1305
        onkeyup: false,
1306
         onfocusout: false,
1307
        ignore: [],
1308
        rules: {
1309
            'skills[]': {
1310
                required: true,
1311
            }
1312
        },
1313
        submitHandler: function(form)
1314
        {
1315
            NProgress.start();
1316
            $.ajax({
1317
                'dataType'  : 'json',
1318
                'accept'    : 'application/json',
1319
                'method'    : 'post',
1320
                'url'       :  route_skills,
1321
                'data'      :  {
1322
                    'skills[]' : $('#form-skill #skills').val()
1323
                },
1324
            }).done(function(response) {
1325
                if(response['success']) {
1326
 
1327
					$('#list-skills').empty();
1328
                    $.each(response['data'], function(index, item) {
1329
                        $('#list-skills').append('<li><a href="#" title="">' + item.label + '</a></li>');
1330
                    });
1331
 
1332
                    $("#skills-box").modal('hide');
1333
                } else {
1334
                    validatorSkills.resetForm();
1335
                    if(jQuery.type(response['data']) == 'string') {
1336
                        $.fn.showError(response['data']);
1337
                    } else  {
1338
                        $.each(response['data'], function( fieldname, errors ) {
1339
                            $.fn.showFormErrorValidator('#form-skill #' + fieldname, errors);
1340
                        });
1341
                    }
1342
                }
1343
            }).fail(function( jqXHR, textStatus, errorThrown) {
1344
                $.fn.showError(textStatus);
1345
            }).always(function() {
1346
                NProgress.done();
1347
            });
1348
            return false;
1349
        },
1350
        invalidHandler: function(form, validator) {
1351
 
1352
        }
1353
    });
1354
 
1355
 
1356
 
1357
    var validatorLanguages = $('#form-language').validate({
1358
        debug: true,
1359
        onclick: false,
1360
        onkeyup: false,
1361
         onfocusout: false,
1362
        ignore: [],
1363
        rules: {
1364
            'languages[]': {
1365
                required: true,
1366
            }
1367
        },
1368
        submitHandler: function(form)
1369
        {
1370
            NProgress.start();
1371
            $.ajax({
1372
                'dataType'  : 'json',
1373
                'accept'    : 'application/json',
1374
                'method'    : 'post',
1375
                'url'       :  route_languages,
1376
                'data'      :  {
1377
                    'languages[]' : $('#form-language #languages').val()
1378
                },
1379
            }).done(function(response) {
1380
                if(response['success']) {
1381
 
1382
					$('#list-languages').empty();
1383
                    $.each(response['data'], function(index, item) {
1384
                        $('#list-languages').append('<li><a href="#" title="">' + item.label + '</a></li>');
1385
                    });
1386
 
1387
                    $("#languages-box").modal('hide');
1388
                } else {
1389
                    validatorLanguages.resetForm();
1390
                    if(jQuery.type(response['data']) == 'string') {
1391
                        $.fn.showError(response['data']);
1392
                    } else  {
1393
                        $.each(response['data'], function( fieldname, errors ) {
1394
                            $.fn.showFormErrorValidator('#form-language #' + fieldname, errors);
1395
                        });
1396
                    }
1397
                }
1398
            }).fail(function( jqXHR, textStatus, errorThrown) {
1399
                $.fn.showError(textStatus);
1400
            }).always(function() {
1401
                NProgress.done();
1402
            });
1403
            return false;
1404
        },
1405
        invalidHandler: function(form, validator) {
1406
 
1407
        }
1408
    });
1409
 
1410
    $('.btn-languages-edit').on("click", function(e){
1411
        e.preventDefault();
1412
 
1413
        NProgress.start();
1414
        $.ajax({
1415
            'dataType'  : 'json',
1416
            'accept'    : 'application/json',
1417
            'method'    : 'get',
1418
            'url'       : route_languages,
1419
        }).done(function(response) {
1420
           if(response['success']) {
16845 efrain 1421
                $('#form-language #languages').val(response['data']['languages_selected']).trigger('change');
16822 efrain 1422
                validatorLanguages.resetForm();
1423
 
1424
                $("#languages-box").modal('show');
1425
            } else {
1426
                $.fn.showError(response['data']);
1427
            }
1428
        }).fail(function( jqXHR, textStatus, errorThrown) {
1429
            $.fn.showError(textStatus);
1430
        }).always(function() {
1431
            NProgress.done();
1432
        });
1433
        return false;
1434
 
1435
    });
1436
 
1437
    $('.btn-languages-close').on("click", function(e){
1438
        e.preventDefault();
1439
 
1440
        $("#languages-box").modal('hide');
1441
        return false;
1442
    });
1443
 
1444
 
1445
    var validatorDegrees = $('#form-degree').validate({
1446
        debug: true,
1447
        onclick: false,
1448
        onkeyup: false,
1449
         onfocusout: false,
1450
        ignore: [],
1451
        rules: {
1452
            'degrees[]': {
1453
                required: true,
1454
            }
1455
        },
1456
        submitHandler: function(form)
1457
        {
1458
            NProgress.start();
1459
            $.ajax({
1460
                'dataType'  : 'json',
1461
                'accept'    : 'application/json',
1462
                'method'    : 'post',
1463
                'url'       :  route_degrees,
1464
                'data'      :  {
1465
                    'degrees[]' : $('#form-degree #degrees').val()
1466
                },
1467
            }).done(function(response) {
1468
                if(response['success']) {
1469
 
1470
					$('#list-degrees').empty();
1471
                    $.each(response['data'], function(index, item) {
1472
                        $('#list-degrees').append('<li><a href="#" title="">' + item.label + '</a></li>');
1473
                    });
1474
 
1475
                    $("#degrees-box").modal('hide');
1476
                } else {
1477
                    validatorDegrees.resetForm();
1478
                    if(jQuery.type(response['data']) == 'string') {
1479
                        $.fn.showError(response['data']);
1480
                    } else  {
1481
                        $.each(response['data'], function( fieldname, errors ) {
1482
                            $.fn.showFormErrorValidator('#form-degree #' + fieldname, errors);
1483
                        });
1484
                    }
1485
                }
1486
            }).fail(function( jqXHR, textStatus, errorThrown) {
1487
                $.fn.showError(textStatus);
1488
            }).always(function() {
1489
                NProgress.done();
1490
            });
1491
            return false;
1492
        },
1493
        invalidHandler: function(form, validator) {
1494
 
1495
        }
1496
    });
1497
 
1498
    $('.btn-degrees-edit').on("click", function(e){
1499
        e.preventDefault();
1500
 
1501
        NProgress.start();
1502
        $.ajax({
1503
            'dataType'  : 'json',
1504
            'accept'    : 'application/json',
1505
            'method'    : 'get',
1506
            'url'       : route_degrees,
1507
        }).done(function(response) {
1508
           if(response['success']) {
16845 efrain 1509
                $('#form-degree #degrees').val(response['data']['degrees_selected']).trigger('change');
16822 efrain 1510
                validatorDegrees.resetForm();
1511
 
1512
                $("#degrees-box").modal('show');
1513
            } else {
1514
                $.fn.showError(response['data']);
1515
            }
1516
        }).fail(function( jqXHR, textStatus, errorThrown) {
1517
            $.fn.showError(textStatus);
1518
        }).always(function() {
1519
            NProgress.done();
1520
        });
1521
        return false;
1522
 
1523
    });
1524
 
1525
    $('.btn-degrees-close').on("click", function(e){
1526
        e.preventDefault();
1527
 
1528
        $("#degrees-box").modal('hide');
1529
        return false;
1530
    });
1531
 
1532
 
1533
    $('#form-degree #degrees').select2({
16845 efrain 1534
        theme: 'bootstrap-5',
16822 efrain 1535
        width: '100%',
16941 stevensc 1536
        placeholder: 'LABEL_SELECT_DEGREE',
1537
        dropdownParent: $('#degrees-box')
16822 efrain 1538
    });
1539
 
1540
    $('#form-skill #skills').select2({
16845 efrain 1541
        theme: 'bootstrap-5',
16822 efrain 1542
        width: '100%',
1543
        placeholder: 'LABEL_SELECT_ONE_SKILLS'
1544
    });
1545
 
1546
    $('#form-language #languages').select2({
16845 efrain 1547
        theme: 'bootstrap-5',
16822 efrain 1548
        width: '100%',
16941 stevensc 1549
        placeholder: 'LABEL_SELECT_ONE_LANGUAGE',
1550
        dropdownParent: $('#languages-box'),
16822 efrain 1551
    });
1552
 
1553
 
1554
 
1555
    $('#form-last-date-of-application #last_date_of_application').datetimepicker({
1556
        locale: 'es',
16943 efrain 1557
        format: 'YYYY-MM-DD'
16822 efrain 1558
    });
1559
 
1560
    $('#form-salary #salary_visible').bootstrapToggle({'on' : 'LABEL_SHOW',  'off' : 'LABEL_NO_SHOW', 'width' : '160px', 'height' : '40px'});
1561
    $('#form-salary #salary_min').inputNumberFormat({ 'decimal': 2 });
1562
    $('#form-salary #salary_max').inputNumberFormat({ 'decimal': 2 });
1563
 
1564
    $('#form-salary #salary_visible').change(function(e) {
1565
        e.preventDefault();
1566
 
1567
        if($(this).prop('checked')) {
1568
            $('#form-salary #salary_min').prop('readonly', false);
1569
            $('#form-salary #salary_max').prop('readonly', false);
1570
            $('#form-salary #salary_currency').prop('disabled', false);
1571
        } else {
1572
            $('#form-salary #salary_min').val('1');
1573
            $('#form-salary #salary_max').val('99');
1574
            $('#form-salary #salary_min').prop('readonly', true);
1575
            $('#form-salary #salary_max').prop('readonly', true);
1576
            $('#form-salary #salary_currency').prop('disabled', true);
1577
        }
1578
    });
1579
 
1580
    $('#form-experience #experience_visible').bootstrapToggle({'on' : 'LABEL_SHOW',  'off' : 'LABEL_NO_SHOW', 'width' : '160px', 'height' : '40px'});
1581
    $('#form-experience #experience_min').inputNumberFormat({ 'decimal': 0 });
1582
    $('#form-experience #experience_max').inputNumberFormat({ 'decimal': 0 });
1583
 
1584
    $('#form-experience #experience_visible').change(function(e) {
1585
        e.preventDefault();
1586
 
1587
        if($(this).prop('checked')) {
1588
            $('#form-experience #experience_min').prop('readonly', false);
1589
            $('#form-experience #experience_max').prop('readonly', false);
1590
        } else {
1591
            $('#form-experience #experience_min').val('1');
1592
            $('#form-experience #experience_max').val('5');
1593
            $('#form-experience #experience_min').prop('readonly', true);
1594
            $('#form-experience #experience_max').prop('readonly', true);
1595
       }
1596
    });
1597
 
1598
 
1599
    var validatorStatus = $('#form-status').validate({
1600
        debug: true,
1601
        onclick: false,
1602
        onkeyup: false,
1603
        ignore: [],
1604
        rules: {
1605
            'status': {
1606
                required: false,
1607
            },
1608
        },
1609
        submitHandler: function(form)
1610
        {
1611
            NProgress.start();
1612
            $.ajax({
1613
                'dataType'  : 'json',
1614
                'accept'    : 'application/json',
1615
                'method'    : 'post',
1616
                'url'       :  route_status,
1617
                'data'      :  $('#form-status').serialize()
1618
            }).done(function(response) {
1619
                if(response['success']) {
1620
					$('#overview-status').html(response['data']['status']);
1621
                    $("#status-box").modal('hide');
1622
                } else {
1623
                    validatorStatus.resetForm();
1624
                    if(jQuery.type(response['data']) == 'string') {
1625
                        $.fn.showError(response['data']);
1626
                    } else  {
1627
                        $.each(response['data'], function( fieldname, errors ) {
1628
                            $.fn.showFormErrorValidator('#form-status #' + fieldname, errors);
1629
                        });
1630
                    }
1631
                }
1632
            }).fail(function( jqXHR, textStatus, errorThrown) {
1633
                $.fn.showError(textStatus);
1634
            }).always(function() {
1635
                NProgress.done();
1636
            });
1637
            return false;
1638
        },
1639
        invalidHandler: function(form, validator) {
1640
 
1641
        }
1642
    });
1643
 
1644
    $('.btn-status-edit').on("click", function(e){
1645
        e.preventDefault();
1646
 
1647
        NProgress.start();
1648
        $.ajax({
1649
            'dataType'  : 'json',
1650
            'accept'    : 'application/json',
1651
            'method'    : 'get',
1652
            'url'       : route_status,
1653
        }).done(function(response) {
1654
           if(response['success']) {
1655
                $('#form-status #status').val(response['data']['status']);
1656
                validatorStatus.resetForm();
1657
                $("#status-box").modal('show');
1658
            } else {
1659
                $.fn.showError(response['data']);
1660
            }
1661
        }).fail(function( jqXHR, textStatus, errorThrown) {
1662
            $.fn.showError(textStatus);
1663
        }).always(function() {
1664
            NProgress.done();
1665
        });
1666
        return false;
1667
 
1668
    });
1669
 
1670
    $('.btn-status-close').on("click", function(e){
1671
        e.preventDefault();
1672
 
1673
        $("#status-box").modal('hide');
1674
        return false;
1675
    });
1676
 
1677
 
1678
    var validatorTitle = $('#form-title').validate({
1679
        debug: true,
1680
        onclick: false,
1681
        onkeyup: false,
1682
        ignore: [],
1683
        rules: {
1684
            'title': {
1685
                required: true,
1686
                maxlength: 128,
1687
            },
1688
        },
1689
        submitHandler: function(form)
1690
        {
1691
            NProgress.start();
1692
            $.ajax({
1693
                'dataType'  : 'json',
1694
                'accept'    : 'application/json',
1695
                'method'    : 'post',
1696
                'url'       :  route_title,
1697
                'data'      :  $('#form-title').serialize()
1698
            }).done(function(response) {
1699
                if(response['success']) {
1700
					$('#overview-title').html(response['data']['title']);
1701
                    $("#title-box").modal('hide');
1702
                } else {
1703
                    validatorTitle.resetForm();
1704
                    if(jQuery.type(response['data']) == 'string') {
1705
                        $.fn.showError(response['data']);
1706
                    } else  {
1707
                        $.each(response['data'], function( fieldname, errors ) {
1708
                            $.fn.showFormErrorValidator('#form-title #' + fieldname, errors);
1709
                        });
1710
                    }
1711
                }
1712
            }).fail(function( jqXHR, textTitle, errorThrown) {
1713
                $.fn.showError(textTitle);
1714
            }).always(function() {
1715
                NProgress.done();
1716
            });
1717
            return false;
1718
        },
1719
        invalidHandler: function(form, validator) {
1720
 
1721
        }
1722
    });
1723
 
1724
    $('.btn-title-edit').on("click", function(e){
1725
        e.preventDefault();
1726
 
1727
        NProgress.start();
1728
        $.ajax({
1729
            'dataType'  : 'json',
1730
            'accept'    : 'application/json',
1731
            'method'    : 'get',
1732
            'url'       : route_title,
1733
        }).done(function(response) {
1734
           if(response['success']) {
1735
                $('#form-title #title').val(response['data']['title'] );
1736
                validatorTitle.resetForm();
1737
                $("#title-box").modal('show');
1738
            } else {
1739
                $.fn.showError(response['data']);
1740
            }
1741
        }).fail(function( jqXHR, textTitle, errorThrown) {
1742
            $.fn.showError(textTitle);
1743
        }).always(function() {
1744
            NProgress.done();
1745
        });
1746
        return false;
1747
 
1748
    });
1749
 
1750
    $('body').on('click', 'button.btn-delete', function(e) {
1751
        e.preventDefault();
1752
        var action = $(this).data('href');
1753
 
1754
 
1755
          swal.fire({
1756
            title: 'LABEL_ARE_YOU_SURE',
1757
            icon: 'question',
1758
            cancelButtonText: 'LABEL_NO',
1759
            showCancelButton: true,
1760
            confirmButtonText: 'LABEL_YES'
1761
          }).then((result) => {
1762
            if (result.isConfirmed) {
1763
 
1764
                    NProgress.start();
1765
                    $.ajax({
1766
                        'dataType'  : 'json',
1767
                        'accept'    : 'application/json',
1768
                        'method'    : 'post',
1769
                        'url'       :  action,
1770
                    }).done(function(response) {
1771
                        if(response['success']) {
1772
                            $.fn.showSuccess(response['data']);
1773
                            gridTable.api().ajax.reload(null, false);
1774
                        } else {
1775
                            $.fn.showError(response['data']);
1776
                        }
1777
                    }).fail(function( jqXHR, textStatus, errorThrown) {
1778
                        $.fn.showError(textStatus);
1779
                    }).always(function() {
1780
                        NProgress.done();
1781
                    });
1782
            }
1783
       });
1784
    });
1785
 
1786
    $('.btn-title-close').on("click", function(e){
1787
        e.preventDefault();
1788
 
1789
        $("#title-box").modal('hide');
1790
        return false;
1791
    });
1792
 
16845 efrain 1793
    $('button.btn-cancel').on("click", function(e){
16822 efrain 1794
        e.preventDefault();
1795
 
1796
 
1797
 
1798
        $('#divEdit').hide();
1799
        $('#divListing').show();
1800
        return false;
1801
    });
1802
 
1803
 
1804
    CKEDITOR.replace('description');
1805
 
1806
    autocompleteLocation.addListener('place_changed', $.fn.fillInAddressLocation);
1807
    autocompleteLocationNew.addListener('place_changed', $.fn.fillInAddressNewLocation);
1808
});
1809
JS;
1810
$this->inlineScript()->captureEnd();
1 www 1811
?>
16941 stevensc 1812
 
16843 efrain 1813
<div class="container">
16941 stevensc 1814
    <div class="card" id="divListing">
1815
        <div class="card-header">
1816
            LABEL_JOBS
1817
        </div>
1818
        <div class="card-body">
1819
            <div class="row">
1820
                <div class="col-12 mt-3">
1821
                    <table id="gridTable" class="table   table-bordered">
1822
                        <thead>
1823
                            <tr>
1824
                                <th>LABEL_LAST_DATE_OF_APPLICATION</th>
1825
                                <th>LABEL_TITLE</th>
1826
                                <th>LABEL_DETAILS</th>
1827
                                <th>LABEL_ACTIONS</th>
1828
                            </tr>
1829
                        </thead>
1830
                        <tbody>
1831
                        </tbody>
1832
                    </table>
1833
                </div>
1834
            </div>
1835
        </div>
1836
        <div class="card-footer text-right">
1837
            <button type="button" class="btn btn-info btn-refresh"><i class="fa fa-refresh"></i> LABEL_REFRESH </button>
1838
            <?php if ($allowAdd) : ?>
1839
                <button type="button" class="btn btn-primary btn-add"><i class="fa fa-plus"></i> LABEL_ADD </button>
1840
            <?php endif; ?>
1841
        </div>
16845 efrain 1842
    </div>
16822 efrain 1843
 
16941 stevensc 1844
    <div class="card" id="divEdit" style="display: none">
1845
        <div class="card-header ">
1846
            LABEL_EDIT_JOB
1847
        </div>
1848
        <div class="card-body">
1849
            <div class="card  mt-3">
1850
                <div class="card-body">
1851
                    <h6 class="card-title">
1852
                        LABEL_STATUS <a href="#" title="" class="btn-status-edit"> <i class="fa fa-pen"></i></a>
1853
                    </h6>
1854
                    <div class="row">
1855
                        <div class="col-12 mt-3" id="overview-status">
1856
                        </div>
1857
                    </div>
1858
                </div>
1859
            </div>
16822 efrain 1860
 
16941 stevensc 1861
            <div class="card  mt-3">
1862
                <div class="card-body">
1863
                    <h6 class="card-title">
1864
                        LABEL_TITLE <a href="#" title="" class="btn-title-edit"><i class="fa fa-pen"></i></a>
1865
                    </h6>
1866
                    <div class="row">
1867
                        <div class="col-12 mt-3" id="overview-title">
1868
                        </div>
1869
                    </div>
1870
                </div>
1871
            </div>
1872
 
1873
            <div class="card  mt-3">
1874
                <div class="card-body">
1875
                    <h6 class="card-title">
1876
                        LABEL_OVERVIEW <a href="#" title="" class="btn-extended-edit"><i class="fa fa-pen"></i></a>
1877
                    </h6>
1878
                    <div class="row">
1879
                        <div class="col-12 mt-3" id="overview-description">
1880
                        </div>
1881
                    </div>
1882
                </div>
1883
            </div>
1884
 
1885
 
1886
            <div class="card  mt-3">
1887
                <div class="card-body">
1888
                    <h6 class="card-title">
1889
                        LABEL_LAST_DATE_OF_APPLICATION <a href="#" title="" class="btn-last-date-of-application-edit"><i class="fa fa-pen"></i></a>
1890
                    </h6>
1891
                    <div class="row">
1892
                        <div class="col-12 mt-3" id="overview-last-date-of-application">
1893
                        </div>
1894
                    </div>
1895
                </div>
1896
            </div>
1897
 
1898
            <div class="card  mt-3">
1899
                <div class="card-body">
1900
                    <h6 class="card-title">
1901
                        LABEL_EMPLOYMENT_TYPE <a href="#" title="" class="btn-employment-type-edit"><i class="fa fa-pen"></i></a>
1902
                    </h6>
1903
                    <div class="row">
1904
                        <div class="col-12 mt-3" id="overview-employment-type">
1905
                        </div>
1906
                    </div>
1907
                </div>
1908
            </div>
1909
 
1910
            <div class="card  mt-3">
1911
                <div class="card-body">
1912
                    <h6 class="card-title">
1913
                        LABEL_LOCATION <a href="#" title="" class="btn-location-edit"><i class="fa fa-pen"></i></a>
1914
                    </h6>
1915
                    <div class="row">
1916
                        <div class="col-12 mt-3" id="overview-location">
1917
                        </div>
1918
                    </div>
1919
                </div>
1920
            </div>
1921
 
1922
            <div class="card  mt-3">
1923
                <div class="card-body">
1924
                    <h6 class="card-title">
1925
                        LABEL_EXPERIENCE <a href="#" title="" class="btn-experience-edit"><i class="fa fa-pen"></i></a>
1926
                    </h6>
1927
                    <div class="row">
1928
                        <div class="col-12 mt-3" id="overview-experience">
1929
                        </div>
1930
                    </div>
1931
                </div>
1932
            </div>
1933
 
1934
            <div class="card  mt-3">
1935
                <div class="card-body">
1936
                    <h6 class="card-title">
1937
                        LABEL_SALARY <a href="#" title="" class="btn-salary-edit"><i class="fa fa-pen"></i></a>
1938
                    </h6>
1939
                    <div class="row">
1940
                        <div class="col-12 mt-3" id="overview-salary">
1941
                        </div>
1942
                    </div>
1943
                </div>
1944
            </div>
1945
 
1946
 
1947
            <div class="card  mt-3">
1948
                <div class="card-body">
1949
                    <h6 class="card-title">
1950
                        LABEL_CATEGORIE <a href="#" title="" class="btn-job-category-edit"><i class="fa fa-pen"></i></a>
1951
                    </h6>
1952
                    <div class="row">
1953
                        <div class="col-12 mt-3" id="overview-job-category">
1954
                        </div>
1955
                    </div>
1956
                </div>
1957
            </div>
1958
 
1959
            <div class="card  mt-3">
1960
                <div class="card-body">
1961
                    <h6 class="card-title">
1962
                        LABEL_SKILLS <a href="#" title="" class="btn-skills-edit"> <i class="fa fa-pen"></i></a>
1963
                    </h6>
1964
                    <div class="row">
1965
                        <div class="col-12 mt-3">
1966
                            <ul id="list-skills">
1967
                            </ul>
1968
                        </div>
1969
                    </div>
1970
                </div>
1971
            </div>
1972
 
1973
            <div class="card  mt-3">
1974
                <div class="card-body">
1975
                    <h6 class="card-title">
1976
                        LABEL_LANGUAGES <a href="#" title="" class="btn-languages-edit"> <i class="fa fa-pen"></i></a>
1977
                    </h6>
1978
                    <div class="row">
1979
                        <div class="col-12 mt-3">
1980
                            <ul id="list-languages">
1981
                            </ul>
1982
                        </div>
1983
                    </div>
1984
                </div>
1985
            </div>
1986
 
1987
            <div class="card  mt-3">
1988
                <div class="card-body">
1989
                    <h6 class="card-title">
1990
                        LABEL_DEGREES <a href="#" title="" class="btn-degrees-edit"> <i class="fa fa-pen"></i></a>
1991
                    </h6>
1992
                    <div class="row">
1993
                        <div class="col-12 mt-3">
1994
                            <ul id="list-degrees">
1995
                            </ul>
1996
                        </div>
1997
                    </div>
1998
                </div>
1999
            </div>
2000
 
2001
        </div>
2002
        <div class="card-footer text-right">
2003
            <button type="button" class="btn btn-light btn-cancel">LABEL_CANCEL</button>
2004
        </div>
2005
    </div>
2006
</div>
2007
 
2008
 
2009
 
16822 efrain 2010
<div class="modal" tabindex="-1" role="dialog" id="add-job-box">
16941 stevensc 2011
    <div class="modal-dialog" role="document">
2012
        <?php
2013
        $form = $this->formAdd;
2014
        $form->setAttributes([
2015
            'method'    => 'post',
2016
            'name'      => 'form-add',
2017
            'id'        => 'form-add'
2018
        ]);
2019
        $form->prepare();
2020
        echo $this->form()->openTag($form);
2021
 
2022
        $fieldnames = [
2023
            'formatted_address',
2024
            'address1',
2025
            'address2',
2026
            'country',
2027
            'state',
2028
            'city1',
2029
            'city2',
2030
            'postal_code',
2031
            'latitude',
2032
            'longitude',
2033
        ];
2034
 
2035
        foreach ($fieldnames as $fieldname) {
2036
 
2037
            $element = $form->get($fieldname);
2038
            echo $this->formHidden($element);
2039
        }
2040
        ?>
2041
        <div class="modal-content">
2042
            <div class="modal-header">
2043
                <h6 class="modal-title">LABEL_NEW_JOB</h6>
2044
            </div>
2045
            <div class="modal-body">
2046
                <div class="row">
2047
                    <div class="col-12 mt-3">
2048
                        <?php
2049
                        $element = $form->get('title');
2050
                        $element->setOptions(['label' => 'LABEL_TITLE']);
2051
                        $element->setAttributes(['class' => 'form-control']);
2052
                        echo $this->formLabel($element);
2053
                        echo $this->formText($element);
16845 efrain 2054
                        ?>
16941 stevensc 2055
                    </div>
2056
                </div>
2057
                <div class="row">
2058
                    <div class="col-12 mt-3">
2059
                        <?php
2060
                        $element = $form->get('employment_type');
2061
                        $element->setAttributes(['class' => 'form-control']);
2062
                        $element->setOptions(['empty_option' => 'LABEL_SELECT_EMPLOYMENT_TYPE', 'label' => 'LABEL_EMPLOYMENT_TYPE']);
2063
                        echo $this->formLabel($element);
2064
                        echo $this->formSelect($element);
16845 efrain 2065
                        ?>
16941 stevensc 2066
                    </div>
2067
                </div>
2068
                <div class="row">
2069
                    <div class="col-12 mt-3">
2070
                        <?php
2071
                        $element = $form->get('last_date_of_application');
2072
                        $element->setAttributes(['class' => 'form-control']);
2073
                        $element->setOptions(['label' => 'LABEL_LAST_DATE_OF_APPLICATION']);
2074
                        echo $this->formLabel($element);
2075
                        echo $this->formText($element);
16845 efrain 2076
                        ?>
16941 stevensc 2077
                    </div>
2078
                </div>
2079
                <div class="row">
2080
                    <div class="col-12 mt-3">
2081
                        <?php
2082
                        $element = $form->get('job_category_id');
2083
                        $element->setOptions(['empty_option' => 'LABEL_SELECT_JOB_CATEGORY', 'label' => 'LABEL_JOB_CATEGORY']);
2084
                        $element->setAttributes(['class' => 'form-control']);
2085
                        echo $this->formLabel($element);
2086
                        echo $this->formSelect($element);
16845 efrain 2087
                        ?>
16941 stevensc 2088
                    </div>
2089
                </div>
2090
                <div class="row">
2091
                    <div class="col-12 mt-3">
2092
                        <?php
2093
                        $element = $form->get('location_search');
2094
                        $element->setAttributes(['name' => 'add_location_search',  'id' => 'add_location_search', 'class' => 'form-control']);
2095
                        $element->setOptions(['label' => 'LABEL_LOCATION']);
2096
                        echo $this->formLabel($element);
2097
                        echo $this->formText($element);
16845 efrain 2098
                        ?>
16941 stevensc 2099
                    </div>
2100
                </div>
2101
            </div>
2102
 
2103
            <div class="modal-footer text-right">
2104
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2105
                <button type="button" class="btn btn-default btn-add-job-cancel">LABEL_CANCEL</button>
2106
            </div>
2107
            <?php echo $this->form()->closeTag($form); ?>
2108
        </div>
2109
    </div>
16822 efrain 2110
</div>
16941 stevensc 2111
 
2112
 
16822 efrain 2113
<!-- The Modal -->
2114
<div class="modal" id="modalUsersWhoApplied">
16941 stevensc 2115
    <div class="modal-dialog modal-xl">
2116
        <div class="modal-content">
16822 efrain 2117
 
2118
            <!-- Modal Header -->
16941 stevensc 2119
            <div class="modal-header">
2120
                <h6 class="modal-title">LABEL_USERS_WHO_APPLIED</h6>
2121
                <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="btn-close"></button>
2122
            </div>
16822 efrain 2123
 
2124
            <!-- Modal body -->
16941 stevensc 2125
            <div class="modal-body">
2126
                <div style="height: 300px;overflow: scroll;">
2127
                    <table id="gridTableUsersWhoApplied" style="width: 100%" class="table table-bordered">
2128
                        <thead>
2129
                            <tr>
2130
                                <th>LABEL_FIRST_NAME</th>
2131
                                <th>LABEL_LAST_NAME</th>
2132
                                <th>LABEL_EMAIL</th>
2133
                                <th>LABEL_ACTIONS</th>
2134
                            </tr>
2135
                        </thead>
2136
                        <tbody>
2137
                        </tbody>
2138
                    </table>
2139
                </div>
16822 efrain 2140
 
16941 stevensc 2141
            </div>
2142
 
16822 efrain 2143
            <!-- Modal footer -->
16941 stevensc 2144
            <div class="modal-footer text-right">
2145
                <button type="button" class="btn btn-danger" data-dismiss="modal">LABEL_CLOSE</button>
2146
            </div>
16822 efrain 2147
 
16941 stevensc 2148
        </div>
2149
    </div>
2150
</div>
16822 efrain 2151
 
2152
<div class="modal" tabindex="-1" role="dialog" id="extended-box">
16941 stevensc 2153
    <div class="modal-dialog" role="document">
2154
        <?php
16822 efrain 2155
        $form = $this->formExtended;
2156
        $form->setAttributes([
2157
            'method' => 'post',
2158
            'name' => 'form-extended',
2159
            'id' => 'form-extended'
2160
        ]);
2161
        $form->prepare();
2162
        echo $this->form()->openTag($form);
16941 stevensc 2163
        ?>
2164
        <div class="modal-content">
2165
            <div class="modal-header">
2166
                <h6 class="modal-title">LABEL_OVERVIEW</h6>
2167
            </div>
2168
            <div class="modal-body">
2169
                <div class="row">
2170
                    <div class="col-12 mt-3">
2171
                        <?php
16845 efrain 2172
                        $element = $form->get('description');
2173
                        $element->setOptions(['label' => 'LABEL_OVERVIEW']);
2174
                        $element->setAttributes(['class' => 'form-control']);
2175
                        echo $this->formLabel($element);
2176
                        echo $this->formTextArea($element);
2177
                        ?>
2178
                    </div>
16941 stevensc 2179
                </div>
2180
            </div>
2181
            <div class="modal-footer text-right">
2182
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2183
                <button type="button" class="btn btn-default btn-extended-close">LABEL_CANCEL</button>
2184
            </div>
2185
            <?php echo $this->form()->closeTag($form); ?>
2186
        </div>
2187
    </div>
16822 efrain 2188
</div>
2189
 
2190
<div class="modal" tabindex="-1" role="dialog" id="location-box">
16941 stevensc 2191
    <div class="modal-dialog" role="document">
2192
        <?php
16822 efrain 2193
        $form = $this->formLocation;
2194
        $form->setAttributes([
2195
            'method' => 'post',
2196
            'name' => 'form-location',
2197
            'id' => 'form-location'
2198
        ]);
2199
        $form->prepare();
2200
        echo $this->form()->openTag($form);
16941 stevensc 2201
 
16822 efrain 2202
        $fieldnames = [
2203
            'formatted_address',
2204
            'address1',
2205
            'address2',
2206
            'country',
2207
            'state',
2208
            'city1',
2209
            'city2',
2210
            'postal_code',
2211
            'latitude',
2212
            'longitude',
2213
        ];
16941 stevensc 2214
 
2215
        foreach ($fieldnames as $fieldname) {
2216
 
16822 efrain 2217
            $element = $form->get($fieldname);
2218
            echo $this->formHidden($element);
2219
        }
2220
        ?>
16941 stevensc 2221
        <div class="modal-content">
2222
            <div class="modal-header">
2223
                <h6 class="modal-title">LABEL_LOCATION</h6>
2224
            </div>
2225
            <div class="modal-body">
2226
                <div class="row">
2227
                    <div class="col-12 mt-3">
2228
 
2229
                        <?php
2230
                        $element = $form->get('location_search');
2231
                        $element->setOptions(['label' => 'LABEL_LOCATION']);
2232
                        $element->setAttributes(['class' => 'form-control']);
2233
                        echo $this->formLabel($element);
16845 efrain 2234
                        ?>
16941 stevensc 2235
                        <div class="input-group mb-3">
16822 efrain 2236
 
16941 stevensc 2237
                            <?php
2238
                            echo $this->formText($element);
2239
                            ?>
2240
                            <span class="input-group-text"><i class="fa fa-map-marker"></i></span>
2241
                        </div>
2242
 
2243
 
2244
                    </div>
2245
                </div>
2246
            </div>
2247
            <div class="modal-footer text-right">
2248
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2249
                <button type="button" class="btn btn-default btn-location-close">LABEL_CANCEL</button>
2250
            </div>
2251
            <?php echo $this->form()->closeTag($form); ?>
2252
        </div>
2253
    </div>
2254
</div>
2255
 
16822 efrain 2256
<div class="modal" tabindex="-1" role="dialog" id="employment-type-box">
16941 stevensc 2257
    <div class="modal-dialog" role="document">
2258
        <?php
16822 efrain 2259
        $form = $this->formEmploymentType;
2260
        $form->setAttributes([
2261
            'method' => 'post',
2262
            'name' => 'form-employment-type',
2263
            'id' => 'form-employment-type'
2264
        ]);
2265
        $form->prepare();
2266
        echo $this->form()->openTag($form);
16941 stevensc 2267
        ?>
2268
        <div class="modal-content">
2269
            <div class="modal-header">
2270
                <h6 class="modal-title">LABEL_EMPLOYMENT_TYPE</h6>
2271
            </div>
2272
            <div class="modal-body">
2273
                <div class="row">
2274
                    <div class="col-12 mt-3">
2275
                        <?php
16845 efrain 2276
                        $element = $form->get('employment_type');
2277
                        $element->setOptions(['label' => 'LABEL_EMPLOYMENT_TYPE']);
2278
                        $element->setAttributes(['class' => 'form-control']);
2279
                        echo $this->formLabel($element);
2280
                        echo $this->formSelect($element);
2281
                        ?>
16941 stevensc 2282
                    </div>
2283
                </div>
2284
            </div>
2285
            <div class="modal-footer text-right">
2286
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2287
                <button type="button" class="btn btn-default btn-employment-type-close">LABEL_CANCEL</button>
2288
            </div>
2289
            <?php echo $this->form()->closeTag($form); ?>
2290
        </div>
2291
    </div>
2292
</div>
16822 efrain 2293
 
2294
<div class="modal" tabindex="-1" role="dialog" id="job-category-box">
16941 stevensc 2295
    <div class="modal-dialog" role="document">
2296
        <?php
16822 efrain 2297
        $form = $this->formJobCategory;
2298
        $form->setAttributes([
2299
            'method' => 'post',
2300
            'name' => 'form-job-category',
2301
            'id' => 'form-job-category'
2302
        ]);
2303
        $form->prepare();
2304
        echo $this->form()->openTag($form);
16941 stevensc 2305
        ?>
2306
        <div class="modal-content">
2307
            <div class="modal-header">
2308
                <h6 class="modal-title">LABEL_JOB_CATEGORY</h6>
2309
            </div>
2310
            <div class="modal-body">
2311
                <div class="row">
2312
                    <div class="col-12 mt-3">
2313
                        <?php
16845 efrain 2314
                        $element = $form->get('job_category_id');
2315
                        $element->setOptions(['label' => 'LABEL_JOB_CATEGORY']);
2316
                        $element->setAttributes(['class' => 'form-control']);
2317
                        echo $this->formLabel($element);
2318
                        echo $this->formSelect($element);
2319
                        ?>
16941 stevensc 2320
                    </div>
2321
                </div>
2322
            </div>
2323
            <div class="modal-footer text-right">
2324
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2325
                <button type="button" class="btn btn-default btn-job-category-close">LABEL_CANCEL</button>
2326
            </div>
2327
            <?php echo $this->form()->closeTag($form); ?>
2328
        </div>
2329
    </div>
2330
</div>
16822 efrain 2331
 
2332
<div class="modal" tabindex="-1" role="dialog" id="salary-box">
16941 stevensc 2333
    <div class="modal-dialog" role="document">
2334
        <?php
16822 efrain 2335
        $form = $this->formSalary;
2336
        $form->setAttributes([
2337
            'method' => 'post',
2338
            'name' => 'form-salary',
2339
            'id' => 'form-salary'
2340
        ]);
2341
        $form->prepare();
2342
        echo $this->form()->openTag($form);
16941 stevensc 2343
        ?>
2344
        <div class="modal-content">
2345
            <div class="modal-header">
2346
                <h6 class="modal-title">LABEL_SALARY</h6>
2347
            </div>
2348
            <div class="modal-body">
2349
                <div class="row">
2350
                    <div class="col-12 mt-3">
2351
                        <?php
16845 efrain 2352
                        $element = $form->get('salary_visible');
2353
                        echo $this->formCheckbox($element);
2354
                        ?>
16941 stevensc 2355
                    </div>
16822 efrain 2356
                </div>
16941 stevensc 2357
                <div class="row">
2358
                    <div class="col-12 mt-3">
2359
                        <?php
16845 efrain 2360
                        $element = $form->get('salary_currency');
2361
                        $element->setAttributes(['class' => 'form-control']);
2362
                        $element->setOptions(['label' => 'LABEL_CURRENCY']);
2363
                        echo $this->formLabel($element);
2364
                        echo $this->formSelect($element);
2365
                        ?>
16941 stevensc 2366
                    </div>
16822 efrain 2367
                </div>
16941 stevensc 2368
                <div class="row">
2369
                    <div class="col-12 mt-3">
2370
                        <?php
16845 efrain 2371
                        $element = $form->get('salary_min');
2372
                        $element->setOptions(['label' => 'LABEL_MINIMUM']);
2373
                        $element->setAttributes(['class' => 'form-control']);
2374
                        echo $this->formLabel($element);
2375
                        echo $this->formText($element);
2376
                        ?>
16941 stevensc 2377
                    </div>
16822 efrain 2378
                </div>
16941 stevensc 2379
                <div class="row">
2380
                    <div class="col-12 mt-3">
2381
                        <?php
16845 efrain 2382
                        $element = $form->get('salary_max');
2383
                        $element->setOptions(['label' => 'LABEL_MAXIMUM']);
2384
                        $element->setAttributes(['class' => 'form-control']);
2385
                        echo $this->formLabel($element);
2386
                        echo $this->formText($element);
2387
                        ?>
16941 stevensc 2388
                    </div>
16822 efrain 2389
                </div>
16941 stevensc 2390
            </div>
2391
            <div class="modal-footer text-right">
2392
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2393
                <button type="button" class="btn btn-default btn-salary-close">LABEL_CANCEL</button>
2394
            </div>
2395
            <?php echo $this->form()->closeTag($form); ?>
2396
        </div>
2397
    </div>
2398
</div>
16822 efrain 2399
 
2400
<div class="modal" tabindex="-1" role="dialog" id="experience-box">
16941 stevensc 2401
    <div class="modal-dialog" role="document">
2402
        <?php
16822 efrain 2403
        $form = $this->formExperience;
2404
        $form->setAttributes([
2405
            'method' => 'post',
2406
            'name' => 'form-experience',
2407
            'id' => 'form-experience'
2408
        ]);
2409
        $form->prepare();
2410
        echo $this->form()->openTag($form);
16941 stevensc 2411
        ?>
2412
        <div class="modal-content">
2413
            <div class="modal-header">
2414
                <h6 class="modal-title">LABEL_EXPERIENCE</h6>
2415
            </div>
2416
            <div class="modal-body">
2417
                <div class="row">
2418
                    <div class="col-12 mt-3">
2419
                        <?php
16845 efrain 2420
                        $element = $form->get('experience_visible');
16941 stevensc 2421
 
16845 efrain 2422
                        echo $this->formCheckbox($element);
2423
                        ?>
16941 stevensc 2424
                    </div>
16822 efrain 2425
                </div>
16941 stevensc 2426
                <div class="row">
2427
                    <div class="col-12 mt-3">
2428
                        <?php
16845 efrain 2429
                        $element = $form->get('experience_min');
2430
                        $element->setOptions(['label' => 'LABEL_MINIMUM']);
2431
                        $element->setAttributes(['class' => 'form-control']);
2432
                        echo $this->formLabel($element);
2433
                        echo $this->formText($element);
2434
                        ?>
16941 stevensc 2435
                    </div>
16822 efrain 2436
                </div>
16941 stevensc 2437
                <div class="row">
2438
                    <div class="col-12 mt-3">
2439
                        <?php
16845 efrain 2440
                        $element = $form->get('experience_max');
2441
                        $element->setOptions(['label' => 'LABEL_MAXIMUM']);
2442
                        $element->setAttributes(['class' => 'form-control']);
2443
                        echo $this->formLabel($element);
2444
                        echo $this->formText($element);
2445
                        ?>
16941 stevensc 2446
                    </div>
16822 efrain 2447
                </div>
16941 stevensc 2448
            </div>
2449
            <div class="modal-footer text-right">
2450
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2451
                <button type="button" class="btn btn-default btn-experience-close">LABEL_CANCEL</button>
2452
            </div>
2453
            <?php echo $this->form()->closeTag($form); ?>
2454
        </div>
2455
    </div>
2456
</div>
16822 efrain 2457
 
2458
 
2459
<div class="modal" tabindex="-1" role="dialog" id="skills-box">
16941 stevensc 2460
    <div class="modal-dialog" role="document">
2461
        <?php
2462
        $form = $this->formSkill;
2463
        $form->setAttributes([
2464
            'method' => 'post',
2465
            'name' => 'form-skill',
2466
            'id' => 'form-skill'
2467
        ]);
2468
        $form->prepare();
2469
        echo $this->form()->openTag($form);
2470
        ?>
2471
        <div class="modal-content">
2472
            <div class="modal-header">
2473
                <h6 class="modal-title">LABEL_SKILLS</h6>
2474
            </div>
2475
            <div class="modal-body">
2476
                <div class="row">
2477
                    <div class="col-12 mt-3">
2478
                        <?php
16845 efrain 2479
                        $element = $form->get('skills');
2480
                        $element->setOptions(['label' => 'LABEL_SKILLS']);
2481
                        $element->setAttributes(['class' => 'form-control']);
2482
                        echo $this->formLabel($element);
2483
                        echo $this->formSelect($element);
16941 stevensc 2484
                        ?>
16845 efrain 2485
                    </div>
16941 stevensc 2486
                </div>
2487
            </div>
2488
 
2489
 
2490
            <div class="modal-footer text-right">
2491
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2492
                <button type="button" class="btn btn-default btn-skills-close">LABEL_CANCEL</button>
2493
            </div>
2494
            <?php echo $this->form()->closeTag($form); ?>
2495
        </div>
2496
    </div>
16822 efrain 2497
</div>
2498
 
2499
<div class="modal" tabindex="-1" role="dialog" id="languages-box">
16941 stevensc 2500
    <div class="modal-dialog" role="document">
2501
        <?php
16822 efrain 2502
        $form = $this->formLanguage;
2503
        $form->setAttributes([
2504
            'method' => 'post',
2505
            'name' => 'form-language',
2506
            'id' => 'form-language'
2507
        ]);
2508
        $form->prepare();
2509
        echo $this->form()->openTag($form);
16941 stevensc 2510
        ?>
2511
        <div class="modal-content">
2512
            <div class="modal-header">
2513
                <h6 class="modal-title">LABEL_LANGUAGES</h6>
2514
            </div>
2515
            <div class="modal-body">
2516
                <div class="row">
2517
                    <div class="col-12 mt-3">
2518
                        <?php
16845 efrain 2519
                        $element = $form->get('languages');
2520
                        $element->setOptions(['label' => 'LABEL_LANGUAGES']);
2521
                        $element->setAttributes(['class' => 'form-control']);
2522
                        echo $this->formLabel($element);
2523
                        echo $this->formSelect($element);
2524
                        ?>
16941 stevensc 2525
                    </div>
16822 efrain 2526
                </div>
16941 stevensc 2527
            </div>
2528
            <div class="modal-footer text-right">
2529
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2530
                <button type="button" class="btn btn-default btn-languages-close">LABEL_CANCEL</button>
2531
            </div>
2532
            <?php echo $this->form()->closeTag($form); ?>
2533
        </div>
2534
    </div>
16822 efrain 2535
</div>
2536
 
2537
<div class="modal" tabindex="-1" role="dialog" id="last-date-of-application-box">
16941 stevensc 2538
    <div class="modal-dialog" role="document">
2539
        <?php
2540
        $form = $this->fromLastDateOfApplication;
16822 efrain 2541
        $form->setAttributes([
2542
            'method' => 'post',
2543
            'name' => 'form-last-date-of-application',
2544
            'id' => 'form-last-date-of-application'
2545
        ]);
2546
        $form->prepare();
2547
        echo $this->form()->openTag($form);
16941 stevensc 2548
        ?>
2549
        <div class="modal-content">
2550
            <div class="modal-header">
2551
                <h6 class="modal-title">LABEL_LAST_DATE_OF_APPLICATION</h6>
2552
            </div>
2553
            <div class="modal-body">
2554
                <div class="row">
2555
                    <div class="col-12 mt-3">
2556
                        <?php
16845 efrain 2557
                        $element = $form->get('last_date_of_application');
2558
                        $element->setOptions(['label' => 'LABEL_LAST_DATE_OF_APPLICATION']);
2559
                        $element->setAttributes(['class' => 'form-control']);
2560
                        echo $this->formLabel($element);
2561
                        echo $this->formText($element);
2562
                        ?>
16941 stevensc 2563
                    </div>
16822 efrain 2564
                </div>
16941 stevensc 2565
            </div>
2566
            <div class="modal-footer text-right">
2567
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2568
                <button type="button" class="btn btn-default btn-last-date-of-application-close">LABEL_CANCEL</button>
2569
            </div>
2570
            <?php echo $this->form()->closeTag($form); ?>
2571
        </div>
2572
    </div>
16822 efrain 2573
</div>
2574
 
2575
<div class="modal" tabindex="-1" role="dialog" id="degrees-box">
16941 stevensc 2576
    <div class="modal-dialog" role="document">
2577
        <?php
16822 efrain 2578
        $form = $this->formDegree;
2579
        $form->setAttributes([
2580
            'method' => 'post',
2581
            'name' => 'form-degree',
2582
            'id' => 'form-degree'
2583
        ]);
2584
        $form->prepare();
2585
        echo $this->form()->openTag($form);
16941 stevensc 2586
        ?>
2587
        <div class="modal-content">
2588
            <div class="modal-header">
2589
                <h6 class="modal-title">LABEL_DEGREES</h6>
2590
            </div>
2591
            <div class="modal-body">
2592
                <div class="row">
2593
                    <div class="col-12 mt-3">
2594
                        <?php
16845 efrain 2595
                        $element = $form->get('degrees');
2596
                        $element->setOptions(['label' => 'LABEL_DEGREES']);
2597
                        $element->setAttributes(['class' => 'form-control']);
2598
                        echo $this->formLabel($element);
2599
                        echo $this->formSelect($element);
2600
                        ?>
16941 stevensc 2601
                    </div>
16822 efrain 2602
                </div>
16941 stevensc 2603
            </div>
2604
            <div class="modal-footer text-right">
2605
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2606
                <button type="button" class="btn btn-default btn-degrees-close">LABEL_CANCEL</button>
2607
            </div>
2608
            <?php echo $this->form()->closeTag($form); ?>
2609
        </div>
2610
    </div>
16822 efrain 2611
</div>
2612
 
2613
<div class="modal" tabindex="-1" role="dialog" id="status-box">
16941 stevensc 2614
    <div class="modal-dialog" role="document">
2615
        <?php
2616
        $form = $this->formStatus;
2617
        $form->setAttributes([
2618
            'method' => 'post',
2619
            'name' => 'form-status',
2620
            'id' => 'form-status'
2621
        ]);
2622
        $form->prepare();
2623
        echo $this->form()->openTag($form);
2624
        ?>
2625
        <div class="modal-content">
2626
            <div class="modal-header">
2627
                <h6 class="modal-title">LABEL_STATUS</h6>
2628
            </div>
2629
            <div class="modal-body">
2630
                <div class="row">
2631
                    <div class="col-12 mt-3">
2632
                        <?php
16845 efrain 2633
                        $element = $form->get('status');
2634
                        $element->setOptions(['label' => 'LABEL_STATUS']);
2635
                        $element->setAttributes(['class' => 'form-control']);
2636
                        echo $this->formLabel($element);
2637
                        echo $this->formSelect($element);
2638
                        ?>
16941 stevensc 2639
                    </div>
16822 efrain 2640
                </div>
16941 stevensc 2641
            </div>
2642
 
2643
 
2644
            <div class="modal-footer text-right">
2645
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2646
                <button type="button" class="btn btn-default btn-status-close">LABEL_CANCEL</button>
2647
            </div>
2648
            <?php echo $this->form()->closeTag($form); ?>
2649
        </div>
2650
    </div>
16822 efrain 2651
</div>
2652
 
2653
<div class="modal" tabindex="-1" role="dialog" id="title-box">
16941 stevensc 2654
    <div class="modal-dialog" role="document">
2655
        <?php
2656
        $form = $this->formTitle;
2657
        $form->setAttributes([
2658
            'method' => 'post',
2659
            'name' => 'form-title',
2660
            'id' => 'form-title'
2661
        ]);
2662
        $form->prepare();
2663
        echo $this->form()->openTag($form);
2664
        ?>
2665
        <div class="modal-content">
2666
            <div class="modal-header">
2667
                <h6 class="modal-title">LABEL_TITLE</h6>
2668
            </div>
2669
            <div class="modal-body">
2670
                <div class="row">
2671
                    <div class="col-12 mt-3">
2672
                        <?php
16845 efrain 2673
                        $element = $form->get('title');
2674
                        $element->setOptions(['label' => 'LABEL_TITLE']);
2675
                        $element->setAttributes(['class' => 'form-control']);
2676
                        echo $this->formLabel($element);
2677
                        echo $this->formText($element);
2678
                        ?>
16941 stevensc 2679
                    </div>
16822 efrain 2680
                </div>
16941 stevensc 2681
            </div>
2682
 
2683
 
2684
            <div class="modal-footer text-right">
2685
                <button type="submit" class="btn btn-primary">LABEL_SAVE</button>
2686
                <button type="button" class="btn btn-default btn-title-close">LABEL_CANCEL</button>
2687
            </div>
2688
            <?php echo $this->form()->closeTag($form); ?>
2689
        </div>
2690
    </div>
15045 stevensc 2691
</div>