|
@@ -30,8 +30,12 @@ discard block |
|
|
block discarded – undo |
|
30
|
30
|
//$end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".$_GET['end_date']." 00:00:00"; |
|
31
|
31
|
$end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".date("Y-m-d",strtotime($_GET['end_date']))." 00:00:00"; |
|
32
|
32
|
$sql_date = $end_date; |
|
33
|
|
- } else $sql_date = ''; |
|
34
|
|
-} else $sql_date = ''; |
|
|
33
|
+ } else { |
|
|
34
|
+ $sql_date = ''; |
|
|
35
|
+ } |
|
|
36
|
+ } else { |
|
|
37
|
+ $sql_date = ''; |
|
|
38
|
+} |
|
35
|
39
|
|
|
36
|
40
|
if (isset($_GET['highest_altitude'])) { |
|
37
|
41
|
//for altitude manipulation |
|
@@ -45,8 +49,12 @@ discard block |
|
|
block discarded – undo |
|
45
|
49
|
} else if($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != ""){ |
|
46
|
50
|
$start_altitude = filter_input(INPUT_GET,'lowest_altitude',FILTER_SANITIZE_NUMBER_INT).",60000"; |
|
47
|
51
|
$sql_altitude = $start_altitude; |
|
48
|
|
- } else $sql_altitude = ''; |
|
49
|
|
-} else $sql_altitude = ''; |
|
|
52
|
+ } else { |
|
|
53
|
+ $sql_altitude = ''; |
|
|
54
|
+ } |
|
|
55
|
+ } else { |
|
|
56
|
+ $sql_altitude = ''; |
|
|
57
|
+} |
|
50
|
58
|
|
|
51
|
59
|
//calculuation for the pagination |
|
52
|
60
|
if(!isset($_GET['limit'])) |
|
@@ -64,7 +72,7 @@ discard block |
|
|
block discarded – undo |
|
64
|
72
|
$limit_end = filter_input(INPUT_GET,'number_results',FILTER_SANITIZE_NUMBER_INT); |
|
65
|
73
|
$absolute_difference = filter_input(INPUT_GET,'number_results',FILTER_SANITIZE_NUMBER_INT); |
|
66
|
74
|
} |
|
67
|
|
-} else { |
|
|
75
|
+} else { |
|
68
|
76
|
$limit_explode = explode(",", $_GET['limit']); |
|
69
|
77
|
$limit_start = filter_var($limit_explode[0],FILTER_SANITIZE_NUMBER_INT); |
|
70
|
78
|
$limit_end = filter_var($limit_explode[1],FILTER_SANITIZE_NUMBER_INT); |
|
@@ -97,10 +105,15 @@ discard block |
|
|
block discarded – undo |
|
97
|
105
|
$origlon = filter_input(INPUT_GET,'origlon',FILTER_SANITIZE_STRING); |
|
98
|
106
|
$dist = filter_input(INPUT_GET,'dist',FILTER_SANITIZE_NUMBER_INT); |
|
99
|
107
|
if ($dist != '') { |
|
100
|
|
- if (isset($globalDistanceUnit) && $globalDistanceUnit == 'mi') $dist = $dist*1.60934; |
|
101
|
|
- elseif (isset($globalDistanceUnit) && $globalDistanceUnit == 'nm') $dist = $dist*1.852; |
|
|
108
|
+ if (isset($globalDistanceUnit) && $globalDistanceUnit == 'mi') { |
|
|
109
|
+ $dist = $dist*1.60934; |
|
|
110
|
+ } elseif (isset($globalDistanceUnit) && $globalDistanceUnit == 'nm') { |
|
|
111
|
+ $dist = $dist*1.852; |
|
|
112
|
+ } |
|
|
113
|
+ } |
|
|
114
|
+ if (!isset($sql_date)) { |
|
|
115
|
+ $sql_date = ''; |
|
102
|
116
|
} |
|
103
|
|
- if (!isset($sql_date)) $sql_date = ''; |
|
104
|
117
|
if ($archive == 1) { |
|
105
|
118
|
$SpotterArchive = new SpotterArchive(); |
|
106
|
119
|
$spotter_array = $SpotterArchive->searchSpotterData($q,$registration,$aircraft,strtolower(str_replace("-", " ", $manufacturer)),$highlights,$airline,$airline_country,$airline_type,$airport,$airport_country,$callsign,$departure_airport_route,$arrival_airport_route,$owner,$pilot_id,$pilot_name,$sql_altitude,$sql_date,$limit_start.",".$absolute_difference,$sort,'',$origlat,$origlon,$dist); |
|
@@ -168,7 +181,10 @@ discard block |
|
|
block discarded – undo |
|
168
|
181
|
if (isset($_GET['aircraft']) && $_GET['aircraft'] != ""){ print _("Aircraft:").' <span>'.$aircraft.'</span> '; } |
|
169
|
182
|
if (isset($_GET['manufacturer']) && $_GET['manufacturer'] != ""){ print _("Manufacturer:").' <span>'.$manufacturer.'</span> '; } |
|
170
|
183
|
if (isset($_GET['registration']) && $_GET['registration'] != ""){ print _("Registration:").' <span>'.$registration.'</span> '; } |
|
171
|
|
- if (isset($_GET['highlights'])) if ($_GET['highlights'] == "true"){ print _("Highlights:").' <span>'.$highlights.'</span> '; } |
|
|
184
|
+ if (isset($_GET['highlights'])) { |
|
|
185
|
+ if ($_GET['highlights'] == "true"){ print _("Highlights:").' <span>'.$highlights.'</span> '; |
|
|
186
|
+ } |
|
|
187
|
+ } |
|
172
|
188
|
if (isset($_GET['airline']) && $_GET['airline'] != ""){ print _("Airline:").' <span>'.$airline.'</span> '; } |
|
173
|
189
|
if (isset($_GET['airline_country']) && $_GET['airline_country'] != ""){ print _("Airline country:").' <span>'.$airline_country.'</span> '; } |
|
174
|
190
|
if (isset($_GET['airline_type']) && $_GET['airline_type'] != ""){ print _("Airline type:").' <span>'.$airline_type.'</span> '; } |
|
@@ -279,7 +295,10 @@ discard block |
|
|
block discarded – undo |
|
279
|
295
|
<div class="form-group"> |
|
280
|
296
|
<label class="control-label col-sm-2"><?php echo _("Keywords"); ?></label> |
|
281
|
297
|
<div class="col-sm-10"> |
|
282
|
|
- <input type="text" class="form-control" id="q" name="q" value="<?php if (isset($_GET['q'])) print $q; ?>" size="10" placeholder="<?php echo _("Keywords"); ?>" /> |
|
|
298
|
+ <input type="text" class="form-control" id="q" name="q" value="<?php if (isset($_GET['q'])) { |
|
|
299
|
+ print $q; |
|
|
300
|
+} |
|
|
301
|
+?>" size="10" placeholder="<?php echo _("Keywords"); ?>" /> |
|
283
|
302
|
</div> |
|
284
|
303
|
</div> |
|
285
|
304
|
</fieldset> |
|
@@ -294,7 +313,10 @@ discard block |
|
|
block discarded – undo |
|
294
|
313
|
</select> |
|
295
|
314
|
</div> |
|
296
|
315
|
</div> |
|
297
|
|
- <script type="text/javascript">getSelect('manufacturer','<?php if(isset($_GET['manufacturer'])) print $manufacturer; ?>')</script> |
|
|
316
|
+ <script type="text/javascript">getSelect('manufacturer','<?php if(isset($_GET['manufacturer'])) { |
|
|
317
|
+ print $manufacturer; |
|
|
318
|
+} |
|
|
319
|
+?>')</script> |
|
298
|
320
|
<div class="form-group"> |
|
299
|
321
|
<label class="control-label col-sm-2"><?php echo _("Type"); ?></label> |
|
300
|
322
|
<div class="col-sm-10"> |
|
@@ -303,11 +325,17 @@ discard block |
|
|
block discarded – undo |
|
303
|
325
|
</select> |
|
304
|
326
|
</div> |
|
305
|
327
|
</div> |
|
306
|
|
- <script type="text/javascript">getSelect('aircrafttypes','<?php if(isset($_GET['aircraft_icao'])) print $aircraft_icao; ?>');</script> |
|
|
328
|
+ <script type="text/javascript">getSelect('aircrafttypes','<?php if(isset($_GET['aircraft_icao'])) { |
|
|
329
|
+ print $aircraft_icao; |
|
|
330
|
+} |
|
|
331
|
+?>');</script> |
|
307
|
332
|
<div class="form-group"> |
|
308
|
333
|
<label class="control-label col-sm-2"><?php echo _("Registration"); ?></label> |
|
309
|
334
|
<div class="col-sm-10"> |
|
310
|
|
- <input type="text" class="form-control" name="registration" value="<?php if (isset($_GET['registration'])) print $registration; ?>" size="8" placeholder="<?php echo _("Registration"); ?>" /> |
|
|
335
|
+ <input type="text" class="form-control" name="registration" value="<?php if (isset($_GET['registration'])) { |
|
|
336
|
+ print $registration; |
|
|
337
|
+} |
|
|
338
|
+?>" size="8" placeholder="<?php echo _("Registration"); ?>" /> |
|
311
|
339
|
</div> |
|
312
|
340
|
</div> |
|
313
|
341
|
<?php |
|
@@ -316,22 +344,31 @@ discard block |
|
|
block discarded – undo |
|
316
|
344
|
<div class="form-group"> |
|
317
|
345
|
<label class="control-label col-sm-2"><?php echo _("Pilot id"); ?></label> |
|
318
|
346
|
<div class="col-sm-10"> |
|
319
|
|
- <input type="text" class="form-control" name="pilot_id" value="<?php if (isset($_GET['pilot_id'])) print $pilot_id; ?>" size="15" placeholder="<?php echo _("Pilot id"); ?>" /> |
|
|
347
|
+ <input type="text" class="form-control" name="pilot_id" value="<?php if (isset($_GET['pilot_id'])) { |
|
|
348
|
+ print $pilot_id; |
|
|
349
|
+} |
|
|
350
|
+?>" size="15" placeholder="<?php echo _("Pilot id"); ?>" /> |
|
320
|
351
|
</div> |
|
321
|
352
|
</div> |
|
322
|
353
|
<div class="form-group"> |
|
323
|
354
|
<label class="control-label col-sm-2"><?php echo _("Pilot name"); ?></label> |
|
324
|
355
|
<div class="col-sm-10"> |
|
325
|
|
- <input type="text" class="form-control" name="pilot_name" value="<?php if (isset($_GET['pilot_name'])) print $pilot_name; ?>" size="15" placeholder="<?php echo _("Pilot nmae"); ?>" /> |
|
|
356
|
+ <input type="text" class="form-control" name="pilot_name" value="<?php if (isset($_GET['pilot_name'])) { |
|
|
357
|
+ print $pilot_name; |
|
|
358
|
+} |
|
|
359
|
+?>" size="15" placeholder="<?php echo _("Pilot nmae"); ?>" /> |
|
326
|
360
|
</div> |
|
327
|
361
|
</div> |
|
328
|
362
|
<?php |
|
329
|
|
-}else { |
|
|
363
|
+} else { |
|
330
|
364
|
?> |
|
331
|
365
|
<div class="form-group"> |
|
332
|
366
|
<label class="control-label col-sm-2"><?php echo _("Owner name"); ?></label> |
|
333
|
367
|
<div class="col-sm-10"> |
|
334
|
|
- <input type="text" class="form-control" name="owner" value="<?php if (isset($_GET['owner'])) print $owner; ?>" size="15" placeholder="<?php echo _("Owner name"); ?>" /> |
|
|
368
|
+ <input type="text" class="form-control" name="owner" value="<?php if (isset($_GET['owner'])) { |
|
|
369
|
+ print $owner; |
|
|
370
|
+} |
|
|
371
|
+?>" size="15" placeholder="<?php echo _("Owner name"); ?>" /> |
|
335
|
372
|
</div> |
|
336
|
373
|
</div> |
|
337
|
374
|
<?php |
|
@@ -339,8 +376,14 @@ discard block |
|
|
block discarded – undo |
|
339
|
376
|
?> |
|
340
|
377
|
<div class="form-group"> |
|
341
|
378
|
<div class="col-sm-offset-2 col-sm-10"> |
|
342
|
|
- <!--<div><input type="checkbox" class="form-control" name="highlights" value="true" id="highlights" <?php if (isset($_GET['highlights'])) if ($_GET['highlights'] == "true"){ print 'checked="checked"'; } ?>> <label for="highlights"><?php echo _("Include only aircrafts with special highlights (unique liveries, destinations etc.)"); ?></label></div>--> |
|
343
|
|
- <label class="checkbox-inline"><input type="checkbox" name="highlights" value="true" id="highlights" <?php if (isset($_GET['highlights'])) if ($_GET['highlights'] == "true"){ print 'checked="checked"'; } ?>> <?php echo _("Include only aircrafts with special highlights (unique liveries, destinations etc.)"); ?></label> |
|
|
379
|
+ <!--<div><input type="checkbox" class="form-control" name="highlights" value="true" id="highlights" <?php if (isset($_GET['highlights'])) { |
|
|
380
|
+ if ($_GET['highlights'] == "true"){ print 'checked="checked"'; |
|
|
381
|
+} |
|
|
382
|
+} ?>> <label for="highlights"><?php echo _("Include only aircrafts with special highlights (unique liveries, destinations etc.)"); ?></label></div>--> |
|
|
383
|
+ <label class="checkbox-inline"><input type="checkbox" name="highlights" value="true" id="highlights" <?php if (isset($_GET['highlights'])) { |
|
|
384
|
+ if ($_GET['highlights'] == "true"){ print 'checked="checked"'; |
|
|
385
|
+} |
|
|
386
|
+} ?>> <?php echo _("Include only aircrafts with special highlights (unique liveries, destinations etc.)"); ?></label> |
|
344
|
387
|
</div> |
|
345
|
388
|
</div> |
|
346
|
389
|
</fieldset> |
|
@@ -354,7 +397,10 @@ discard block |
|
|
block discarded – undo |
|
354
|
397
|
</select> |
|
355
|
398
|
</div> |
|
356
|
399
|
</div> |
|
357
|
|
- <script type="text/javascript">getSelect('airlinenames','<?php if(isset($_GET['airline'])) print $airline; ?>');</script> |
|
|
400
|
+ <script type="text/javascript">getSelect('airlinenames','<?php if(isset($_GET['airline'])) { |
|
|
401
|
+ print $airline; |
|
|
402
|
+} |
|
|
403
|
+?>');</script> |
|
358
|
404
|
<div class="form-group"> |
|
359
|
405
|
<label class="control-label col-sm-2"><?php echo _("Country"); ?></label> |
|
360
|
406
|
<div class="col-sm-10"> |
|
@@ -363,19 +409,34 @@ discard block |
|
|
block discarded – undo |
|
363
|
409
|
</select> |
|
364
|
410
|
</div> |
|
365
|
411
|
</div> |
|
366
|
|
- <script type="text/javascript">getSelect('airlinecountries','<?php if(isset($_GET['airline_country'])) print $airline_country; ?>');</script> |
|
|
412
|
+ <script type="text/javascript">getSelect('airlinecountries','<?php if(isset($_GET['airline_country'])) { |
|
|
413
|
+ print $airline_country; |
|
|
414
|
+} |
|
|
415
|
+?>');</script> |
|
367
|
416
|
<div class="form-group"> |
|
368
|
417
|
<label class="control-label col-sm-2"><?php echo _("Callsign"); ?></label> |
|
369
|
418
|
<div class="col-sm-10"> |
|
370
|
|
- <input type="text" name="callsign" class="form-control" value="<?php if (isset($_GET['callsign'])) print $callsign; ?>" size="8" placeholder="<?php echo _("Callsign"); ?>" /> |
|
|
419
|
+ <input type="text" name="callsign" class="form-control" value="<?php if (isset($_GET['callsign'])) { |
|
|
420
|
+ print $callsign; |
|
|
421
|
+} |
|
|
422
|
+?>" size="8" placeholder="<?php echo _("Callsign"); ?>" /> |
|
371
|
423
|
</div> |
|
372
|
424
|
</div> |
|
373
|
425
|
<div class="form-group"> |
|
374
|
426
|
<div class="col-sm-offset-2 col-sm-10"> |
|
375
|
427
|
<label class="radio-inline"><input type="radio" name="airline_type" value="all" id="airline_type_all" <?php if (!isset($_GET['airline_type']) || $_GET['airline_type'] == "all"){ print 'checked="checked"'; } ?>> <?php echo _("All airlines types"); ?></label> |
|
376
|
|
- <label class="radio-inline"><input type="radio" name="airline_type" value="passenger" id="airline_type_passenger" <?php if (isset($_GET['airline_type'])) if ($_GET['airline_type'] == "passenger"){ print 'checked="checked"'; } ?>> <?php echo _("Only Passenger airlines"); ?></label> |
|
377
|
|
- <label class="radio-inline"><input type="radio" name="airline_type" value="cargo" id="airline_type_cargo" <?php if (isset($_GET['airline_type'])) if ( $_GET['airline_type'] == "cargo"){ print 'checked="checked"'; } ?>> <?php echo _("Only Cargo airlines"); ?></label> |
|
378
|
|
- <label class="radio-inline"><input type="radio" name="airline_type" value="military" id="airline_type_military" <?php if (isset($_GET['airline_type'])) if ( $_GET['airline_type'] == "military"){ print 'checked="checked"'; } ?>> <?php echo _("Only Military airlines"); ?></label> |
|
|
428
|
+ <label class="radio-inline"><input type="radio" name="airline_type" value="passenger" id="airline_type_passenger" <?php if (isset($_GET['airline_type'])) { |
|
|
429
|
+ if ($_GET['airline_type'] == "passenger"){ print 'checked="checked"'; |
|
|
430
|
+} |
|
|
431
|
+} ?>> <?php echo _("Only Passenger airlines"); ?></label> |
|
|
432
|
+ <label class="radio-inline"><input type="radio" name="airline_type" value="cargo" id="airline_type_cargo" <?php if (isset($_GET['airline_type'])) { |
|
|
433
|
+ if ( $_GET['airline_type'] == "cargo"){ print 'checked="checked"'; |
|
|
434
|
+} |
|
|
435
|
+} ?>> <?php echo _("Only Cargo airlines"); ?></label> |
|
|
436
|
+ <label class="radio-inline"><input type="radio" name="airline_type" value="military" id="airline_type_military" <?php if (isset($_GET['airline_type'])) { |
|
|
437
|
+ if ( $_GET['airline_type'] == "military"){ print 'checked="checked"'; |
|
|
438
|
+} |
|
|
439
|
+} ?>> <?php echo _("Only Military airlines"); ?></label> |
|
379
|
440
|
</div> |
|
380
|
441
|
</div> |
|
381
|
442
|
</fieldset> |
|
@@ -389,7 +450,10 @@ discard block |
|
|
block discarded – undo |
|
389
|
450
|
</select> |
|
390
|
451
|
</div> |
|
391
|
452
|
</div> |
|
392
|
|
- <script type="text/javascript">getSelect('airportnames','<?php if(isset($_GET['airport_icao'])) print $airport_icao; ?>');</script> |
|
|
453
|
+ <script type="text/javascript">getSelect('airportnames','<?php if(isset($_GET['airport_icao'])) { |
|
|
454
|
+ print $airport_icao; |
|
|
455
|
+} |
|
|
456
|
+?>');</script> |
|
393
|
457
|
<div class="form-group"> |
|
394
|
458
|
<label class="control-label col-sm-2"><?php echo _("Country"); ?></label> |
|
395
|
459
|
<div class="col-sm-10"> |
|
@@ -398,7 +462,10 @@ discard block |
|
|
block discarded – undo |
|
398
|
462
|
</select> |
|
399
|
463
|
</div> |
|
400
|
464
|
</div> |
|
401
|
|
- <script type="text/javascript">getSelect('airportcountries','<?php if(isset($_GET['airport_country'])) print $airport_country; ?>');</script> |
|
|
465
|
+ <script type="text/javascript">getSelect('airportcountries','<?php if(isset($_GET['airport_country'])) { |
|
|
466
|
+ print $airport_country; |
|
|
467
|
+} |
|
|
468
|
+?>');</script> |
|
402
|
469
|
</fieldset> |
|
403
|
470
|
<fieldset> |
|
404
|
471
|
<legend><?php echo _("Route"); ?></legend> |
|
@@ -410,7 +477,10 @@ discard block |
|
|
block discarded – undo |
|
410
|
477
|
</select> |
|
411
|
478
|
</div> |
|
412
|
479
|
</div> |
|
413
|
|
- <script type="text/javascript">getSelect('departureairportnames','<?php if(isset($_GET['departure_airport_route'])) print $departure_airport_route; ?>');</script> |
|
|
480
|
+ <script type="text/javascript">getSelect('departureairportnames','<?php if(isset($_GET['departure_airport_route'])) { |
|
|
481
|
+ print $departure_airport_route; |
|
|
482
|
+} |
|
|
483
|
+?>');</script> |
|
414
|
484
|
<div class="form-group"> |
|
415
|
485
|
<label class="control-label col-sm-2"><?php echo _("Arrival Airport"); ?></label> |
|
416
|
486
|
<div class="col-sm-10"> |
|
@@ -419,7 +489,10 @@ discard block |
|
|
block discarded – undo |
|
419
|
489
|
</select> |
|
420
|
490
|
</div> |
|
421
|
491
|
</div> |
|
422
|
|
- <script type="text/javascript">getSelect('arrivalairportnames','<?php if(isset($_GET['arrival_airport_route'])) print $arrival_airport_route; ?>');</script> |
|
|
492
|
+ <script type="text/javascript">getSelect('arrivalairportnames','<?php if(isset($_GET['arrival_airport_route'])) { |
|
|
493
|
+ print $arrival_airport_route; |
|
|
494
|
+} |
|
|
495
|
+?>');</script> |
|
423
|
496
|
</fieldset> |
|
424
|
497
|
<fieldset> |
|
425
|
498
|
<legend><?php echo _("Date"); ?></legend> |
|
@@ -427,7 +500,10 @@ discard block |
|
|
block discarded – undo |
|
427
|
500
|
<label class="control-label col-sm-2"><?php echo _("Start Date"); ?></label> |
|
428
|
501
|
<div class="col-sm-10"> |
|
429
|
502
|
<div class='input-group date' id='datetimepicker1'> |
|
430
|
|
- <input type='text' name="start_date" class="form-control" value="<?php if (isset($_GET['start_date'])) print $start_date; ?>" placeholder="<?php echo _("Start Date/Time"); ?>" /> |
|
|
503
|
+ <input type='text' name="start_date" class="form-control" value="<?php if (isset($_GET['start_date'])) { |
|
|
504
|
+ print $start_date; |
|
|
505
|
+} |
|
|
506
|
+?>" placeholder="<?php echo _("Start Date/Time"); ?>" /> |
|
431
|
507
|
<span class="input-group-addon"> |
|
432
|
508
|
<span class="glyphicon glyphicon-calendar"></span> |
|
433
|
509
|
</span> |
|
@@ -438,7 +514,10 @@ discard block |
|
|
block discarded – undo |
|
438
|
514
|
<label class="control-label col-sm-2"><?php echo _("End Date"); ?></label> |
|
439
|
515
|
<div class="col-sm-10"> |
|
440
|
516
|
<div class='input-group date' id='datetimepicker2'> |
|
441
|
|
- <input type='text' name="end_date" class="form-control" value="<?php if (isset($_GET['end_date'])) print $end_date; ?>" placeholder="<?php echo _("End Date/Time"); ?>" /> |
|
|
517
|
+ <input type='text' name="end_date" class="form-control" value="<?php if (isset($_GET['end_date'])) { |
|
|
518
|
+ print $end_date; |
|
|
519
|
+} |
|
|
520
|
+?>" placeholder="<?php echo _("End Date/Time"); ?>" /> |
|
442
|
521
|
<span class="input-group-addon"> |
|
443
|
522
|
<span class="glyphicon glyphicon-calendar"></span> |
|
444
|
523
|
</span> |
|
@@ -511,19 +590,33 @@ discard block |
|
|
block discarded – undo |
|
511
|
590
|
<div class="form-group"> |
|
512
|
591
|
<label class="control-label col-sm-2"><?php echo _("Latitude"); ?></label> |
|
513
|
592
|
<div class="col-sm-10"> |
|
514
|
|
- <input type="text" name="origlat" class="form-control" placeholder="<?php echo _("Center point latitude"); ?>" value="<?php if (isset($_GET['origlat'])) print $origlat; ?>" /> |
|
|
593
|
+ <input type="text" name="origlat" class="form-control" placeholder="<?php echo _("Center point latitude"); ?>" value="<?php if (isset($_GET['origlat'])) { |
|
|
594
|
+ print $origlat; |
|
|
595
|
+} |
|
|
596
|
+?>" /> |
|
515
|
597
|
</div> |
|
516
|
598
|
</div> |
|
517
|
599
|
<div class="form-group"> |
|
518
|
600
|
<label class="control-label col-sm-2"><?php echo _("Longitude"); ?></label> |
|
519
|
601
|
<div class="col-sm-10"> |
|
520
|
|
- <input type="text" name="origlon" class="form-control" placeholder="<?php echo _("Center point longitude"); ?>" value="<?php if (isset($_GET['origlon'])) print $origlon; ?>" /> |
|
|
602
|
+ <input type="text" name="origlon" class="form-control" placeholder="<?php echo _("Center point longitude"); ?>" value="<?php if (isset($_GET['origlon'])) { |
|
|
603
|
+ print $origlon; |
|
|
604
|
+} |
|
|
605
|
+?>" /> |
|
521
|
606
|
</div> |
|
522
|
607
|
</div> |
|
523
|
608
|
<div class="form-group"> |
|
524
|
|
- <label class="control-label col-sm-2"><?php echo _("Distance").' ('; if (isset($globalDistanceUnit)) print $globalDistanceUnit; else print 'km'; print ')'; ?></label> |
|
|
609
|
+ <label class="control-label col-sm-2"><?php echo _("Distance").' ('; if (isset($globalDistanceUnit)) { |
|
|
610
|
+ print $globalDistanceUnit; |
|
|
611
|
+} else { |
|
|
612
|
+ print 'km'; |
|
|
613
|
+} |
|
|
614
|
+print ')'; ?></label> |
|
525
|
615
|
<div class="col-sm-10"> |
|
526
|
|
- <input type="text" name="dist" class="form-control" placeholder="<?php echo _("Distance from center point"); ?>" value="<?php if (isset($_GET['distance'])) print $distance; ?>" /> |
|
|
616
|
+ <input type="text" name="dist" class="form-control" placeholder="<?php echo _("Distance from center point"); ?>" value="<?php if (isset($_GET['distance'])) { |
|
|
617
|
+ print $distance; |
|
|
618
|
+} |
|
|
619
|
+?>" /> |
|
527
|
620
|
</div> |
|
528
|
621
|
</div> |
|
529
|
622
|
</fieldset> |