-
Notifications
You must be signed in to change notification settings - Fork 3
/
availability_dml.php
663 lines (571 loc) · 34.4 KB
/
availability_dml.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
<?php
// Data functions (insert, update, delete, form) for table availability
// This script and data application were generated by AppGini 5.71
// Download AppGini for free from https://bigprof.com/appgini/download/
function availability_insert(){
global $Translation;
// mm: can member insert record?
$arrPerm=getTablePermissions('availability');
if(!$arrPerm[1]){
return false;
}
$data['bus'] = makeSafe($_REQUEST['bus']);
if($data['bus'] == empty_lookup_value){ $data['bus'] = ''; }
$data['route'] = makeSafe($_REQUEST['route']);
if($data['route'] == empty_lookup_value){ $data['route'] = ''; }
$data['amount'] = makeSafe($_REQUEST['route']);
if($data['amount'] == empty_lookup_value){ $data['amount'] = ''; }
$data['date'] = intval($_REQUEST['dateYear']) . '-' . intval($_REQUEST['dateMonth']) . '-' . intval($_REQUEST['dateDay']);
$data['date'] = parseMySQLDate($data['date'], '1');
$data['time'] = makeSafe($_REQUEST['time']);
if($data['time'] == empty_lookup_value){ $data['time'] = ''; }
$data['time'] = time24($data['time']);
$data['status'] = makeSafe($_REQUEST['status']);
if($data['status'] == empty_lookup_value){ $data['status'] = ''; }
// hook: availability_before_insert
if(function_exists('availability_before_insert')){
$args=array();
if(!availability_before_insert($data, getMemberInfo(), $args)){ return false; }
}
$o = array('silentErrors' => true);
sql('insert into `availability` set `bus`=' . (($data['bus'] !== '' && $data['bus'] !== NULL) ? "'{$data['bus']}'" : 'NULL') . ', `route`=' . (($data['route'] !== '' && $data['route'] !== NULL) ? "'{$data['route']}'" : 'NULL') . ', `amount`=' . (($data['amount'] !== '' && $data['amount'] !== NULL) ? "'{$data['amount']}'" : 'NULL') . ', `date`=' . (($data['date'] !== '' && $data['date'] !== NULL) ? "'{$data['date']}'" : 'NULL') . ', `time`=' . (($data['time'] !== '' && $data['time'] !== NULL) ? "'{$data['time']}'" : 'NULL') . ', `status`=' . (($data['status'] !== '' && $data['status'] !== NULL) ? "'{$data['status']}'" : 'NULL'), $o);
if($o['error']!=''){
echo $o['error'];
echo "<a href=\"availability_view.php?addNew_x=1\">{$Translation['< back']}</a>";
exit;
}
$recID = db_insert_id(db_link());
// hook: availability_after_insert
if(function_exists('availability_after_insert')){
$res = sql("select * from `availability` where `id`='" . makeSafe($recID, false) . "' limit 1", $eo);
if($row = db_fetch_assoc($res)){
$data = array_map('makeSafe', $row);
}
$data['selectedID'] = makeSafe($recID, false);
$args=array();
if(!availability_after_insert($data, getMemberInfo(), $args)){ return $recID; }
}
// mm: save ownership data
set_record_owner('availability', $recID, getLoggedMemberID());
return $recID;
}
function availability_delete($selected_id, $AllowDeleteOfParents=false, $skipChecks=false){
// insure referential integrity ...
global $Translation;
$selected_id=makeSafe($selected_id);
// mm: can member delete record?
$arrPerm=getTablePermissions('availability');
$ownerGroupID=sqlValue("select groupID from membership_userrecords where tableName='availability' and pkValue='$selected_id'");
$ownerMemberID=sqlValue("select lcase(memberID) from membership_userrecords where tableName='availability' and pkValue='$selected_id'");
if(($arrPerm[4]==1 && $ownerMemberID==getLoggedMemberID()) || ($arrPerm[4]==2 && $ownerGroupID==getLoggedGroupID()) || $arrPerm[4]==3){ // allow delete?
// delete allowed, so continue ...
}else{
return $Translation['You don\'t have enough permissions to delete this record'];
}
// hook: availability_before_delete
if(function_exists('availability_before_delete')){
$args=array();
if(!availability_before_delete($selected_id, $skipChecks, getMemberInfo(), $args))
return $Translation['Couldn\'t delete this record'];
}
// child table: bookings
$res = sql("select `id` from `availability` where `id`='$selected_id'", $eo);
$id = db_fetch_row($res);
$rires = sql("select count(1) from `bookings` where `bus`='".addslashes($id[0])."'", $eo);
$rirow = db_fetch_row($rires);
if($rirow[0] && !$AllowDeleteOfParents && !$skipChecks){
$RetMsg = $Translation["couldn't delete"];
$RetMsg = str_replace("<RelatedRecords>", $rirow[0], $RetMsg);
$RetMsg = str_replace("<TableName>", "bookings", $RetMsg);
return $RetMsg;
}elseif($rirow[0] && $AllowDeleteOfParents && !$skipChecks){
$RetMsg = $Translation["confirm delete"];
$RetMsg = str_replace("<RelatedRecords>", $rirow[0], $RetMsg);
$RetMsg = str_replace("<TableName>", "bookings", $RetMsg);
$RetMsg = str_replace("<Delete>", "<input type=\"button\" class=\"button\" value=\"".$Translation['yes']."\" onClick=\"window.location='availability_view.php?SelectedID=".urlencode($selected_id)."&delete_x=1&confirmed=1';\">", $RetMsg);
$RetMsg = str_replace("<Cancel>", "<input type=\"button\" class=\"button\" value=\"".$Translation['no']."\" onClick=\"window.location='availability_view.php?SelectedID=".urlencode($selected_id)."';\">", $RetMsg);
return $RetMsg;
}
sql("delete from `availability` where `id`='$selected_id'", $eo);
// hook: availability_after_delete
if(function_exists('availability_after_delete')){
$args=array();
availability_after_delete($selected_id, getMemberInfo(), $args);
}
// mm: delete ownership data
sql("delete from membership_userrecords where tableName='availability' and pkValue='$selected_id'", $eo);
}
function availability_update($selected_id){
global $Translation;
// mm: can member edit record?
$arrPerm=getTablePermissions('availability');
$ownerGroupID=sqlValue("select groupID from membership_userrecords where tableName='availability' and pkValue='".makeSafe($selected_id)."'");
$ownerMemberID=sqlValue("select lcase(memberID) from membership_userrecords where tableName='availability' and pkValue='".makeSafe($selected_id)."'");
if(($arrPerm[3]==1 && $ownerMemberID==getLoggedMemberID()) || ($arrPerm[3]==2 && $ownerGroupID==getLoggedGroupID()) || $arrPerm[3]==3){ // allow update?
// update allowed, so continue ...
}else{
return false;
}
$data['bus'] = makeSafe($_REQUEST['bus']);
if($data['bus'] == empty_lookup_value){ $data['bus'] = ''; }
$data['route'] = makeSafe($_REQUEST['route']);
if($data['route'] == empty_lookup_value){ $data['route'] = ''; }
$data['amount'] = makeSafe($_REQUEST['route']);
if($data['amount'] == empty_lookup_value){ $data['amount'] = ''; }
$data['date'] = intval($_REQUEST['dateYear']) . '-' . intval($_REQUEST['dateMonth']) . '-' . intval($_REQUEST['dateDay']);
$data['date'] = parseMySQLDate($data['date'], '1');
$data['time'] = makeSafe($_REQUEST['time']);
if($data['time'] == empty_lookup_value){ $data['time'] = ''; }
$data['time'] = time24($data['time']);
$data['status'] = makeSafe($_REQUEST['status']);
if($data['status'] == empty_lookup_value){ $data['status'] = ''; }
$data['selectedID']=makeSafe($selected_id);
// hook: availability_before_update
if(function_exists('availability_before_update')){
$args=array();
if(!availability_before_update($data, getMemberInfo(), $args)){ return false; }
}
$o=array('silentErrors' => true);
sql('update `availability` set `bus`=' . (($data['bus'] !== '' && $data['bus'] !== NULL) ? "'{$data['bus']}'" : 'NULL') . ', `route`=' . (($data['route'] !== '' && $data['route'] !== NULL) ? "'{$data['route']}'" : 'NULL') . ', `amount`=' . (($data['amount'] !== '' && $data['amount'] !== NULL) ? "'{$data['amount']}'" : 'NULL') . ', `date`=' . (($data['date'] !== '' && $data['date'] !== NULL) ? "'{$data['date']}'" : 'NULL') . ', `time`=' . (($data['time'] !== '' && $data['time'] !== NULL) ? "'{$data['time']}'" : 'NULL') . ', `status`=' . (($data['status'] !== '' && $data['status'] !== NULL) ? "'{$data['status']}'" : 'NULL') . " where `id`='".makeSafe($selected_id)."'", $o);
if($o['error']!=''){
echo $o['error'];
echo '<a href="availability_view.php?SelectedID='.urlencode($selected_id)."\">{$Translation['< back']}</a>";
exit;
}
// hook: availability_after_update
if(function_exists('availability_after_update')){
$res = sql("SELECT * FROM `availability` WHERE `id`='{$data['selectedID']}' LIMIT 1", $eo);
if($row = db_fetch_assoc($res)){
$data = array_map('makeSafe', $row);
}
$data['selectedID'] = $data['id'];
$args = array();
if(!availability_after_update($data, getMemberInfo(), $args)){ return; }
}
// mm: update ownership data
sql("update membership_userrecords set dateUpdated='".time()."' where tableName='availability' and pkValue='".makeSafe($selected_id)."'", $eo);
}
function availability_form($selected_id = '', $AllowUpdate = 1, $AllowInsert = 1, $AllowDelete = 1, $ShowCancel = 0, $TemplateDV = '', $TemplateDVP = ''){
// function to return an editable form for a table records
// and fill it with data of record whose ID is $selected_id. If $selected_id
// is empty, an empty form is shown, with only an 'Add New'
// button displayed.
global $Translation;
// mm: get table permissions
$arrPerm=getTablePermissions('availability');
if(!$arrPerm[1] && $selected_id==''){ return ''; }
$AllowInsert = ($arrPerm[1] ? true : false);
// print preview?
$dvprint = false;
if($selected_id && $_REQUEST['dvprint_x'] != ''){
$dvprint = true;
}
$filterer_bus = thisOr(undo_magic_quotes($_REQUEST['filterer_bus']), '');
$filterer_route = thisOr(undo_magic_quotes($_REQUEST['filterer_route']), '');
// populate filterers, starting from children to grand-parents
// unique random identifier
$rnd1 = ($dvprint ? rand(1000000, 9999999) : '');
// combobox: bus
$combo_bus = new DataCombo;
// combobox: route
$combo_route = new DataCombo;
// combobox: date
$combo_date = new DateCombo;
$combo_date->DateFormat = "mdy";
$combo_date->MinYear = 1900;
$combo_date->MaxYear = 2100;
$combo_date->DefaultDate = parseMySQLDate('1', '1');
$combo_date->MonthNames = $Translation['month names'];
$combo_date->NamePrefix = 'date';
// combobox: status
$combo_status = new Combo;
$combo_status->ListType = 0;
$combo_status->MultipleSeparator = ', ';
$combo_status->ListBoxHeight = 10;
$combo_status->RadiosPerLine = 1;
if(is_file(dirname(__FILE__).'/hooks/availability.status.csv')){
$status_data = addslashes(implode('', @file(dirname(__FILE__).'/hooks/availability.status.csv')));
$combo_status->ListItem = explode('||', entitiesToUTF8(convertLegacyOptions($status_data)));
$combo_status->ListData = $combo_status->ListItem;
}else{
$combo_status->ListItem = explode('||', entitiesToUTF8(convertLegacyOptions("available;;not available")));
$combo_status->ListData = $combo_status->ListItem;
}
$combo_status->SelectName = 'status';
if($selected_id){
// mm: check member permissions
if(!$arrPerm[2]){
return "";
}
// mm: who is the owner?
$ownerGroupID=sqlValue("select groupID from membership_userrecords where tableName='availability' and pkValue='".makeSafe($selected_id)."'");
$ownerMemberID=sqlValue("select lcase(memberID) from membership_userrecords where tableName='availability' and pkValue='".makeSafe($selected_id)."'");
if($arrPerm[2]==1 && getLoggedMemberID()!=$ownerMemberID){
return "";
}
if($arrPerm[2]==2 && getLoggedGroupID()!=$ownerGroupID){
return "";
}
// can edit?
if(($arrPerm[3]==1 && $ownerMemberID==getLoggedMemberID()) || ($arrPerm[3]==2 && $ownerGroupID==getLoggedGroupID()) || $arrPerm[3]==3){
$AllowUpdate=1;
}else{
$AllowUpdate=0;
}
$res = sql("select * from `availability` where `id`='".makeSafe($selected_id)."'", $eo);
if(!($row = db_fetch_array($res))){
return error_message($Translation['No records found'], 'availability_view.php', false);
}
$urow = $row; /* unsanitized data */
$hc = new CI_Input();
$row = $hc->xss_clean($row); /* sanitize data */
$combo_bus->SelectedData = $row['bus'];
$combo_route->SelectedData = $row['route'];
$combo_date->DefaultDate = $row['date'];
$combo_status->SelectedData = $row['status'];
}else{
$combo_bus->SelectedData = $filterer_bus;
$combo_route->SelectedData = $filterer_route;
$combo_status->SelectedText = ( $_REQUEST['FilterField'][1]=='7' && $_REQUEST['FilterOperator'][1]=='<=>' ? (get_magic_quotes_gpc() ? stripslashes($_REQUEST['FilterValue'][1]) : $_REQUEST['FilterValue'][1]) : "");
}
$combo_bus->HTML = '<span id="bus-container' . $rnd1 . '"></span><input type="hidden" name="bus" id="bus' . $rnd1 . '" value="' . html_attr($combo_bus->SelectedData) . '">';
$combo_bus->MatchText = '<span id="bus-container-readonly' . $rnd1 . '"></span><input type="hidden" name="bus" id="bus' . $rnd1 . '" value="' . html_attr($combo_bus->SelectedData) . '">';
$combo_route->HTML = '<span id="route-container' . $rnd1 . '"></span><input type="hidden" name="route" id="route' . $rnd1 . '" value="' . html_attr($combo_route->SelectedData) . '">';
$combo_route->MatchText = '<span id="route-container-readonly' . $rnd1 . '"></span><input type="hidden" name="route" id="route' . $rnd1 . '" value="' . html_attr($combo_route->SelectedData) . '">';
$combo_status->Render();
ob_start();
?>
<script>
// initial lookup values
AppGini.current_bus__RAND__ = { text: "", value: "<?php echo addslashes($selected_id ? $urow['bus'] : $filterer_bus); ?>"};
AppGini.current_route__RAND__ = { text: "", value: "<?php echo addslashes($selected_id ? $urow['route'] : $filterer_route); ?>"};
jQuery(function() {
setTimeout(function(){
if(typeof(bus_reload__RAND__) == 'function') bus_reload__RAND__();
if(typeof(route_reload__RAND__) == 'function') route_reload__RAND__();
}, 10); /* we need to slightly delay client-side execution of the above code to allow AppGini.ajaxCache to work */
});
function bus_reload__RAND__(){
<?php if(($AllowUpdate || $AllowInsert) && !$dvprint){ ?>
$j("#bus-container__RAND__").select2({
/* initial default value */
initSelection: function(e, c){
$j.ajax({
url: 'ajax_combo.php',
dataType: 'json',
data: { id: AppGini.current_bus__RAND__.value, t: 'availability', f: 'bus' },
success: function(resp){
c({
id: resp.results[0].id,
text: resp.results[0].text
});
$j('[name="bus"]').val(resp.results[0].id);
$j('[id=bus-container-readonly__RAND__]').html('<span id="bus-match-text">' + resp.results[0].text + '</span>');
if(resp.results[0].id == '<?php echo empty_lookup_value; ?>'){ $j('.btn[id=buses_view_parent]').hide(); }else{ $j('.btn[id=buses_view_parent]').show(); }
if(typeof(bus_update_autofills__RAND__) == 'function') bus_update_autofills__RAND__();
}
});
},
width: '100%',
formatNoMatches: function(term){ /* */ return '<?php echo addslashes($Translation['No matches found!']); ?>'; },
minimumResultsForSearch: 10,
loadMorePadding: 200,
ajax: {
url: 'ajax_combo.php',
dataType: 'json',
cache: true,
data: function(term, page){ /* */ return { s: term, p: page, t: 'availability', f: 'bus' }; },
results: function(resp, page){ /* */ return resp; }
},
escapeMarkup: function(str){ /* */ return str; }
}).on('change', function(e){
AppGini.current_bus__RAND__.value = e.added.id;
AppGini.current_bus__RAND__.text = e.added.text;
$j('[name="bus"]').val(e.added.id);
if(e.added.id == '<?php echo empty_lookup_value; ?>'){ $j('.btn[id=buses_view_parent]').hide(); }else{ $j('.btn[id=buses_view_parent]').show(); }
if(typeof(bus_update_autofills__RAND__) == 'function') bus_update_autofills__RAND__();
});
if(!$j("#bus-container__RAND__").length){
$j.ajax({
url: 'ajax_combo.php',
dataType: 'json',
data: { id: AppGini.current_bus__RAND__.value, t: 'availability', f: 'bus' },
success: function(resp){
$j('[name="bus"]').val(resp.results[0].id);
$j('[id=bus-container-readonly__RAND__]').html('<span id="bus-match-text">' + resp.results[0].text + '</span>');
if(resp.results[0].id == '<?php echo empty_lookup_value; ?>'){ $j('.btn[id=buses_view_parent]').hide(); }else{ $j('.btn[id=buses_view_parent]').show(); }
if(typeof(bus_update_autofills__RAND__) == 'function') bus_update_autofills__RAND__();
}
});
}
<?php }else{ ?>
$j.ajax({
url: 'ajax_combo.php',
dataType: 'json',
data: { id: AppGini.current_bus__RAND__.value, t: 'availability', f: 'bus' },
success: function(resp){
$j('[id=bus-container__RAND__], [id=bus-container-readonly__RAND__]').html('<span id="bus-match-text">' + resp.results[0].text + '</span>');
if(resp.results[0].id == '<?php echo empty_lookup_value; ?>'){ $j('.btn[id=buses_view_parent]').hide(); }else{ $j('.btn[id=buses_view_parent]').show(); }
if(typeof(bus_update_autofills__RAND__) == 'function') bus_update_autofills__RAND__();
}
});
<?php } ?>
}
function route_reload__RAND__(){
<?php if(($AllowUpdate || $AllowInsert) && !$dvprint){ ?>
$j("#route-container__RAND__").select2({
/* initial default value */
initSelection: function(e, c){
$j.ajax({
url: 'ajax_combo.php',
dataType: 'json',
data: { id: AppGini.current_route__RAND__.value, t: 'availability', f: 'route' },
success: function(resp){
c({
id: resp.results[0].id,
text: resp.results[0].text
});
$j('[name="route"]').val(resp.results[0].id);
$j('[id=route-container-readonly__RAND__]').html('<span id="route-match-text">' + resp.results[0].text + '</span>');
if(resp.results[0].id == '<?php echo empty_lookup_value; ?>'){ $j('.btn[id=routes_view_parent]').hide(); }else{ $j('.btn[id=routes_view_parent]').show(); }
if(typeof(route_update_autofills__RAND__) == 'function') route_update_autofills__RAND__();
}
});
},
width: '100%',
formatNoMatches: function(term){ /* */ return '<?php echo addslashes($Translation['No matches found!']); ?>'; },
minimumResultsForSearch: 10,
loadMorePadding: 200,
ajax: {
url: 'ajax_combo.php',
dataType: 'json',
cache: true,
data: function(term, page){ /* */ return { s: term, p: page, t: 'availability', f: 'route' }; },
results: function(resp, page){ /* */ return resp; }
},
escapeMarkup: function(str){ /* */ return str; }
}).on('change', function(e){
AppGini.current_route__RAND__.value = e.added.id;
AppGini.current_route__RAND__.text = e.added.text;
$j('[name="route"]').val(e.added.id);
if(e.added.id == '<?php echo empty_lookup_value; ?>'){ $j('.btn[id=routes_view_parent]').hide(); }else{ $j('.btn[id=routes_view_parent]').show(); }
if(typeof(route_update_autofills__RAND__) == 'function') route_update_autofills__RAND__();
});
if(!$j("#route-container__RAND__").length){
$j.ajax({
url: 'ajax_combo.php',
dataType: 'json',
data: { id: AppGini.current_route__RAND__.value, t: 'availability', f: 'route' },
success: function(resp){
$j('[name="route"]').val(resp.results[0].id);
$j('[id=route-container-readonly__RAND__]').html('<span id="route-match-text">' + resp.results[0].text + '</span>');
if(resp.results[0].id == '<?php echo empty_lookup_value; ?>'){ $j('.btn[id=routes_view_parent]').hide(); }else{ $j('.btn[id=routes_view_parent]').show(); }
if(typeof(route_update_autofills__RAND__) == 'function') route_update_autofills__RAND__();
}
});
}
<?php }else{ ?>
$j.ajax({
url: 'ajax_combo.php',
dataType: 'json',
data: { id: AppGini.current_route__RAND__.value, t: 'availability', f: 'route' },
success: function(resp){
$j('[id=route-container__RAND__], [id=route-container-readonly__RAND__]').html('<span id="route-match-text">' + resp.results[0].text + '</span>');
if(resp.results[0].id == '<?php echo empty_lookup_value; ?>'){ $j('.btn[id=routes_view_parent]').hide(); }else{ $j('.btn[id=routes_view_parent]').show(); }
if(typeof(route_update_autofills__RAND__) == 'function') route_update_autofills__RAND__();
}
});
<?php } ?>
}
</script>
<?php
$lookups = str_replace('__RAND__', $rnd1, ob_get_contents());
ob_end_clean();
// code for template based detail view forms
// open the detail view template
if($dvprint){
$template_file = is_file("./{$TemplateDVP}") ? "./{$TemplateDVP}" : './templates/availability_templateDVP.html';
$templateCode = @file_get_contents($template_file);
}else{
$template_file = is_file("./{$TemplateDV}") ? "./{$TemplateDV}" : './templates/availability_templateDV.html';
$templateCode = @file_get_contents($template_file);
}
// process form title
$templateCode = str_replace('<%%DETAIL_VIEW_TITLE%%>', 'Availability details', $templateCode);
$templateCode = str_replace('<%%RND1%%>', $rnd1, $templateCode);
$templateCode = str_replace('<%%EMBEDDED%%>', ($_REQUEST['Embedded'] ? 'Embedded=1' : ''), $templateCode);
// process buttons
if($AllowInsert){
if(!$selected_id) $templateCode = str_replace('<%%INSERT_BUTTON%%>', '<button type="submit" class="btn btn-success" id="insert" name="insert_x" value="1" onclick="return availability_validateData();"><i class="glyphicon glyphicon-plus-sign"></i> ' . $Translation['Save New'] . '</button>', $templateCode);
$templateCode = str_replace('<%%INSERT_BUTTON%%>', '<button type="submit" class="btn btn-default" id="insert" name="insert_x" value="1" onclick="return availability_validateData();"><i class="glyphicon glyphicon-plus-sign"></i> ' . $Translation['Save As Copy'] . '</button>', $templateCode);
}else{
$templateCode = str_replace('<%%INSERT_BUTTON%%>', '', $templateCode);
}
// 'Back' button action
if($_REQUEST['Embedded']){
$backAction = 'AppGini.closeParentModal(); return false;';
}else{
$backAction = '$j(\'form\').eq(0).attr(\'novalidate\', \'novalidate\'); document.myform.reset(); return true;';
}
if($selected_id){
if(!$_REQUEST['Embedded']) $templateCode = str_replace('<%%DVPRINT_BUTTON%%>', '<button type="submit" class="btn btn-default" id="dvprint" name="dvprint_x" value="1" onclick="$$(\'form\')[0].writeAttribute(\'novalidate\', \'novalidate\'); document.myform.reset(); return true;" title="' . html_attr($Translation['Print Preview']) . '"><i class="glyphicon glyphicon-print"></i> ' . $Translation['Print Preview'] . '</button>', $templateCode);
if($AllowUpdate){
$templateCode = str_replace('<%%UPDATE_BUTTON%%>', '<button type="submit" class="btn btn-success btn-lg" id="update" name="update_x" value="1" onclick="return availability_validateData();" title="' . html_attr($Translation['Save Changes']) . '"><i class="glyphicon glyphicon-ok"></i> ' . $Translation['Save Changes'] . '</button>', $templateCode);
}else{
$templateCode = str_replace('<%%UPDATE_BUTTON%%>', '', $templateCode);
}
if(($arrPerm[4]==1 && $ownerMemberID==getLoggedMemberID()) || ($arrPerm[4]==2 && $ownerGroupID==getLoggedGroupID()) || $arrPerm[4]==3){ // allow delete?
$templateCode = str_replace('<%%DELETE_BUTTON%%>', '<button type="submit" class="btn btn-danger" id="delete" name="delete_x" value="1" onclick="return confirm(\'' . $Translation['are you sure?'] . '\');" title="' . html_attr($Translation['Delete']) . '"><i class="glyphicon glyphicon-trash"></i> ' . $Translation['Delete'] . '</button>', $templateCode);
}else{
$templateCode = str_replace('<%%DELETE_BUTTON%%>', '', $templateCode);
}
$templateCode = str_replace('<%%DESELECT_BUTTON%%>', '<button type="submit" class="btn btn-default" id="deselect" name="deselect_x" value="1" onclick="' . $backAction . '" title="' . html_attr($Translation['Back']) . '"><i class="glyphicon glyphicon-chevron-left"></i> ' . $Translation['Back'] . '</button>', $templateCode);
}else{
$templateCode = str_replace('<%%UPDATE_BUTTON%%>', '', $templateCode);
$templateCode = str_replace('<%%DELETE_BUTTON%%>', '', $templateCode);
$templateCode = str_replace('<%%DESELECT_BUTTON%%>', ($ShowCancel ? '<button type="submit" class="btn btn-default" id="deselect" name="deselect_x" value="1" onclick="' . $backAction . '" title="' . html_attr($Translation['Back']) . '"><i class="glyphicon glyphicon-chevron-left"></i> ' . $Translation['Back'] . '</button>' : ''), $templateCode);
}
// set records to read only if user can't insert new records and can't edit current record
if(($selected_id && !$AllowUpdate && !$AllowInsert) || (!$selected_id && !$AllowInsert)){
$jsReadOnly .= "\tjQuery('#bus').prop('disabled', true).css({ color: '#555', backgroundColor: '#fff' });\n";
$jsReadOnly .= "\tjQuery('#bus_caption').prop('disabled', true).css({ color: '#555', backgroundColor: 'white' });\n";
$jsReadOnly .= "\tjQuery('#route').prop('disabled', true).css({ color: '#555', backgroundColor: '#fff' });\n";
$jsReadOnly .= "\tjQuery('#route_caption').prop('disabled', true).css({ color: '#555', backgroundColor: 'white' });\n";
$jsReadOnly .= "\tjQuery('#date').prop('readonly', true);\n";
$jsReadOnly .= "\tjQuery('#dateDay, #dateMonth, #dateYear').prop('disabled', true).css({ color: '#555', backgroundColor: '#fff' });\n";
$jsReadOnly .= "\tjQuery('#time').replaceWith('<div class=\"form-control-static\" id=\"time\">' + (jQuery('#time').val() || '') + '</div>');\n";
$jsReadOnly .= "\tjQuery('#status').replaceWith('<div class=\"form-control-static\" id=\"status\">' + (jQuery('#status').val() || '') + '</div>'); jQuery('#status-multi-selection-help').hide();\n";
$jsReadOnly .= "\tjQuery('.select2-container').hide();\n";
$noUploads = true;
}elseif($AllowInsert){
$jsEditable .= "\tjQuery('form').eq(0).data('already_changed', true);"; // temporarily disable form change handler
$jsEditable .= "\tjQuery('#time').addClass('always_shown').timepicker({ defaultTime: false, showSeconds: true, showMeridian: true, showInputs: false, disableFocus: true, minuteStep: 5 });";
$jsEditable .= "\tjQuery('form').eq(0).data('already_changed', false);"; // re-enable form change handler
}
// process combos
$templateCode = str_replace('<%%COMBO(bus)%%>', $combo_bus->HTML, $templateCode);
$templateCode = str_replace('<%%COMBOTEXT(bus)%%>', $combo_bus->MatchText, $templateCode);
$templateCode = str_replace('<%%URLCOMBOTEXT(bus)%%>', urlencode($combo_bus->MatchText), $templateCode);
$templateCode = str_replace('<%%COMBO(route)%%>', $combo_route->HTML, $templateCode);
$templateCode = str_replace('<%%COMBOTEXT(route)%%>', $combo_route->MatchText, $templateCode);
$templateCode = str_replace('<%%URLCOMBOTEXT(route)%%>', urlencode($combo_route->MatchText), $templateCode);
$templateCode = str_replace('<%%COMBO(date)%%>', ($selected_id && !$arrPerm[3] ? '<div class="form-control-static">' . $combo_date->GetHTML(true) . '</div>' : $combo_date->GetHTML()), $templateCode);
$templateCode = str_replace('<%%COMBOTEXT(date)%%>', $combo_date->GetHTML(true), $templateCode);
$templateCode = str_replace('<%%COMBO(status)%%>', $combo_status->HTML, $templateCode);
$templateCode = str_replace('<%%COMBOTEXT(status)%%>', $combo_status->SelectedData, $templateCode);
/* lookup fields array: 'lookup field name' => array('parent table name', 'lookup field caption') */
$lookup_fields = array( 'bus' => array('buses', 'Bus'), 'route' => array('routes', 'Route'));
foreach($lookup_fields as $luf => $ptfc){
$pt_perm = getTablePermissions($ptfc[0]);
// process foreign key links
if($pt_perm['view'] || $pt_perm['edit']){
$templateCode = str_replace("<%%PLINK({$luf})%%>", '<button type="button" class="btn btn-default view_parent hspacer-md" id="' . $ptfc[0] . '_view_parent" title="' . html_attr($Translation['View'] . ' ' . $ptfc[1]) . '"><i class="glyphicon glyphicon-eye-open"></i></button>', $templateCode);
}
// if user has insert permission to parent table of a lookup field, put an add new button
if($pt_perm['insert'] && !$_REQUEST['Embedded']){
$templateCode = str_replace("<%%ADDNEW({$ptfc[0]})%%>", '<button type="button" class="btn btn-success add_new_parent hspacer-md" id="' . $ptfc[0] . '_add_new" title="' . html_attr($Translation['Add New'] . ' ' . $ptfc[1]) . '"><i class="glyphicon glyphicon-plus-sign"></i></button>', $templateCode);
}
}
// process images
$templateCode = str_replace('<%%UPLOADFILE(id)%%>', '', $templateCode);
$templateCode = str_replace('<%%UPLOADFILE(bus)%%>', '', $templateCode);
$templateCode = str_replace('<%%UPLOADFILE(route)%%>', '', $templateCode);
$templateCode = str_replace('<%%UPLOADFILE(date)%%>', '', $templateCode);
$templateCode = str_replace('<%%UPLOADFILE(time)%%>', '', $templateCode);
$templateCode = str_replace('<%%UPLOADFILE(status)%%>', '', $templateCode);
// process values
if($selected_id){
if( $dvprint) $templateCode = str_replace('<%%VALUE(id)%%>', safe_html($urow['id']), $templateCode);
if(!$dvprint) $templateCode = str_replace('<%%VALUE(id)%%>', html_attr($row['id']), $templateCode);
$templateCode = str_replace('<%%URLVALUE(id)%%>', urlencode($urow['id']), $templateCode);
if( $dvprint) $templateCode = str_replace('<%%VALUE(bus)%%>', safe_html($urow['bus']), $templateCode);
if(!$dvprint) $templateCode = str_replace('<%%VALUE(bus)%%>', html_attr($row['bus']), $templateCode);
$templateCode = str_replace('<%%URLVALUE(bus)%%>', urlencode($urow['bus']), $templateCode);
if( $dvprint) $templateCode = str_replace('<%%VALUE(route)%%>', safe_html($urow['route']), $templateCode);
if(!$dvprint) $templateCode = str_replace('<%%VALUE(route)%%>', html_attr($row['route']), $templateCode);
$templateCode = str_replace('<%%URLVALUE(route)%%>', urlencode($urow['route']), $templateCode);
$templateCode = str_replace('<%%VALUE(date)%%>', @date('m/d/Y', @strtotime(html_attr($row['date']))), $templateCode);
$templateCode = str_replace('<%%URLVALUE(date)%%>', urlencode(@date('m/d/Y', @strtotime(html_attr($urow['date'])))), $templateCode);
$templateCode = str_replace('<%%VALUE(time)%%>', time12(html_attr($row['time'])), $templateCode);
$templateCode = str_replace('<%%URLVALUE(time)%%>', urlencode(time12($urow['time'])), $templateCode);
if( $dvprint) $templateCode = str_replace('<%%VALUE(status)%%>', safe_html($urow['status']), $templateCode);
if(!$dvprint) $templateCode = str_replace('<%%VALUE(status)%%>', html_attr($row['status']), $templateCode);
$templateCode = str_replace('<%%URLVALUE(status)%%>', urlencode($urow['status']), $templateCode);
}else{
$templateCode = str_replace('<%%VALUE(id)%%>', '', $templateCode);
$templateCode = str_replace('<%%URLVALUE(id)%%>', urlencode(''), $templateCode);
$templateCode = str_replace('<%%VALUE(bus)%%>', '', $templateCode);
$templateCode = str_replace('<%%URLVALUE(bus)%%>', urlencode(''), $templateCode);
$templateCode = str_replace('<%%VALUE(route)%%>', '', $templateCode);
$templateCode = str_replace('<%%URLVALUE(route)%%>', urlencode(''), $templateCode);
$templateCode = str_replace('<%%VALUE(date)%%>', '1', $templateCode);
$templateCode = str_replace('<%%URLVALUE(date)%%>', urlencode('1'), $templateCode);
$templateCode = str_replace('<%%VALUE(time)%%>', time12(''), $templateCode);
$templateCode = str_replace('<%%URLVALUE(time)%%>', urlencode(time12('')), $templateCode);
$templateCode = str_replace('<%%VALUE(status)%%>', '', $templateCode);
$templateCode = str_replace('<%%URLVALUE(status)%%>', urlencode(''), $templateCode);
}
// process translations
foreach($Translation as $symbol=>$trans){
$templateCode = str_replace("<%%TRANSLATION($symbol)%%>", $trans, $templateCode);
}
// clear scrap
$templateCode = str_replace('<%%', '<!-- ', $templateCode);
$templateCode = str_replace('%%>', ' -->', $templateCode);
// hide links to inaccessible tables
if($_REQUEST['dvprint_x'] == ''){
$templateCode .= "\n\n<script>\$j(function(){\n";
$arrTables = getTableList();
foreach($arrTables as $name => $caption){
$templateCode .= "\t\$j('#{$name}_link').removeClass('hidden');\n";
$templateCode .= "\t\$j('#xs_{$name}_link').removeClass('hidden');\n";
}
$templateCode .= $jsReadOnly;
$templateCode .= $jsEditable;
if(!$selected_id){
}
$templateCode.="\n});</script>\n";
}
// ajaxed auto-fill fields
$templateCode .= '<script>';
$templateCode .= '$j(function() {';
$templateCode .= "\troute_update_autofills$rnd1 = function(){\n";
$templateCode .= "\t\t\$j.ajax({\n";
if($dvprint){
$templateCode .= "\t\t\turl: 'availability_autofill.php?rnd1=$rnd1&mfk=route&id=' + encodeURIComponent('".addslashes($row['route'])."'),\n";
$templateCode .= "\t\t\tcontentType: 'application/x-www-form-urlencoded; charset=" . datalist_db_encoding . "', type: 'GET'\n";
}else{
$templateCode .= "\t\t\turl: 'availability_autofill.php?rnd1=$rnd1&mfk=route&id=' + encodeURIComponent(AppGini.current_route{$rnd1}.value),\n";
$templateCode .= "\t\t\tcontentType: 'application/x-www-form-urlencoded; charset=" . datalist_db_encoding . "', type: 'GET', beforeSend: function(){ /* */ \$j('#route$rnd1').prop('disabled', true); \$j('#routeLoading').html('<img src=loading.gif align=top>'); }, complete: function(){".(($arrPerm[1] || (($arrPerm[3] == 1 && $ownerMemberID == getLoggedMemberID()) || ($arrPerm[3] == 2 && $ownerGroupID == getLoggedGroupID()) || $arrPerm[3] == 3)) ? "\$j('#route$rnd1').prop('disabled', false); " : "\$j('#route$rnd1').prop('disabled', true); ")."\$j('#routeLoading').html('');}\n";
}
$templateCode.="\t\t});\n";
$templateCode.="\t};\n";
if(!$dvprint) $templateCode.="\tif(\$j('#route_caption').length) \$j('#route_caption').click(function(){ /* */ route_update_autofills$rnd1(); });\n";
$templateCode.="});";
$templateCode.="</script>";
$templateCode .= $lookups;
// handle enforced parent values for read-only lookup fields
// don't include blank images in lightbox gallery
$templateCode = preg_replace('/blank.gif" data-lightbox=".*?"/', 'blank.gif"', $templateCode);
// don't display empty email links
$templateCode=preg_replace('/<a .*?href="mailto:".*?<\/a>/', '', $templateCode);
/* default field values */
$rdata = $jdata = get_defaults('availability');
if($selected_id){
$jdata = get_joined_record('availability', $selected_id);
if($jdata === false) $jdata = get_defaults('availability');
$rdata = $row;
}
$cache_data = array(
'rdata' => array_map('nl2br', array_map('html_attr_tags_ok', $rdata)),
'jdata' => array_map('nl2br', array_map('html_attr_tags_ok', $jdata))
);
$templateCode .= loadView('availability-ajax-cache', $cache_data);
// hook: availability_dv
if(function_exists('availability_dv')){
$args=array();
availability_dv(($selected_id ? $selected_id : FALSE), getMemberInfo(), $templateCode, $args);
}
return $templateCode;
}
?>