Completed
Push — master ( cc50d0...0f8c33 )
by Yannick
09:46
created
js/map-tracker.2d.js.php 3 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -517,8 +517,8 @@  discard block
 block discarded – undo
517 517
 			}
518 518
                     }
519 519
 		    <?php
520
-            		} else {
521
-            	    ?>
520
+					} else {
521
+					?>
522 522
 		    if (map.getZoom() > 7) {
523 523
                 	var style = {
524 524
                     	    "color": "#1a3151",
@@ -537,7 +537,7 @@  discard block
 block discarded – undo
537 537
                 	layer_tracker_data.addLayer(layer);
538 538
 		    }
539 539
 <?php
540
-            		}
540
+					}
541 541
 ?>
542 542
 				}
543 543
 			    }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 require_once('../require/settings.php');
3 3
 require_once('../require/class.Language.php'); 
4 4
 
5
-setcookie("MapFormat",'2d');
5
+setcookie("MapFormat", '2d');
6 6
 
7 7
 // Compressed GeoJson is used if true
8 8
 if (!isset($globalJsonCompress)) $compress = true;
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 
18 18
 <?php
19 19
 	if (isset($_GET['famtrackid'])) {
20
-		$famtrackid = filter_input(INPUT_GET,'famtrackid',FILTER_SANITIZE_STRING);
20
+		$famtrackid = filter_input(INPUT_GET, 'famtrackid', FILTER_SANITIZE_STRING);
21 21
 	}
22 22
 	if (!isset($ident) && !isset($famtrackid)) {
23 23
 ?>
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
 <?php
180 180
 		} else {
181 181
 ?>
182
-		    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000);
182
+		    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000 + 20000; ?>+feature.properties.sqt*1000);
183 183
 		    return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{
184 184
 <?php
185 185
 		}
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 			    /*
196 196
 			    shadowUrl: iconURLShadowpath,
197 197
 			    shadowSize: [<?php print $globalAircraftSize; ?>, <?php print $globalAircraftSize; ?>],
198
-			    shadowAnchor: [<?php print ($globalAircraftSize/2)+1; ?>, <?php print $globalAircraftSize; ?>]
198
+			    shadowAnchor: [<?php print ($globalAircraftSize/2) + 1; ?>, <?php print $globalAircraftSize; ?>]
199 199
 			    */
200 200
 			})
201 201
 		    })
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
 <?php
229 229
 		} else {
230 230
 ?>
231
-			    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000);
231
+			    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000 + 20000; ?>+feature.properties.sqt*1000);
232 232
 			    return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{
233 233
 <?php
234 234
 		}
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
 <?php
277 277
 		} else {
278 278
 ?>
279
-			    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000);
279
+			    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000 + 20000; ?>+feature.properties.sqt*1000);
280 280
 			    return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{
281 281
 <?php
282 282
 		}
Please login to merge, or discard this patch.
Braces   +42 added lines, -10 removed lines patch added patch discarded remove patch
@@ -5,8 +5,11 @@  discard block
 block discarded – undo
5 5
 setcookie("MapFormat",'2d');
6 6
 
7 7
 // Compressed GeoJson is used if true
8
-if (!isset($globalJsonCompress)) $compress = true;
9
-else $compress = $globalJsonCompress;
8
+if (!isset($globalJsonCompress)) {
9
+	$compress = true;
10
+} else {
11
+	$compress = $globalJsonCompress;
12
+}
10 13
 ?>
11 14
 
12 15
 
@@ -143,9 +146,13 @@  discard block
 block discarded – undo
143 146
 		    if (callsign != ""){ markerTrackerLabel += callsign; }
144 147
 		    if (type != ""){ markerTrackerLabel += ' - '+type; }
145 148
 <?php
146
-	if (isset($_COOKIE['IconColor'])) $IconColor = $_COOKIE['IconColor'];
147
-	elseif (isset($globalAircraftIconColor)) $IconColor = $globalAircraftIconColor;
148
-	else $IconColor = '1a3151';
149
+	if (isset($_COOKIE['IconColor'])) {
150
+		$IconColor = $_COOKIE['IconColor'];
151
+	} elseif (isset($globalAircraftIconColor)) {
152
+		$IconColor = $globalAircraftIconColor;
153
+	} else {
154
+		$IconColor = '1a3151';
155
+	}
149 156
 	if (!isset($ident) && !isset($famtrackid)) {
150 157
 ?>
151 158
 		    info_tracker_update(feature.properties.fc);
@@ -179,7 +186,12 @@  discard block
 block discarded – undo
179 186
 <?php
180 187
 		} else {
181 188
 ?>
182
-		    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000);
189
+		    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) {
190
+	print $archiveupdatetime*1000;
191
+} else {
192
+	print $globalMapRefresh*1000+20000;
193
+}
194
+?>+feature.properties.sqt*1000);
183 195
 		    return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{
184 196
 <?php
185 197
 		}
@@ -228,7 +240,12 @@  discard block
 block discarded – undo
228 240
 <?php
229 241
 		} else {
230 242
 ?>
231
-			    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000);
243
+			    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) {
244
+	print $archiveupdatetime*1000;
245
+} else {
246
+	print $globalMapRefresh*1000+20000;
247
+}
248
+?>+feature.properties.sqt*1000);
232 249
 			    return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{
233 250
 <?php
234 251
 		}
@@ -276,7 +293,12 @@  discard block
 block discarded – undo
276 293
 <?php
277 294
 		} else {
278 295
 ?>
279
-			    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) print $archiveupdatetime*1000; else print $globalMapRefresh*1000+20000; ?>+feature.properties.sqt*1000);
296
+			    var movingtime = Math.round(<?php if (isset($archiveupdatetime)) {
297
+	print $archiveupdatetime*1000;
298
+} else {
299
+	print $globalMapRefresh*1000+20000;
300
+}
301
+?>+feature.properties.sqt*1000);
280 302
 			    return new L.Marker.movingMarker([latLng, feature.properties.nextlatlon],[movingtime],{
281 303
 <?php
282 304
 		}
@@ -559,14 +581,24 @@  discard block
 block discarded – undo
559 581
 	if (isset($archive) && $archive) {
560 582
 ?>
561 583
 //then load it again every 30 seconds
562
-//  var reload = setInterval(function(){if (noTimeout) getLiveTrackerData(0)},<?php if (isset($globalMapRefresh)) print ($globalMapRefresh*1000)/2; else print '15000'; ?>);
584
+//  var reload = setInterval(function(){if (noTimeout) getLiveTrackerData(0)},<?php if (isset($globalMapRefresh)) {
585
+	print ($globalMapRefresh*1000)/2;
586
+} else {
587
+	print '15000';
588
+}
589
+?>);
563 590
 reloadTrackerPage = setInterval(function(){if (noTimeout) getLiveTrackerData(0)},<?php print $archiveupdatetime*1000; ?>);
564 591
 <?php
565 592
 	} else {
566 593
 ?>
567 594
 //then load it again every 30 seconds
568 595
 reloadTrackerPage = setInterval(
569
-    function(){if (noTimeout) getLiveTrackerData(0)},<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000; else print '30000'; ?>);
596
+    function(){if (noTimeout) getLiveTrackerData(0)},<?php if (isset($globalMapRefresh)) {
597
+	print $globalMapRefresh*1000;
598
+} else {
599
+	print '30000';
600
+}
601
+?>);
570 602
 <?php
571 603
 	}
572 604
 ?>
Please login to merge, or discard this patch.
js/map-aircraft.3d.js.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -662,9 +662,9 @@
 block discarded – undo
662 662
 //	var timeline = new Cesium.Timeline(viewer);
663 663
 	var clockViewModel = new Cesium.ClockViewModel(viewer.clock);
664 664
 	var animationViewModel = new Cesium.AnimationViewModel(clockViewModel);
665
-	//this._div.innerHTML = '<h4><?php echo str_replace("'","\'",_("Archive Date & Time")); ?></h4>' +  '<b>' + props.archive_date + ' UTC </b>' + '<br/><i class="fa fa-fast-backward" aria-hidden="true"></i> <i class="fa fa-backward" aria-hidden="true"></i>  <a href="#" onClick="archivePause();"><i class="fa fa-pause" aria-hidden="true"></i></a> <a href="#" onClick="archivePlay();"><i class="fa fa-play" aria-hidden="true"></i></a>  <i class="fa fa-forward" aria-hidden="true"></i> <i class="fa fa-fast-forward" aria-hidden="true"></i>';
666
-	$(".archivebox").html('<h4><?php echo str_replace("'","\'",_("Archive")); ?></h4>' + '<br/><form id="noarchive" method="post"><input type="hidden" name="noarchive" /></form><a href="#" onClick="animationViewModel.playReverseViewModel.command();"><i class="fa fa-play fa-flip-horizontal" aria-hidden="true"></i></a> <a href="#" onClick="'+"document.getElementById('noarchive').submit();"+'"><i class="fa fa-eject" aria-hidden="true"></i></a> <a href="#" onClick="animationViewModel.pauseViewModel.command();"><i class="fa fa-pause" aria-hidden="true"></i></a> <a href="#" onClick="animationViewModel.playForwardViewModel.command();"><i class="fa fa-play" aria-hidden="true"></i></a>');
667
-	//		this._div.innerHTML = '<h4><?php echo str_replace("'","\'",_("Archive Date & Time")); ?></h4>' +  '<b><i class="fa fa-spinner fa-pulse fa-2x fa-fw margin-bottom"></i></b>';
665
+	//this._div.innerHTML = '<h4><?php echo str_replace("'", "\'", _("Archive Date & Time")); ?></h4>' +  '<b>' + props.archive_date + ' UTC </b>' + '<br/><i class="fa fa-fast-backward" aria-hidden="true"></i> <i class="fa fa-backward" aria-hidden="true"></i>  <a href="#" onClick="archivePause();"><i class="fa fa-pause" aria-hidden="true"></i></a> <a href="#" onClick="archivePlay();"><i class="fa fa-play" aria-hidden="true"></i></a>  <i class="fa fa-forward" aria-hidden="true"></i> <i class="fa fa-fast-forward" aria-hidden="true"></i>';
666
+	$(".archivebox").html('<h4><?php echo str_replace("'", "\'", _("Archive")); ?></h4>' + '<br/><form id="noarchive" method="post"><input type="hidden" name="noarchive" /></form><a href="#" onClick="animationViewModel.playReverseViewModel.command();"><i class="fa fa-play fa-flip-horizontal" aria-hidden="true"></i></a> <a href="#" onClick="'+"document.getElementById('noarchive').submit();"+'"><i class="fa fa-eject" aria-hidden="true"></i></a> <a href="#" onClick="animationViewModel.pauseViewModel.command();"><i class="fa fa-pause" aria-hidden="true"></i></a> <a href="#" onClick="animationViewModel.playForwardViewModel.command();"><i class="fa fa-play" aria-hidden="true"></i></a>');
667
+	//		this._div.innerHTML = '<h4><?php echo str_replace("'", "\'", _("Archive Date & Time")); ?></h4>' +  '<b><i class="fa fa-spinner fa-pulse fa-2x fa-fw margin-bottom"></i></b>';
668 668
 
669 669
 }
670 670
 
Please login to merge, or discard this patch.
Braces   +24 added lines, -4 removed lines patch added patch discarded remove patch
@@ -156,7 +156,12 @@  discard block
 block discarded – undo
156 156
 //				viewer.dataSources.get(dsn).entities.remove(entity);
157 157
 //			}
158 158
 			//console.log(entity.lastupdate);
159
-			if (parseInt(entity.lastupdate) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) print $globalMapRefresh*2000; else print '60000'; ?>)) {
159
+			if (parseInt(entity.lastupdate) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) {
160
+	print $globalMapRefresh*2000;
161
+} else {
162
+	print '60000';
163
+}
164
+?>)) {
160 165
 //				console.log('Remove an entity date');
161 166
 				viewer.dataSources.get(dsn).entities.remove(entity);
162 167
 			} else {
@@ -230,7 +235,12 @@  discard block
 block discarded – undo
230 235
 	} else {
231 236
 		for (var i = 0; i < viewer.dataSources.get(dsn).entities.values.length; i++) {
232 237
 			var entity = viewer.dataSources.get(dsn).entities.values[i];
233
-			if (parseInt(entity.lastupdatesat) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) print $globalMapRefresh*2000; else print '60000'; ?>)) {
238
+			if (parseInt(entity.lastupdatesat) < Math.floor(Date.now()-<?php if (isset($globalMapRefresh)) {
239
+	print $globalMapRefresh*2000;
240
+} else {
241
+	print '60000';
242
+}
243
+?>)) {
234 244
 				viewer.dataSources.get(dsn).entities.remove(entity);
235 245
 			}
236 246
 		}
@@ -560,7 +570,12 @@  discard block
 block discarded – undo
560 570
 		if (!((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) && (isset($_COOKIE['polar']) && $_COOKIE['polar'] == 'true')) {
561 571
 ?>
562 572
 update_polarLayer();
563
-setInterval(function(){update_polarLayer()},<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000*2; else print '60000'; ?>);
573
+setInterval(function(){update_polarLayer()},<?php if (isset($globalMapRefresh)) {
574
+	print $globalMapRefresh*1000*2;
575
+} else {
576
+	print '60000';
577
+}
578
+?>);
564 579
 <?php
565 580
 		}
566 581
 ?>
@@ -656,7 +671,12 @@  discard block
 block discarded – undo
656 671
 				}
657 672
 			}
658 673
 		}
659
-	,<?php if (isset($globalMapRefresh)) print $globalMapRefresh*1000; else print '30000'; ?>);
674
+	,<?php if (isset($globalMapRefresh)) {
675
+	print $globalMapRefresh*1000;
676
+} else {
677
+	print '30000';
678
+}
679
+?>);
660 680
 } else {
661 681
 	//var widget = new Cesium.CesiumWidget('archivebox');
662 682
 //	var timeline = new Cesium.Timeline(viewer);
Please login to merge, or discard this patch.
js/map.2d.js.php 3 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -352,10 +352,10 @@  discard block
 block discarded – undo
352 352
 	});
353 353
 update_locationsLayer();
354 354
 <?php
355
-    // Add support for custom json via $globalMapJson
356
-    if (isset($globalMapJson) && is_array($globalMapJson)) {
355
+	// Add support for custom json via $globalMapJson
356
+	if (isset($globalMapJson) && is_array($globalMapJson)) {
357 357
 	foreach ($globalMapJson as $json) {
358
-	    if (isset($json['url'])) {
358
+		if (isset($json['url'])) {
359 359
 ?>
360 360
 update_genLayer('<?php print $json['url']; ?>');
361 361
 <?php
@@ -364,9 +364,9 @@  discard block
 block discarded – undo
364 364
 setInterval(function(){update_genLayer('<?php print $json['url']; ?>')}, <?php print $json['refresh']; ?>);
365 365
 <?php
366 366
 		}
367
-	    }
367
+		}
368
+	}
368 369
 	}
369
-    }
370 370
 
371 371
 ?>
372 372
 //adds the bootstrap tooltip to the map icons
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@  discard block
 block discarded – undo
2 2
 require_once('../require/settings.php');
3 3
 require_once('../require/class.Language.php'); 
4 4
 
5
-setcookie("MapFormat",'2d');
5
+setcookie("MapFormat", '2d');
6 6
 
7 7
 // Compressed GeoJson is used if true
8 8
 if (!isset($globalJsonCompress)) $compress = true;
@@ -19,10 +19,10 @@  discard block
 block discarded – undo
19 19
 	$lastupd = $_GET['archivespeed']*$archiveupdatetime;
20 20
 	if (isset($_GET['enddate']) && $_GET['enddate'] != '') $enddate = $_GET['enddate'];
21 21
 	else $enddate = time();
22
-	setcookie("archive_begin",$begindate);
23
-	setcookie("archive_end",$enddate);
24
-	setcookie("archive_update",$lastupd);
25
-	setcookie("archive_speed",$archivespeed);
22
+	setcookie("archive_begin", $begindate);
23
+	setcookie("archive_end", $enddate);
24
+	setcookie("archive_update", $lastupd);
25
+	setcookie("archive_speed", $archivespeed);
26 26
 ?>
27 27
 document.cookie =  'archive_begin=<?php print $begindate; ?>; expires=Thu, 2 Aug 2100 20:47:11 UTC; path=/';
28 28
 document.cookie =  'archive_end=<?php print $enddate; ?>; expires=Thu, 2 Aug 2100 20:47:11 UTC; path=/';
@@ -73,16 +73,16 @@  discard block
 block discarded – undo
73 73
 <?php
74 74
 	}
75 75
 	if (isset($_GET['ident'])) {
76
-		$ident = filter_input(INPUT_GET,'ident',FILTER_SANITIZE_STRING);
76
+		$ident = filter_input(INPUT_GET, 'ident', FILTER_SANITIZE_STRING);
77 77
 	}
78 78
 	if (isset($_GET['flightaware_id'])) {
79
-		$flightaware_id = filter_input(INPUT_GET,'flightaware_id',FILTER_SANITIZE_STRING);
79
+		$flightaware_id = filter_input(INPUT_GET, 'flightaware_id', FILTER_SANITIZE_STRING);
80 80
 	}
81 81
 	if (isset($_GET['latitude'])) {
82
-		$latitude = filter_input(INPUT_GET,'latitude',FILTER_SANITIZE_STRING);
82
+		$latitude = filter_input(INPUT_GET, 'latitude', FILTER_SANITIZE_STRING);
83 83
 	}
84 84
 	if (isset($_GET['longitude'])) {
85
-		$longitude = filter_input(INPUT_GET,'longitude',FILTER_SANITIZE_STRING);
85
+		$longitude = filter_input(INPUT_GET, 'longitude', FILTER_SANITIZE_STRING);
86 86
 	}
87 87
 ?>
88 88
 
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 	     || navigator.userAgent.match(/BlackBerry/i)
119 119
 	     || navigator.userAgent.match(/Windows Phone/i))
120 120
 	{
121
-		var zoom = <?php if (isset($globalLiveZoom)) print $globalLiveZoom-1; else print '8'; ?>;
121
+		var zoom = <?php if (isset($globalLiveZoom)) print $globalLiveZoom - 1; else print '8'; ?>;
122 122
 	} else {
123 123
 		var zoom = <?php if (isset($globalLiveZoom)) print $globalLiveZoom; else print '9'; ?>;
124 124
 	}
@@ -212,19 +212,19 @@  discard block
 block discarded – undo
212 212
 	map.addLayer(yandexLayer);
213 213
 <?php
214 214
 	} elseif ($MapType == 'Bing-Aerial') {
215
-		if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType','OpenStreetMap');
215
+		if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType', 'OpenStreetMap');
216 216
 ?>
217 217
 	var bingLayer = new L.tileLayer.bing({bingMapsKey: '<?php print $globalBingMapKey; ?>',imagerySet: 'Aerial'});
218 218
 	map.addLayer(bingLayer);
219 219
 <?php
220 220
 	} elseif ($MapType == 'Bing-Hybrid') {
221
-		if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType','OpenStreetMap');
221
+		if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType', 'OpenStreetMap');
222 222
 ?>
223 223
 	var bingLayer = new L.tileLayer.bing({bingMapsKey: '<?php print $globalBingMapKey; ?>',imagerySet: 'AerialWithLabels'});
224 224
 	map.addLayer(bingLayer);
225 225
 <?php
226 226
 	} elseif ($MapType == 'Bing-Road') {
227
-		if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType','OpenStreetMap');
227
+		if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType', 'OpenStreetMap');
228 228
 ?>
229 229
 	var bingLayer = new L.tileLayer.bing({bingMapsKey: '<?php print $globalBingMapKey; ?>',imagerySet: 'Road'});
230 230
 	map.addLayer(bingLayer);
Please login to merge, or discard this patch.
Braces   +74 added lines, -21 removed lines patch added patch discarded remove patch
@@ -5,8 +5,11 @@  discard block
 block discarded – undo
5 5
 setcookie("MapFormat",'2d');
6 6
 
7 7
 // Compressed GeoJson is used if true
8
-if (!isset($globalJsonCompress)) $compress = true;
9
-else $compress = $globalJsonCompress;
8
+if (!isset($globalJsonCompress)) {
9
+	$compress = true;
10
+} else {
11
+	$compress = $globalJsonCompress;
12
+}
10 13
 if (isset($_GET['archive'])) {
11 14
 	$archive = true;
12 15
 	//$archiveupdatetime = 50;
@@ -17,8 +20,11 @@  discard block
 block discarded – undo
17 20
 	//$lastupd = round(($_GET['enddate']-$_GET['begindate'])/(($_GET['during']*60)/10));
18 21
 	//$lastupd = 20;
19 22
 	$lastupd = $_GET['archivespeed']*$archiveupdatetime;
20
-	if (isset($_GET['enddate']) && $_GET['enddate'] != '') $enddate = $_GET['enddate'];
21
-	else $enddate = time();
23
+	if (isset($_GET['enddate']) && $_GET['enddate'] != '') {
24
+		$enddate = $_GET['enddate'];
25
+	} else {
26
+		$enddate = time();
27
+	}
22 28
 	setcookie("archive_begin",$begindate);
23 29
 	setcookie("archive_end",$enddate);
24 30
 	setcookie("archive_update",$lastupd);
@@ -105,7 +111,17 @@  discard block
 block discarded – undo
105 111
 	}
106 112
 
107 113
 	//create the map
108
-	map = L.map('archive-map', { zoomControl:false }).setView([<?php if (isset($latitude)) print $latitude; else print $globalCenterLatitude; ?>,<?php if (isset($longitude)) print $longitude; else print $globalCenterLongitude; ?>], zoom);
114
+	map = L.map('archive-map', { zoomControl:false }).setView([<?php if (isset($latitude)) {
115
+	print $latitude;
116
+} else {
117
+	print $globalCenterLatitude;
118
+}
119
+?>,<?php if (isset($longitude)) {
120
+	print $longitude;
121
+} else {
122
+	print $globalCenterLongitude;
123
+}
124
+?>], zoom);
109 125
 <?php
110 126
 	} else {
111 127
 ?>
@@ -118,9 +134,19 @@  discard block
 block discarded – undo
118 134
 	     || navigator.userAgent.match(/BlackBerry/i)
119 135
 	     || navigator.userAgent.match(/Windows Phone/i))
120 136
 	{
121
-		var zoom = <?php if (isset($globalLiveZoom)) print $globalLiveZoom-1; else print '8'; ?>;
137
+		var zoom = <?php if (isset($globalLiveZoom)) {
138
+	print $globalLiveZoom-1;
139
+} else {
140
+	print '8';
141
+}
142
+?>;
122 143
 	} else {
123
-		var zoom = <?php if (isset($globalLiveZoom)) print $globalLiveZoom; else print '9'; ?>;
144
+		var zoom = <?php if (isset($globalLiveZoom)) {
145
+	print $globalLiveZoom;
146
+} else {
147
+	print '9';
148
+}
149
+?>;
124 150
 	}
125 151
 
126 152
 	//create the map
@@ -145,16 +171,27 @@  discard block
 block discarded – undo
145 171
 	bounds = L.latLngBounds(southWest,northEast);
146 172
 	//a few title layers
147 173
 <?php
148
-	if (isset($_COOKIE['MapType'])) $MapType = $_COOKIE['MapType'];
149
-	else $MapType = $globalMapProvider;
174
+	if (isset($_COOKIE['MapType'])) {
175
+		$MapType = $_COOKIE['MapType'];
176
+	} else {
177
+		$MapType = $globalMapProvider;
178
+	}
150 179
 
151 180
 	if ($MapType == 'Mapbox') {
152
-		if ($_COOKIE['MapTypeId'] == 'default') $MapBoxId = $globalMapboxId;
153
-		else $MapBoxId = $_COOKIE['MapTypeId'];
154
-?>
181
+		if ($_COOKIE['MapTypeId'] == 'default') {
182
+			$MapBoxId = $globalMapboxId;
183
+		} else {
184
+			$MapBoxId = $_COOKIE['MapTypeId'];
185
+		}
186
+		?>
155 187
 	L.tileLayer('https://{s}.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={token}', {
156 188
 	    maxZoom: 18,
157
-	    noWrap: <?php if (isset($globalMapWrap) && !$globalMapWrap) print 'false'; else print 'true'; ?>,
189
+	    noWrap: <?php if (isset($globalMapWrap) && !$globalMapWrap) {
190
+	print 'false';
191
+} else {
192
+	print 'true';
193
+}
194
+?>,
158 195
 	    attribution: 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
159 196
 	      '<a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>, ' +
160 197
 	      'Imagery © <a href="http://mapbox.com">Mapbox</a>',
@@ -166,7 +203,12 @@  discard block
 block discarded – undo
166 203
 ?>
167 204
 	L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
168 205
 	    maxZoom: 18,
169
-	    noWrap: <?php if (isset($globalMapWrap) && !$globalMapWrap) print 'false'; else print 'true'; ?>,
206
+	    noWrap: <?php if (isset($globalMapWrap) && !$globalMapWrap) {
207
+	print 'false';
208
+} else {
209
+	print 'true';
210
+}
211
+?>,
170 212
 	    attribution: 'Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, ' +
171 213
 	      '<a href="www.openstreetmap.org/copyright">Open Database Licence</a>'
172 214
 	}).addTo(map);
@@ -212,20 +254,26 @@  discard block
 block discarded – undo
212 254
 	map.addLayer(yandexLayer);
213 255
 <?php
214 256
 	} elseif ($MapType == 'Bing-Aerial') {
215
-		if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType','OpenStreetMap');
216
-?>
257
+		if (!isset($globalBingMapKey) || $globalBingMapKey == '') {
258
+			setcookie('MapType','OpenStreetMap');
259
+		}
260
+		?>
217 261
 	var bingLayer = new L.tileLayer.bing({bingMapsKey: '<?php print $globalBingMapKey; ?>',imagerySet: 'Aerial'});
218 262
 	map.addLayer(bingLayer);
219 263
 <?php
220 264
 	} elseif ($MapType == 'Bing-Hybrid') {
221
-		if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType','OpenStreetMap');
222
-?>
265
+		if (!isset($globalBingMapKey) || $globalBingMapKey == '') {
266
+			setcookie('MapType','OpenStreetMap');
267
+		}
268
+		?>
223 269
 	var bingLayer = new L.tileLayer.bing({bingMapsKey: '<?php print $globalBingMapKey; ?>',imagerySet: 'AerialWithLabels'});
224 270
 	map.addLayer(bingLayer);
225 271
 <?php
226 272
 	} elseif ($MapType == 'Bing-Road') {
227
-		if (!isset($globalBingMapKey) || $globalBingMapKey == '') setcookie('MapType','OpenStreetMap');
228
-?>
273
+		if (!isset($globalBingMapKey) || $globalBingMapKey == '') {
274
+			setcookie('MapType','OpenStreetMap');
275
+		}
276
+		?>
229 277
 	var bingLayer = new L.tileLayer.bing({bingMapsKey: '<?php print $globalBingMapKey; ?>',imagerySet: 'Road'});
230 278
 	map.addLayer(bingLayer);
231 279
 <?php
@@ -273,7 +321,12 @@  discard block
 block discarded – undo
273 321
 		}
274 322
 	} elseif ($globalBounding == 'circle') {
275 323
 ?>
276
-	var circle = L.circle([<?php print $globalCenterLatitude; ?>, <?php print $globalCenterLongitude; ?>],<?php if (isset($globalBoundingCircleSize)) print $globalBoundingCircleSize; else print '70000'; ?>,{
324
+	var circle = L.circle([<?php print $globalCenterLatitude; ?>, <?php print $globalCenterLongitude; ?>],<?php if (isset($globalBoundingCircleSize)) {
325
+	print $globalBoundingCircleSize;
326
+} else {
327
+	print '70000';
328
+}
329
+?>,{
277 330
 	    color: '#92C7D1',
278 331
 	    fillColor: '#92C7D1',
279 332
 	    fillOpacity: 0.3,
Please login to merge, or discard this patch.
live-czml.php 3 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -34,30 +34,30 @@  discard block
 block discarded – undo
34 34
 
35 35
 
36 36
 function quaternionrotate($heading, $attitude = 0, $bank = 0) {
37
-    // Assuming the angles are in radians.
38
-    $c1 = cos($heading/2);
39
-    $s1 = sin($heading/2);
40
-    $c2 = cos($attitude/2);
41
-    $s2 = sin($attitude/2);
42
-    $c3 = cos($bank/2);
43
-    $s3 = sin($bank/2);
44
-    $c1c2 = $c1*$c2;
45
-    $s1s2 = $s1*$s2;
46
-    $w =$c1c2*$c3 - $s1s2*$s3;
47
-    $x =$c1c2*$s3 + $s1s2*$c3;
48
-    $y =$s1*$c2*$c3 + $c1*$s2*$s3;
49
-    $z =$c1*$s2*$c3 - $s1*$c2*$s3;
50
-    return array('x' => $x,'y' => $y,'z' => $z,'w' => $w);
37
+	// Assuming the angles are in radians.
38
+	$c1 = cos($heading/2);
39
+	$s1 = sin($heading/2);
40
+	$c2 = cos($attitude/2);
41
+	$s2 = sin($attitude/2);
42
+	$c3 = cos($bank/2);
43
+	$s3 = sin($bank/2);
44
+	$c1c2 = $c1*$c2;
45
+	$s1s2 = $s1*$s2;
46
+	$w =$c1c2*$c3 - $s1s2*$s3;
47
+	$x =$c1c2*$s3 + $s1s2*$c3;
48
+	$y =$s1*$c2*$c3 + $c1*$s2*$s3;
49
+	$z =$c1*$s2*$c3 - $s1*$c2*$s3;
50
+	return array('x' => $x,'y' => $y,'z' => $z,'w' => $w);
51 51
 //    return array('x' => '0.0','y' => '-0.931','z' => '0.0','w' => '0.365');
52 52
 
53 53
 }
54 54
 
55 55
 
56 56
 if (isset($_GET['download'])) {
57
-    if ($_GET['download'] == "true")
58
-    {
57
+	if ($_GET['download'] == "true")
58
+	{
59 59
 	header('Content-disposition: attachment; filename="flightairmap.json"');
60
-    }
60
+	}
61 61
 }
62 62
 header('Content-Type: text/javascript');
63 63
 
@@ -220,10 +220,10 @@  discard block
 block discarded – undo
220 220
 			$image = "images/placeholder_thumb.png";
221 221
 		}
222 222
 
223
-                if (isset($spotter_item['flightaware_id'])) $id = $spotter_item['flightaware_id'];
224
-                elseif (isset($spotter_item['famtrackid'])) $id = $spotter_item['famtrackid'];
225
-                elseif (isset($spotter_item['fammarine_id'])) $id = $spotter_item['fammarine_id'];
226
-                if ($prev_flightaware_id != $id) {
223
+				if (isset($spotter_item['flightaware_id'])) $id = $spotter_item['flightaware_id'];
224
+				elseif (isset($spotter_item['famtrackid'])) $id = $spotter_item['famtrackid'];
225
+				elseif (isset($spotter_item['fammarine_id'])) $id = $spotter_item['fammarine_id'];
226
+				if ($prev_flightaware_id != $id) {
227 227
 			if ($prev_flightaware_id != '') {
228 228
 				$output .= ']';
229 229
 				$output .= '}';
Please login to merge, or discard this patch.
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -43,11 +43,11 @@  discard block
 block discarded – undo
43 43
     $s3 = sin($bank/2);
44 44
     $c1c2 = $c1*$c2;
45 45
     $s1s2 = $s1*$s2;
46
-    $w =$c1c2*$c3 - $s1s2*$s3;
47
-    $x =$c1c2*$s3 + $s1s2*$c3;
48
-    $y =$s1*$c2*$c3 + $c1*$s2*$s3;
49
-    $z =$c1*$s2*$c3 - $s1*$c2*$s3;
50
-    return array('x' => $x,'y' => $y,'z' => $z,'w' => $w);
46
+    $w = $c1c2*$c3 - $s1s2*$s3;
47
+    $x = $c1c2*$s3 + $s1s2*$c3;
48
+    $y = $s1*$c2*$c3 + $c1*$s2*$s3;
49
+    $z = $c1*$s2*$c3 - $s1*$c2*$s3;
50
+    return array('x' => $x, 'y' => $y, 'z' => $z, 'w' => $w);
51 51
 //    return array('x' => '0.0','y' => '-0.931','z' => '0.0','w' => '0.365');
52 52
 
53 53
 }
@@ -68,16 +68,16 @@  discard block
 block discarded – undo
68 68
 $min = false;
69 69
 $allhistory = false;
70 70
 $filter['source'] = array();
71
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['filter_ShowVATSIM']) && $_COOKIE['filter_ShowVATSIM'] == 'true') $filter['source'] = array_merge($filter['source'],array('vatsimtxt'));
72
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['filter_ShowIVAO']) && $_COOKIE['filter_ShowIVAO'] == 'true') $filter['source'] = array_merge($filter['source'],array('whazzup'));
73
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['filter_ShowVMS']) && $_COOKIE['filter_ShowVMS'] == 'true') $filter['source'] = array_merge($filter['source'],array('phpvmacars'));
74
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['filter_ShowSBS1']) && $_COOKIE['filter_ShowSBS1'] == 'true') $filter['source'] = array_merge($filter['source'],array('sbs'));
75
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['filter_ShowAPRS']) && $_COOKIE['filter_ShowAPRS'] == 'true') $filter['source'] = array_merge($filter['source'],array('aprs'));
76
-if (isset($_COOKIE['filter_ident']) && $_COOKIE['filter_ident'] != '') $filter['ident'] = filter_var($_COOKIE['filter_ident'],FILTER_SANITIZE_STRING);
77
-if (isset($_COOKIE['filter_Airlines']) && $_COOKIE['filter_Airlines'] != '') $filter['airlines'] = filter_var_array(explode(',',$_COOKIE['filter_Airlines']),FILTER_SANITIZE_STRING);
78
-if (isset($_COOKIE['filter_Sources']) && $_COOKIE['filter_Sources'] != '') $filter['source_aprs'] = filter_var_array(explode(',',$_COOKIE['filter_Sources']),FILTER_SANITIZE_STRING);
79
-if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] != 'all') $filter['airlinestype'] = filter_var($_COOKIE['filter_airlinestype'],FILTER_SANITIZE_STRING);
80
-if (isset($_COOKIE['filter_alliance']) && $_COOKIE['filter_alliance'] != 'all') $filter['alliance'] = filter_var($_COOKIE['filter_alliance'],FILTER_SANITIZE_STRING);
71
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['filter_ShowVATSIM']) && $_COOKIE['filter_ShowVATSIM'] == 'true') $filter['source'] = array_merge($filter['source'], array('vatsimtxt'));
72
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['filter_ShowIVAO']) && $_COOKIE['filter_ShowIVAO'] == 'true') $filter['source'] = array_merge($filter['source'], array('whazzup'));
73
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['filter_ShowVMS']) && $_COOKIE['filter_ShowVMS'] == 'true') $filter['source'] = array_merge($filter['source'], array('phpvmacars'));
74
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['filter_ShowSBS1']) && $_COOKIE['filter_ShowSBS1'] == 'true') $filter['source'] = array_merge($filter['source'], array('sbs'));
75
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['filter_ShowAPRS']) && $_COOKIE['filter_ShowAPRS'] == 'true') $filter['source'] = array_merge($filter['source'], array('aprs'));
76
+if (isset($_COOKIE['filter_ident']) && $_COOKIE['filter_ident'] != '') $filter['ident'] = filter_var($_COOKIE['filter_ident'], FILTER_SANITIZE_STRING);
77
+if (isset($_COOKIE['filter_Airlines']) && $_COOKIE['filter_Airlines'] != '') $filter['airlines'] = filter_var_array(explode(',', $_COOKIE['filter_Airlines']), FILTER_SANITIZE_STRING);
78
+if (isset($_COOKIE['filter_Sources']) && $_COOKIE['filter_Sources'] != '') $filter['source_aprs'] = filter_var_array(explode(',', $_COOKIE['filter_Sources']), FILTER_SANITIZE_STRING);
79
+if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] != 'all') $filter['airlinestype'] = filter_var($_COOKIE['filter_airlinestype'], FILTER_SANITIZE_STRING);
80
+if (isset($_COOKIE['filter_alliance']) && $_COOKIE['filter_alliance'] != 'all') $filter['alliance'] = filter_var($_COOKIE['filter_alliance'], FILTER_SANITIZE_STRING);
81 81
 /*
82 82
 if (isset($globalMapPopup) && !$globalMapPopup && !(isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true')) {
83 83
 	$min = true;
@@ -124,12 +124,12 @@  discard block
 block discarded – undo
124 124
 	$from_archive = true;
125 125
 //	$begindate = filter_input(INPUT_GET,'begindate',FILTER_VALIDATE_REGEXP,array("options"=>array("regexp"=>'~^\d{4}/\d{2}/\d{2}$~')));
126 126
 //	$enddate = filter_input(INPUT_GET,'enddate',FILTER_VALIDATE_REGEXP,array("options"=>array("regexp"=>'~^\d{4}/\d{2}/\d{2}$~')));
127
-	$begindate = filter_input(INPUT_GET,'begindate',FILTER_SANITIZE_NUMBER_INT);
128
-	$enddate = filter_input(INPUT_GET,'enddate',FILTER_SANITIZE_NUMBER_INT);
129
-	$archivespeed = filter_input(INPUT_GET,'speed',FILTER_SANITIZE_NUMBER_INT);
130
-	$begindate = date('Y-m-d H:i:s',$begindate);
131
-	$enddate = date('Y-m-d H:i:s',$enddate);
132
-	$spotter_array = $SpotterArchive->getMinLiveSpotterDataPlayback($begindate,$enddate,$filter);
127
+	$begindate = filter_input(INPUT_GET, 'begindate', FILTER_SANITIZE_NUMBER_INT);
128
+	$enddate = filter_input(INPUT_GET, 'enddate', FILTER_SANITIZE_NUMBER_INT);
129
+	$archivespeed = filter_input(INPUT_GET, 'speed', FILTER_SANITIZE_NUMBER_INT);
130
+	$begindate = date('Y-m-d H:i:s', $begindate);
131
+	$enddate = date('Y-m-d H:i:s', $enddate);
132
+	$spotter_array = $SpotterArchive->getMinLiveSpotterDataPlayback($begindate, $enddate, $filter);
133 133
 } elseif (isset($_COOKIE['archive']) && isset($_COOKIE['archive_begin']) && isset($_COOKIE['archive_end']) && isset($_COOKIE['archive_speed'])) {
134 134
 	$from_archive = true;
135 135
 //	$begindate = filter_input(INPUT_GET,'begindate',FILTER_VALIDATE_REGEXP,array("options"=>array("regexp"=>'~^\d{4}/\d{2}/\d{2}$~')));
@@ -139,11 +139,11 @@  discard block
 block discarded – undo
139 139
 	$begindate = $_COOKIE['archive_begin'];
140 140
 	$enddate = $_COOKIE['archive_end'];
141 141
 
142
-	$archivespeed = filter_var($_COOKIE['archive_speed'],FILTER_SANITIZE_NUMBER_INT);
143
-	$begindate = date('Y-m-d H:i:s',$begindate);
144
-	$enddate = date('Y-m-d H:i:s',$enddate);
142
+	$archivespeed = filter_var($_COOKIE['archive_speed'], FILTER_SANITIZE_NUMBER_INT);
143
+	$begindate = date('Y-m-d H:i:s', $begindate);
144
+	$enddate = date('Y-m-d H:i:s', $enddate);
145 145
 //	echo 'Begin : '.$begindate.' - End : '.$enddate."\n";
146
-	$spotter_array = $SpotterArchive->getMinLiveSpotterData($begindate,$enddate,$filter);
146
+	$spotter_array = $SpotterArchive->getMinLiveSpotterData($begindate, $enddate, $filter);
147 147
 } elseif ($tracker) {
148 148
 	$spotter_array = $TrackerLive->getMinLastLiveTrackerData($filter);
149 149
 } elseif ($marine) {
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 
155 155
 if (!empty($spotter_array)) {
156 156
 	if (isset($_GET['archive'])) {
157
-		$flightcnt = $SpotterArchive->getLiveSpotterCount($begindate,$enddate,$filter);
157
+		$flightcnt = $SpotterArchive->getLiveSpotterCount($begindate, $enddate, $filter);
158 158
 	} elseif ($tracker) {
159 159
 		$flightcnt = $TrackerLive->getLiveTrackerCount($filter);
160 160
 	} elseif ($marine) {
@@ -165,16 +165,16 @@  discard block
 block discarded – undo
165 165
 	if ($flightcnt == '') $flightcnt = 0;
166 166
 } else $flightcnt = 0;
167 167
 
168
-$sqltime = round(microtime(true)-$begintime,2);
168
+$sqltime = round(microtime(true) - $begintime, 2);
169 169
 $minitime = time();
170 170
 $maxitime = 0;
171 171
 
172 172
 
173 173
 $modelsdb = array();
174 174
 if (file_exists('models/modelsdb')) {
175
-	if (($handle = fopen('models/modelsdb','r')) !== FALSE) {
176
-		while (($row = fgetcsv($handle,1000)) !== FALSE) {
177
-			if (isset($row[1]) ){
175
+	if (($handle = fopen('models/modelsdb', 'r')) !== FALSE) {
176
+		while (($row = fgetcsv($handle, 1000)) !== FALSE) {
177
+			if (isset($row[1])) {
178 178
 				$model = $row[0];
179 179
 				$modelsdb[$model] = $row[1];
180 180
 			}
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
 $output .= '},';
210 210
 if (!empty($spotter_array) && is_array($spotter_array))
211 211
 {
212
-	foreach($spotter_array as $spotter_item)
212
+	foreach ($spotter_array as $spotter_item)
213 213
 	{
214 214
 		$j++;
215 215
 		date_default_timezone_set('UTC');
@@ -448,7 +448,7 @@  discard block
 block discarded – undo
448 448
 			$output .= '"cartographicDegrees": [';
449 449
 			if ($minitime > strtotime($spotter_item['date'])) $minitime = strtotime($spotter_item['date']);
450 450
 			if ($maxitime < strtotime($spotter_item['date'])) $maxitime = strtotime($spotter_item['date']);
451
-			$output .= '"'.date("c",strtotime($spotter_item['date'])).'", ';
451
+			$output .= '"'.date("c", strtotime($spotter_item['date'])).'", ';
452 452
 			$output .= $spotter_item['longitude'].', ';
453 453
 			$output .= $spotter_item['latitude'];
454 454
 			$prevlong = $spotter_item['longitude'];
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
 			//$quat = quaternionrotate(deg2rad($spotter_item['heading']),deg2rad(0),deg2rad(0));
463 463
 			//$orientation .= '"'.date("c",strtotime($spotter_item['date'])).'",'.$quat['x'].','.$quat['y'].','.$quat['z'].','.$quat['w'];
464 464
 		} else {
465
-			$output .= ',"'.date("c",strtotime($spotter_item['date'])).'", ';
465
+			$output .= ',"'.date("c", strtotime($spotter_item['date'])).'", ';
466 466
 			if ($maxitime < strtotime($spotter_item['date'])) $maxitime = strtotime($spotter_item['date']);
467 467
 			if ($spotter_item['ground_speed'] == 0) {
468 468
 				$output .= $prevlong.', ';
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
 	$output  = substr($output, 0, -1);
495 495
 }
496 496
 $output .= ']';
497
-$output = str_replace('%minitime%',date("c",$minitime),$output);
498
-$output = str_replace('%maxitime%',date("c",$maxitime),$output);
497
+$output = str_replace('%minitime%', date("c", $minitime), $output);
498
+$output = str_replace('%maxitime%', date("c", $maxitime), $output);
499 499
 print $output;
500 500
 ?>
Please login to merge, or discard this patch.
Braces   +89 added lines, -31 removed lines patch added patch discarded remove patch
@@ -3,8 +3,12 @@  discard block
 block discarded – undo
3 3
 require_once('require/class.Common.php');
4 4
 $tracker = false;
5 5
 $marine = false;
6
-if (isset($_GET['tracker'])) $tracker = true;
7
-if (isset($_GET['marine'])) $marine = true;
6
+if (isset($_GET['tracker'])) {
7
+	$tracker = true;
8
+}
9
+if (isset($_GET['marine'])) {
10
+	$marine = true;
11
+}
8 12
 if ($tracker) {
9 13
 	require_once('require/class.Tracker.php');
10 14
 	require_once('require/class.TrackerLive.php');
@@ -61,23 +65,46 @@  discard block
 block discarded – undo
61 65
 }
62 66
 header('Content-Type: text/javascript');
63 67
 
64
-if (!isset($globalJsonCompress)) $compress = true;
65
-else $compress = $globalJsonCompress;
68
+if (!isset($globalJsonCompress)) {
69
+	$compress = true;
70
+} else {
71
+	$compress = $globalJsonCompress;
72
+}
66 73
 
67 74
 $from_archive = false;
68 75
 $min = false;
69 76
 $allhistory = false;
70 77
 $filter['source'] = array();
71
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['filter_ShowVATSIM']) && $_COOKIE['filter_ShowVATSIM'] == 'true') $filter['source'] = array_merge($filter['source'],array('vatsimtxt'));
72
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['filter_ShowIVAO']) && $_COOKIE['filter_ShowIVAO'] == 'true') $filter['source'] = array_merge($filter['source'],array('whazzup'));
73
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['filter_ShowVMS']) && $_COOKIE['filter_ShowVMS'] == 'true') $filter['source'] = array_merge($filter['source'],array('phpvmacars'));
74
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['filter_ShowSBS1']) && $_COOKIE['filter_ShowSBS1'] == 'true') $filter['source'] = array_merge($filter['source'],array('sbs'));
75
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['filter_ShowAPRS']) && $_COOKIE['filter_ShowAPRS'] == 'true') $filter['source'] = array_merge($filter['source'],array('aprs'));
76
-if (isset($_COOKIE['filter_ident']) && $_COOKIE['filter_ident'] != '') $filter['ident'] = filter_var($_COOKIE['filter_ident'],FILTER_SANITIZE_STRING);
77
-if (isset($_COOKIE['filter_Airlines']) && $_COOKIE['filter_Airlines'] != '') $filter['airlines'] = filter_var_array(explode(',',$_COOKIE['filter_Airlines']),FILTER_SANITIZE_STRING);
78
-if (isset($_COOKIE['filter_Sources']) && $_COOKIE['filter_Sources'] != '') $filter['source_aprs'] = filter_var_array(explode(',',$_COOKIE['filter_Sources']),FILTER_SANITIZE_STRING);
79
-if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] != 'all') $filter['airlinestype'] = filter_var($_COOKIE['filter_airlinestype'],FILTER_SANITIZE_STRING);
80
-if (isset($_COOKIE['filter_alliance']) && $_COOKIE['filter_alliance'] != 'all') $filter['alliance'] = filter_var($_COOKIE['filter_alliance'],FILTER_SANITIZE_STRING);
78
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['filter_ShowVATSIM']) && $_COOKIE['filter_ShowVATSIM'] == 'true') {
79
+	$filter['source'] = array_merge($filter['source'],array('vatsimtxt'));
80
+}
81
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['filter_ShowIVAO']) && $_COOKIE['filter_ShowIVAO'] == 'true') {
82
+	$filter['source'] = array_merge($filter['source'],array('whazzup'));
83
+}
84
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['filter_ShowVMS']) && $_COOKIE['filter_ShowVMS'] == 'true') {
85
+	$filter['source'] = array_merge($filter['source'],array('phpvmacars'));
86
+}
87
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['filter_ShowSBS1']) && $_COOKIE['filter_ShowSBS1'] == 'true') {
88
+	$filter['source'] = array_merge($filter['source'],array('sbs'));
89
+}
90
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['filter_ShowAPRS']) && $_COOKIE['filter_ShowAPRS'] == 'true') {
91
+	$filter['source'] = array_merge($filter['source'],array('aprs'));
92
+}
93
+if (isset($_COOKIE['filter_ident']) && $_COOKIE['filter_ident'] != '') {
94
+	$filter['ident'] = filter_var($_COOKIE['filter_ident'],FILTER_SANITIZE_STRING);
95
+}
96
+if (isset($_COOKIE['filter_Airlines']) && $_COOKIE['filter_Airlines'] != '') {
97
+	$filter['airlines'] = filter_var_array(explode(',',$_COOKIE['filter_Airlines']),FILTER_SANITIZE_STRING);
98
+}
99
+if (isset($_COOKIE['filter_Sources']) && $_COOKIE['filter_Sources'] != '') {
100
+	$filter['source_aprs'] = filter_var_array(explode(',',$_COOKIE['filter_Sources']),FILTER_SANITIZE_STRING);
101
+}
102
+if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] != 'all') {
103
+	$filter['airlinestype'] = filter_var($_COOKIE['filter_airlinestype'],FILTER_SANITIZE_STRING);
104
+}
105
+if (isset($_COOKIE['filter_alliance']) && $_COOKIE['filter_alliance'] != 'all') {
106
+	$filter['alliance'] = filter_var($_COOKIE['filter_alliance'],FILTER_SANITIZE_STRING);
107
+}
81 108
 /*
82 109
 if (isset($globalMapPopup) && !$globalMapPopup && !(isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true')) {
83 110
 	$min = true;
@@ -162,8 +189,12 @@  discard block
 block discarded – undo
162 189
 	} else {
163 190
 		$flightcnt = $SpotterLive->getLiveSpotterCount($filter);
164 191
 	}
165
-	if ($flightcnt == '') $flightcnt = 0;
166
-} else $flightcnt = 0;
192
+	if ($flightcnt == '') {
193
+		$flightcnt = 0;
194
+	}
195
+	} else {
196
+	$flightcnt = 0;
197
+}
167 198
 
168 199
 $sqltime = round(microtime(true)-$begintime,2);
169 200
 $minitime = time();
@@ -186,7 +217,9 @@  discard block
 block discarded – undo
186 217
 $j = 0;
187 218
 $prev_flightaware_id = '';
188 219
 $speed = 1;
189
-if (isset($archivespeed)) $speed = $archivespeed;
220
+if (isset($archivespeed)) {
221
+	$speed = $archivespeed;
222
+}
190 223
 $output = '[';
191 224
 if ($tracker) {
192 225
 	$output .= '{"id" : "document", "name" : "tracker","version" : "1.0"';
@@ -220,9 +253,13 @@  discard block
 block discarded – undo
220 253
 			$image = "images/placeholder_thumb.png";
221 254
 		}
222 255
 
223
-                if (isset($spotter_item['flightaware_id'])) $id = $spotter_item['flightaware_id'];
224
-                elseif (isset($spotter_item['famtrackid'])) $id = $spotter_item['famtrackid'];
225
-                elseif (isset($spotter_item['fammarine_id'])) $id = $spotter_item['fammarine_id'];
256
+                if (isset($spotter_item['flightaware_id'])) {
257
+                	$id = $spotter_item['flightaware_id'];
258
+                } elseif (isset($spotter_item['famtrackid'])) {
259
+                	$id = $spotter_item['famtrackid'];
260
+                } elseif (isset($spotter_item['fammarine_id'])) {
261
+                	$id = $spotter_item['fammarine_id'];
262
+                }
226 263
                 if ($prev_flightaware_id != $id) {
227 264
 			if ($prev_flightaware_id != '') {
228 265
 				$output .= ']';
@@ -264,7 +301,9 @@  discard block
 block discarded – undo
264 301
 						$spotter_item['engine_type'] = $aircraft_info[0]['engine_type'];
265 302
 						$spotter_item['wake_category'] = $aircraft_info[0]['wake_category'];
266 303
 						$spotter_item['engine_count'] = $aircraft_info[0]['engine_count'];
267
-					} else $aircraft_shadow = '';
304
+					} else {
305
+						$aircraft_shadow = '';
306
+					}
268 307
 					if ($aircraft_shadow != '') {
269 308
 						if (isset($modelsdb[$aircraft_shadow])) {
270 309
 							$output .= '"model": {"gltf" : "'.$globalURL.'/models/'.$modelsdb[$aircraft_shadow].'","scale" : 1.0,"minimumPixelSize": 20';
@@ -369,7 +408,9 @@  discard block
 block discarded – undo
369 408
 							$output .= ',"heightReference": "'.$heightrelative.'"';
370 409
 							$output .= '},';
371 410
 								//if ($spotter_item['aircraft_shadow'] != '') $output .= '"aircraft_shadow": "'.$spotter_item['aircraft_shadow'].'",';
372
-							if ($spotter_item['aircraft_icao'] != '') $output .= '"aircraft_icao": "'.$spotter_item['aircraft_icao'].'",';
411
+							if ($spotter_item['aircraft_icao'] != '') {
412
+								$output .= '"aircraft_icao": "'.$spotter_item['aircraft_icao'].'",';
413
+							}
373 414
 							$modelsdb[$aircraft_icao] = 'Cesium_Air.glb';
374 415
 						}
375 416
 					} elseif (isset($spotter_item['format_source']) && $spotter_item['format_source'] == 'aprs') {
@@ -383,7 +424,9 @@  discard block
 block discarded – undo
383 424
 						$output .= ',"heightReference": "'.$heightrelative.'"';
384 425
 						$output .= '},';
385 426
 						//if ($spotter_item['aircraft_shadow'] != '') $output .= '"aircraft_shadow": "'.$spotter_item['aircraft_shadow'].'",';
386
-						if ($spotter_item['aircraft_icao'] != '') $output .= '"aircraft_icao": "'.$spotter_item['aircraft_icao'].'",';
427
+						if ($spotter_item['aircraft_icao'] != '') {
428
+							$output .= '"aircraft_icao": "'.$spotter_item['aircraft_icao'].'",';
429
+						}
387 430
 						$modelsdb[$aircraft_icao] = 'Cesium_Air.glb';
388 431
 					}
389 432
 				} else {
@@ -391,7 +434,9 @@  discard block
 block discarded – undo
391 434
 					$output .= ',"heightReference": "'.$heightrelative.'"';
392 435
 					$output .= '},';
393 436
 					//if ($spotter_item['aircraft_shadow'] != '') $output .= '"aircraft_shadow": "'.$spotter_item['aircraft_shadow'].'",';
394
-					if ($spotter_item['aircraft_icao'] != '') $output .= '"aircraft_icao": "'.$spotter_item['aircraft_icao'].'",';
437
+					if ($spotter_item['aircraft_icao'] != '') {
438
+						$output .= '"aircraft_icao": "'.$spotter_item['aircraft_icao'].'",';
439
+					}
395 440
 					$modelsdb[$aircraft_icao] = 'Cesium_Air.glb';
396 441
 				}
397 442
 			} elseif ($tracker && isset($spotter_item['type'])) {
@@ -446,8 +491,12 @@  discard block
 block discarded – undo
446 491
 	//		$output .= '"interpolationDegree" : 5,';
447 492
 	//		$output .= '"epoch" : "'.date("c",strtotime($spotter_item['date'])).'", ';
448 493
 			$output .= '"cartographicDegrees": [';
449
-			if ($minitime > strtotime($spotter_item['date'])) $minitime = strtotime($spotter_item['date']);
450
-			if ($maxitime < strtotime($spotter_item['date'])) $maxitime = strtotime($spotter_item['date']);
494
+			if ($minitime > strtotime($spotter_item['date'])) {
495
+				$minitime = strtotime($spotter_item['date']);
496
+			}
497
+			if ($maxitime < strtotime($spotter_item['date'])) {
498
+				$maxitime = strtotime($spotter_item['date']);
499
+			}
451 500
 			$output .= '"'.date("c",strtotime($spotter_item['date'])).'", ';
452 501
 			$output .= $spotter_item['longitude'].', ';
453 502
 			$output .= $spotter_item['latitude'];
@@ -456,19 +505,26 @@  discard block
 block discarded – undo
456 505
 			if (!$tracker && !$marine) {
457 506
 				$output .= ', '.round($spotter_item['altitude']*30.48);
458 507
 				$prevalt = round($spotter_item['altitude']*30.48);
459
-			} else $output .= ', 0';
508
+			} else {
509
+				$output .= ', 0';
510
+			}
460 511
 			//$orientation = '"orientation" : { ';
461 512
 			//$orientation .= '"unitQuaternion": [';
462 513
 			//$quat = quaternionrotate(deg2rad($spotter_item['heading']),deg2rad(0),deg2rad(0));
463 514
 			//$orientation .= '"'.date("c",strtotime($spotter_item['date'])).'",'.$quat['x'].','.$quat['y'].','.$quat['z'].','.$quat['w'];
464 515
 		} else {
465 516
 			$output .= ',"'.date("c",strtotime($spotter_item['date'])).'", ';
466
-			if ($maxitime < strtotime($spotter_item['date'])) $maxitime = strtotime($spotter_item['date']);
517
+			if ($maxitime < strtotime($spotter_item['date'])) {
518
+				$maxitime = strtotime($spotter_item['date']);
519
+			}
467 520
 			if ($spotter_item['ground_speed'] == 0) {
468 521
 				$output .= $prevlong.', ';
469 522
 				$output .= $prevlat;
470
-				if (!$tracker && !$marine) $output .= ', '.$prevalt;
471
-				else $output .= ', 0';
523
+				if (!$tracker && !$marine) {
524
+					$output .= ', '.$prevalt;
525
+				} else {
526
+					$output .= ', 0';
527
+				}
472 528
 			} else {
473 529
 				$output .= $spotter_item['longitude'].', ';
474 530
 				$output .= $spotter_item['latitude'];
@@ -482,7 +538,9 @@  discard block
 block discarded – undo
482 538
 					} else {
483 539
 						$output .= ', '.round($spotter_item['altitude']*30.48);
484 540
 					}
485
-				} else $output .= ', 0';
541
+				} else {
542
+					$output .= ', 0';
543
+				}
486 544
 			}
487 545
 			//$quat = quaternionrotate(deg2rad($spotter_item['heading']),deg2rad(0),deg2rad(0));
488 546
 			//$orientation .= ',"'.date("c",strtotime($spotter_item['date'])).'",'.$quat['x'].','.$quat['y'].','.$quat['z'].','.$quat['w'];
Please login to merge, or discard this patch.
header.php 3 patches
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 // When button "Remove all filters" is clicked
29 29
 if (isset($_POST['removefilters'])) {
30 30
 	$allfilters = array_filter(array_keys($_COOKIE),function($key) {
31
-	    return strpos($key,'filter_') === 0;
31
+		return strpos($key,'filter_') === 0;
32 32
 	});
33 33
 	foreach ($allfilters as $filt) {
34 34
 		unset($_COOKIE[$filt]);
@@ -168,17 +168,17 @@  discard block
 block discarded – undo
168 168
 	}
169 169
 ?>
170 170
 <?php 
171
-    if (isset($_POST['archive'])) {
171
+	if (isset($_POST['archive'])) {
172 172
 ?>
173 173
 <script src="<?php print $globalURL; ?>/js/map.common.js"></script>
174 174
 <?php 
175
-	    if ((!isset($_COOKIE['MapFormat']) && (!isset($globalMap3Ddefault) || !$globalMap3Ddefault)) || (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] != '3d')) {
175
+		if ((!isset($_COOKIE['MapFormat']) && (!isset($globalMap3Ddefault) || !$globalMap3Ddefault)) || (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] != '3d')) {
176 176
 ?>
177 177
 
178 178
 <script src="<?php print $globalURL; ?>/js/map.js.php?<?php print time(); ?>&archive&begindate=<?php print strtotime($_POST['start_date']); ?>&enddate=<?php print strtotime($_POST['end_date']); ?>&archivespeed=<?php print $_POST['archivespeed']; ?>"></script>
179 179
 <?php    
180
-	    }
181
-    } else {
180
+		}
181
+	} else {
182 182
 ?>
183 183
 <?php
184 184
 /*	if (isset($globalBeta) && $globalBeta) {
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
 */
191 191
 ?>
192 192
 <?php 
193
-	    if ((!isset($_COOKIE['MapFormat']) && (!isset($globalMap3Ddefault) || !$globalMap3Ddefault)) || (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] != '3d')) {
193
+		if ((!isset($_COOKIE['MapFormat']) && (!isset($globalMap3Ddefault) || !$globalMap3Ddefault)) || (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] != '3d')) {
194 194
 ?>
195 195
 <?php
196 196
 //		if (isset($globalBeta) && $globalBeta) {
@@ -217,13 +217,13 @@  discard block
 block discarded – undo
217 217
 <script src="<?php print $globalURL; ?>/js/map-marine.2d.js.php?<?php print time(); ?>"></script>
218 218
 <?php
219 219
 		}
220
-	    }
220
+		}
221 221
 ?>
222 222
 <?php
223 223
 //	}
224 224
 ?>
225 225
 <?php
226
-    }
226
+	}
227 227
 }
228 228
 ?>
229 229
 <?php
@@ -380,15 +380,15 @@  discard block
 block discarded – undo
380 380
 			<li><a href="<?php print $globalURL; ?>/airline"><?php echo _("Airlines"); ?></a></li>
381 381
 			<li><a href="<?php print $globalURL; ?>/airport"><?php echo _("Airports"); ?></a></li>
382 382
 <?php
383
-    if ((!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS) && (!isset($globalVAM) || !$globalVAM)) {
383
+	if ((!isset($globalIVAO) || !$globalIVAO) && (!isset($globalVATSIM) || !$globalVATSIM) && (!isset($globalphpVMS) || !$globalphpVMS) && (!isset($globalVAM) || !$globalVAM)) {
384 384
 ?>
385 385
 			<li><a href="<?php print $globalURL; ?>/owner"><?php echo _("Owners"); ?></a></li>
386 386
 <?php
387
-    } else {
387
+	} else {
388 388
 ?>
389 389
 			<li><a href="<?php print $globalURL; ?>/pilot"><?php echo _("Pilots"); ?></a></li>
390 390
 <?php
391
-    }
391
+	}
392 392
 ?>
393 393
 			<li><hr /></li>
394 394
             <li><a href="<?php print $globalURL; ?>/currently"><?php echo _("Current Activity"); ?></a></li>
@@ -396,34 +396,34 @@  discard block
 block discarded – undo
396 396
             <li><a href="<?php print $globalURL; ?>/date/<?php print date("Y-m-d"); ?>"><?php echo _("Today's Activity"); ?></a></li>
397 397
             <li><a href="<?php print $globalURL; ?>/newest"><?php echo _("Newest by Category"); ?></a></li>
398 398
             <?php
399
-        	if ($globalACARS) {
400
-        	    if (isset($globalDemo) && $globalDemo) {
401
-    	    ?>
399
+			if ($globalACARS) {
400
+				if (isset($globalDemo) && $globalDemo) {
401
+			?>
402 402
             <li><hr /></li>
403 403
             <li><i><?php echo _('ACARS data not available publicly'); ?></i></li>
404 404
             <li><a href=""><?php echo _('Latest ACARS messages'); ?></a></li>
405 405
             <li><a href=""><?php echo _('Archive ACARS messages'); ?></a></li>
406 406
             <?php
407
-        	    } else {
408
-    	    ?>
407
+				} else {
408
+			?>
409 409
             <li><hr /></li>
410 410
             <li><a href="<?php print $globalURL; ?>/acars-latest"><?php echo _("Latest ACARS messages"); ?></a></li>
411 411
             <li><a href="<?php print $globalURL; ?>/acars-archive"><?php echo _("Archive ACARS messages"); ?></a></li>
412 412
             <?php
413
-        	    }
414
-        	}
415
-    	    ?>
413
+				}
414
+			}
415
+			?>
416 416
     	    <?php
417
-    	        if (isset($globalAccidents) && $globalAccidents) {
418
-    	    ?>
417
+				if (isset($globalAccidents) && $globalAccidents) {
418
+			?>
419 419
             <li><hr /></li>
420 420
             <li><a href="<?php print $globalURL; ?>/accident-latest"><?php echo _("Latest accident"); ?></a></li>
421 421
             <li><a href="<?php print $globalURL; ?>/accident/<?php print date("Y-m-d"); ?>"><?php echo _("Today's Accident"); ?></a></li>
422 422
             <li><a href="<?php print $globalURL; ?>/incident-latest"><?php echo _("Latest incident"); ?></a></li>
423 423
             <li><a href="<?php print $globalURL; ?>/incident/<?php print date("Y-m-d"); ?>"><?php echo _("Today's Incident"); ?></a></li>
424 424
             <?php
425
-        	}
426
-    	    ?>
425
+			}
426
+			?>
427 427
             <li><hr /></li>
428 428
             <li><a href="<?php print $globalURL; ?>/highlights/table"><?php echo _("Special Highlights"); ?></a></li>
429 429
             <li><a href="<?php print $globalURL; ?>/upcoming"><?php echo _("Upcoming Flights"); ?></a></li>
@@ -465,14 +465,14 @@  discard block
 block discarded – undo
465 465
   	    <form>
466 466
   		<select class="selectpicker" data-width="120px" onchange="language(this);">
467 467
   		    <?php
468
-  		        $Language = new Language();
469
-  		        $alllang = $Language->getLanguages();
470
-  		        foreach ($alllang as $key => $lang) {
471
-  		            print '<option value="'.$key.'"';
472
-  		            if (isset($_COOKIE['language']) && $_COOKIE['language'] == $key) print ' selected ';
473
-  		            print '>'.$lang[0].'</option>';
474
-  		        }
475
-  		    ?>
468
+  				$Language = new Language();
469
+  				$alllang = $Language->getLanguages();
470
+  				foreach ($alllang as $key => $lang) {
471
+  					print '<option value="'.$key.'"';
472
+  					if (isset($_COOKIE['language']) && $_COOKIE['language'] == $key) print ' selected ';
473
+  					print '>'.$lang[0].'</option>';
474
+  				}
475
+  			?>
476 476
   		</select>
477 477
   	    </form>
478 478
   	</div>
@@ -503,18 +503,18 @@  discard block
 block discarded – undo
503 503
 ?>
504 504
     <div class="top-header clear" role="main">
505 505
 <?php
506
-    if (isset($longitude) && isset($latitude) && $longitude != 0 && $latitude != 0) {
506
+	if (isset($longitude) && isset($latitude) && $longitude != 0 && $latitude != 0) {
507 507
 ?>
508 508
     <div id="archive-map"></div>
509 509
 <?php
510
-    }
510
+	}
511 511
 ?>
512 512
     </div>
513 513
 <?php
514 514
 }
515 515
 if ((strpos(strtolower($current_page),'airport-') !== false && strpos(strtolower($current_page),'statistics-') === false) || (strpos(strtolower($current_page),'route-') !== false && strpos(strtolower($current_page),'statistics-') === false))
516 516
 {
517
-    ?>
517
+	?>
518 518
     <div class="top-header clear" role="main">
519 519
         <div id="map"></div>
520 520
 	<link rel="stylesheet" href="<?php print $globalURL; ?>/css/leaflet.css" />
@@ -525,15 +525,15 @@  discard block
 block discarded – undo
525 525
         var zoom = 13;
526 526
 //create the map
527 527
 <?php
528
-    if (strpos(strtolower($current_page),'airport-') !== false && strpos(strtolower($current_page),'statistics-') === false && isset($airport_array[0]['latitude'])) {
528
+	if (strpos(strtolower($current_page),'airport-') !== false && strpos(strtolower($current_page),'statistics-') === false && isset($airport_array[0]['latitude'])) {
529 529
 ?>
530 530
   map = L.map('map', { zoomControl:true }).setView([<?php print $airport_array[0]['latitude']; ?>,<?php print $airport_array[0]['longitude']; ?>], zoom);
531 531
 <?php
532
-    } elseif (strpos(strtolower($current_page),'airport-') !== false && strpos(strtolower($current_page),'statistics-') === false) {
532
+	} elseif (strpos(strtolower($current_page),'airport-') !== false && strpos(strtolower($current_page),'statistics-') === false) {
533 533
 ?>
534 534
   map = L.map('map', { zoomControl:true });
535 535
 <?php
536
-    } elseif (strpos(strtolower($current_page),'route-') !== false && strpos(strtolower($current_page),'statistics-') === false && isset($spotter_array[0]['departure_airport_latitude'])) {
536
+	} elseif (strpos(strtolower($current_page),'route-') !== false && strpos(strtolower($current_page),'statistics-') === false && isset($spotter_array[0]['departure_airport_latitude'])) {
537 537
 ?>
538 538
   map = L.map('map', { zoomControl:true }).setView([<?php print $spotter_array[0]['departure_airport_latitude']; ?>,<?php print $spotter_array[0]['arrival_airport_longitude']; ?>]);
539 539
     var line = L.polyline([[<?php print $spotter_array[0]['departure_airport_latitude']; ?>, <?php print $spotter_array[0]['departure_airport_longitude']; ?>],[<?php print $spotter_array[0]['arrival_airport_latitude']; ?>, <?php print $spotter_array[0]['arrival_airport_longitude']; ?>]]).addTo(map);
@@ -541,22 +541,22 @@  discard block
 block discarded – undo
541 541
     var departure_airport = L.marker([<?php print $spotter_array[0]['departure_airport_latitude']; ?>, <?php print $spotter_array[0]['departure_airport_longitude']; ?>], {icon: L.icon({iconUrl: '<?php print $globalURL; ?>/images/departure_airport.png',iconSize: [16,18],iconAnchor: [8,16]})}).addTo(map);
542 542
     var arrival_airport = L.marker([<?php print $spotter_array[0]['arrival_airport_latitude']; ?>, <?php print $spotter_array[0]['arrival_airport_longitude']; ?>], {icon: L.icon({iconUrl: '<?php print $globalURL; ?>/images/arrival_airport.png',iconSize: [16,18],iconAnchor: [8,16]})}).addTo(map);
543 543
 <?php
544
-    } elseif (strpos(strtolower($current_page),'route-') !== false && strpos(strtolower($current_page),'statistics-') === false && !isset($spotter_array[0]['departure_airport_latitude'])) {
544
+	} elseif (strpos(strtolower($current_page),'route-') !== false && strpos(strtolower($current_page),'statistics-') === false && !isset($spotter_array[0]['departure_airport_latitude'])) {
545 545
 ?>
546 546
   map = L.map('map', { zoomControl:true }).setView([<?php print $spotter_array[0]['latitude']; ?>,<?php print $spotter_array[0]['longitude']; ?>]);
547 547
 <?php
548
-    } elseif (!isset($spotter_array[0]['latitude']) && !isset($spotter_array[0]['longitude'])) {
548
+	} elseif (!isset($spotter_array[0]['latitude']) && !isset($spotter_array[0]['longitude'])) {
549 549
 ?>
550 550
   map = L.map('map', { zoomControl:true });
551 551
 <?php
552
-    }
552
+	}
553 553
 ?>
554 554
   //initialize the layer group for the aircrft markers
555 555
   var layer_data = L.layerGroup();
556 556
 
557 557
   //a few title layers
558 558
 <?php
559
-    if ($globalMapProvider == 'Mapbox') {
559
+	if ($globalMapProvider == 'Mapbox') {
560 560
 ?>
561 561
   L.tileLayer('https://{s}.tiles.mapbox.com/v4/{id}/{z}/{x}/{y}.png?access_token={token}', {
562 562
     maxZoom: 18,
@@ -567,7 +567,7 @@  discard block
 block discarded – undo
567 567
     token : '<?php print $globalMapboxToken; ?>'
568 568
   }).addTo(map);
569 569
 <?php
570
-    } elseif ($globalMapProvider == 'OpenStreetMap') {
570
+	} elseif ($globalMapProvider == 'OpenStreetMap') {
571 571
 ?>
572 572
   L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
573 573
     maxZoom: 18,
@@ -575,7 +575,7 @@  discard block
 block discarded – undo
575 575
       '<a href="http://www.openstreetmap.org/copyright">Open Database Licence</a>'
576 576
   }).addTo(map);
577 577
 <?php
578
-    } elseif ($globalMapProvider == 'MapQuest-OSM') {
578
+	} elseif ($globalMapProvider == 'MapQuest-OSM') {
579 579
 ?>
580 580
   L.tileLayer('http://otile1.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.png', {
581 581
     maxZoom: 18,
@@ -584,7 +584,7 @@  discard block
 block discarded – undo
584 584
       'Tiles Courtesy of <a href="http://www.mapquest.com">MapQuest</a>'
585 585
   }).addTo(map);
586 586
 <?php
587
-    } elseif ($globalMapProvider == 'MapQuest-Aerial') {
587
+	} elseif ($globalMapProvider == 'MapQuest-Aerial') {
588 588
 ?>
589 589
   L.tileLayer('http://otile1.mqcdn.com/tiles/1.0.0/sat/{z}/{x}/{y}.png', {
590 590
     maxZoom: 18,
@@ -593,27 +593,27 @@  discard block
 block discarded – undo
593 593
       'Tiles Courtesy of <a href="http://www.mapquest.com">MapQuest</a>, Portions Courtesy NASA/JPL-Caltech and U.S. Depart. of Agriculture, Farm Service Agency"'
594 594
   }).addTo(map);
595 595
 <?php
596
-    } elseif ($globalMapProvider == 'Google-Roadmap') {
596
+	} elseif ($globalMapProvider == 'Google-Roadmap') {
597 597
 ?>
598 598
     var googleLayer = new L.Google('ROADMAP');
599 599
     map.addLayer(googleLayer);
600 600
 <?php
601
-    } elseif ($globalMapProvider == 'Google-Satellite') {
601
+	} elseif ($globalMapProvider == 'Google-Satellite') {
602 602
 ?>
603 603
     var googleLayer = new L.Google('SATELLITE');
604 604
     map.addLayer(googleLayer);
605 605
 <?php
606
-    } elseif ($globalMapProvider == 'Google-Hybrid') {
606
+	} elseif ($globalMapProvider == 'Google-Hybrid') {
607 607
 ?>
608 608
     var googleLayer = new L.Google('HYBRID');
609 609
     map.addLayer(googleLayer);
610 610
 <?php
611
-    } elseif ($globalMapProvider == 'Google-Terrain') {
611
+	} elseif ($globalMapProvider == 'Google-Terrain') {
612 612
 ?>
613 613
     var googleLayer = new L.Google('Terrain');
614 614
     map.addLayer(googleLayer);
615 615
 <?php
616
-    }
616
+	}
617 617
 ?>
618 618
         </script>
619 619
     </div>
Please login to merge, or discard this patch.
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -8,31 +8,31 @@  discard block
 block discarded – undo
8 8
 if (isset($_COOKIE['MapType']) && $_COOKIE['MapType'] != '') $MapType = $_COOKIE['MapType'];
9 9
 else $MapType = $globalMapProvider;
10 10
 if (isset($_GET['3d'])) {
11
-	setcookie('MapFormat','3d');
11
+	setcookie('MapFormat', '3d');
12 12
 } else if (isset($_GET['2d'])) {
13
-	setcookie('MapFormat','2d');
13
+	setcookie('MapFormat', '2d');
14 14
 }
15 15
 
16 16
 if (isset($_POST['archive'])) {
17
-	setcookie('archive','true');
18
-	setcookie('archive_begin',strtotime($_POST['start_date']));
19
-	setcookie('archive_end',strtotime($_POST['end_date']));
20
-	setcookie('archive_speed',$_POST['archivespeed']);
17
+	setcookie('archive', 'true');
18
+	setcookie('archive_begin', strtotime($_POST['start_date']));
19
+	setcookie('archive_end', strtotime($_POST['end_date']));
20
+	setcookie('archive_speed', $_POST['archivespeed']);
21 21
 }
22 22
 if (isset($_POST['noarchive'])) {
23
-	setcookie('archive','false',-1);
24
-	setcookie('archive_begin','',-1);
25
-	setcookie('archive_end','',-1);
26
-	setcookie('archive_speed','',-1);
23
+	setcookie('archive', 'false', -1);
24
+	setcookie('archive_begin', '', -1);
25
+	setcookie('archive_end', '', -1);
26
+	setcookie('archive_speed', '', -1);
27 27
 }
28 28
 // When button "Remove all filters" is clicked
29 29
 if (isset($_POST['removefilters'])) {
30
-	$allfilters = array_filter(array_keys($_COOKIE),function($key) {
31
-	    return strpos($key,'filter_') === 0;
30
+	$allfilters = array_filter(array_keys($_COOKIE), function($key) {
31
+	    return strpos($key, 'filter_') === 0;
32 32
 	});
33 33
 	foreach ($allfilters as $filt) {
34 34
 		unset($_COOKIE[$filt]);
35
-		setcookie($filt,null,-1);
35
+		setcookie($filt, null, -1);
36 36
 	}
37 37
 }
38 38
 
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
 <script src="<?php print $globalURL; ?>/js/MovingMarker.js"></script>
242 242
 <script src="<?php print $globalURL; ?>/js/jquery.idle.min.js"></script>
243 243
 <script src="<?php print $globalURL; ?>/js/map.common.js"></script>
244
-<script src="<?php print $globalURL; ?>/js/map.js.php?ident=<?php print $ident; ?><?php if(isset($latitude)) print '&latitude='.$latitude; ?><?php if(isset($longitude)) print '&longitude='.$longitude; ?>&<?php print time(); ?>"></script>
244
+<script src="<?php print $globalURL; ?>/js/map.js.php?ident=<?php print $ident; ?><?php if (isset($latitude)) print '&latitude='.$latitude; ?><?php if (isset($longitude)) print '&longitude='.$longitude; ?>&<?php print time(); ?>"></script>
245 245
 <?php
246 246
 		if (isset($globalGoogleAPIKey) && $globalGoogleAPIKey != '' && ($MapType == 'Google-Roadmap' || $MapType == 'Google-Satellite' || $MapType == 'Google-Hybrid' || $MapType == 'Google-Terrain')) {
247 247
 ?>
@@ -296,7 +296,7 @@  discard block
 block discarded – undo
296 296
 <script src="<?php print $globalURL; ?>/js/MovingMarker.js"></script>
297 297
 <script src="<?php print $globalURL; ?>/js/jquery.idle.min.js"></script>
298 298
 <script src="<?php print $globalURL; ?>/js/map.common.js"></script>
299
-<script src="<?php print $globalURL; ?>/js/map.js.php?flightaware_id=<?php print $flightaware_id; ?><?php if(isset($latitude)) print '&latitude='.$latitude; ?><?php if(isset($longitude)) print '&longitude='.$longitude; ?>&<?php print time(); ?>"></script>
299
+<script src="<?php print $globalURL; ?>/js/map.js.php?flightaware_id=<?php print $flightaware_id; ?><?php if (isset($latitude)) print '&latitude='.$latitude; ?><?php if (isset($longitude)) print '&longitude='.$longitude; ?>&<?php print time(); ?>"></script>
300 300
 <?php
301 301
 		if (isset($globalGoogleAPIKey) && $globalGoogleAPIKey != '' && ($MapType == 'Google-Roadmap' || $MapType == 'Google-Satellite' || $MapType == 'Google-Hybrid' || $MapType == 'Google-Terrain')) {
302 302
 ?>
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
 ?>
482 482
       <div class="search">
483 483
       <form action="<?php print $globalURL; ?>/search" method="get">
484
-		<input type="text" name="q" value="<?php if (isset($GET['q'])) { if ($_GET['q'] != ""){ print $_GET['q']; } else { print _("Search"); } } else { print _("Search"); } ?>" onfocus="if (this.value=='search'){this.value='';}" /><button type="submit"><i class="fa fa-search"></i></button>
484
+		<input type="text" name="q" value="<?php if (isset($GET['q'])) { if ($_GET['q'] != "") { print $_GET['q']; } else { print _("Search"); } } else { print _("Search"); } ?>" onfocus="if (this.value=='search'){this.value='';}" /><button type="submit"><i class="fa fa-search"></i></button>
485 485
 	</form>
486 486
 	</div>
487 487
   	<div class="social">
@@ -499,7 +499,7 @@  discard block
 block discarded – undo
499 499
 	print '</div>';
500 500
 }
501 501
 
502
-if (strtolower($current_page) =='ident-detailed' || strtolower($current_page) == 'flightid-overview') {
502
+if (strtolower($current_page) == 'ident-detailed' || strtolower($current_page) == 'flightid-overview') {
503 503
 ?>
504 504
     <div class="top-header clear" role="main">
505 505
 <?php
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
     </div>
513 513
 <?php
514 514
 }
515
-if ((strpos(strtolower($current_page),'airport-') !== false && strpos(strtolower($current_page),'statistics-') === false) || (strpos(strtolower($current_page),'route-') !== false && strpos(strtolower($current_page),'statistics-') === false))
515
+if ((strpos(strtolower($current_page), 'airport-') !== false && strpos(strtolower($current_page), 'statistics-') === false) || (strpos(strtolower($current_page), 'route-') !== false && strpos(strtolower($current_page), 'statistics-') === false))
516 516
 {
517 517
     ?>
518 518
     <div class="top-header clear" role="main">
@@ -525,15 +525,15 @@  discard block
 block discarded – undo
525 525
         var zoom = 13;
526 526
 //create the map
527 527
 <?php
528
-    if (strpos(strtolower($current_page),'airport-') !== false && strpos(strtolower($current_page),'statistics-') === false && isset($airport_array[0]['latitude'])) {
528
+    if (strpos(strtolower($current_page), 'airport-') !== false && strpos(strtolower($current_page), 'statistics-') === false && isset($airport_array[0]['latitude'])) {
529 529
 ?>
530 530
   map = L.map('map', { zoomControl:true }).setView([<?php print $airport_array[0]['latitude']; ?>,<?php print $airport_array[0]['longitude']; ?>], zoom);
531 531
 <?php
532
-    } elseif (strpos(strtolower($current_page),'airport-') !== false && strpos(strtolower($current_page),'statistics-') === false) {
532
+    } elseif (strpos(strtolower($current_page), 'airport-') !== false && strpos(strtolower($current_page), 'statistics-') === false) {
533 533
 ?>
534 534
   map = L.map('map', { zoomControl:true });
535 535
 <?php
536
-    } elseif (strpos(strtolower($current_page),'route-') !== false && strpos(strtolower($current_page),'statistics-') === false && isset($spotter_array[0]['departure_airport_latitude'])) {
536
+    } elseif (strpos(strtolower($current_page), 'route-') !== false && strpos(strtolower($current_page), 'statistics-') === false && isset($spotter_array[0]['departure_airport_latitude'])) {
537 537
 ?>
538 538
   map = L.map('map', { zoomControl:true }).setView([<?php print $spotter_array[0]['departure_airport_latitude']; ?>,<?php print $spotter_array[0]['arrival_airport_longitude']; ?>]);
539 539
     var line = L.polyline([[<?php print $spotter_array[0]['departure_airport_latitude']; ?>, <?php print $spotter_array[0]['departure_airport_longitude']; ?>],[<?php print $spotter_array[0]['arrival_airport_latitude']; ?>, <?php print $spotter_array[0]['arrival_airport_longitude']; ?>]]).addTo(map);
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
     var departure_airport = L.marker([<?php print $spotter_array[0]['departure_airport_latitude']; ?>, <?php print $spotter_array[0]['departure_airport_longitude']; ?>], {icon: L.icon({iconUrl: '<?php print $globalURL; ?>/images/departure_airport.png',iconSize: [16,18],iconAnchor: [8,16]})}).addTo(map);
542 542
     var arrival_airport = L.marker([<?php print $spotter_array[0]['arrival_airport_latitude']; ?>, <?php print $spotter_array[0]['arrival_airport_longitude']; ?>], {icon: L.icon({iconUrl: '<?php print $globalURL; ?>/images/arrival_airport.png',iconSize: [16,18],iconAnchor: [8,16]})}).addTo(map);
543 543
 <?php
544
-    } elseif (strpos(strtolower($current_page),'route-') !== false && strpos(strtolower($current_page),'statistics-') === false && !isset($spotter_array[0]['departure_airport_latitude'])) {
544
+    } elseif (strpos(strtolower($current_page), 'route-') !== false && strpos(strtolower($current_page), 'statistics-') === false && !isset($spotter_array[0]['departure_airport_latitude'])) {
545 545
 ?>
546 546
   map = L.map('map', { zoomControl:true }).setView([<?php print $spotter_array[0]['latitude']; ?>,<?php print $spotter_array[0]['longitude']; ?>]);
547 547
 <?php
Please login to merge, or discard this patch.
Braces   +32 added lines, -7 removed lines patch added patch discarded remove patch
@@ -5,8 +5,11 @@  discard block
 block discarded – undo
5 5
 $file_path = pathinfo($_SERVER['SCRIPT_NAME']);
6 6
 $current_page = $file_path['filename'];
7 7
 date_default_timezone_set($globalTimezone);
8
-if (isset($_COOKIE['MapType']) && $_COOKIE['MapType'] != '') $MapType = $_COOKIE['MapType'];
9
-else $MapType = $globalMapProvider;
8
+if (isset($_COOKIE['MapType']) && $_COOKIE['MapType'] != '') {
9
+	$MapType = $_COOKIE['MapType'];
10
+} else {
11
+	$MapType = $globalMapProvider;
12
+}
10 13
 if (isset($_GET['3d'])) {
11 14
 	setcookie('MapFormat','3d');
12 15
 } else if (isset($_GET['2d'])) {
@@ -241,7 +244,13 @@  discard block
 block discarded – undo
241 244
 <script src="<?php print $globalURL; ?>/js/MovingMarker.js"></script>
242 245
 <script src="<?php print $globalURL; ?>/js/jquery.idle.min.js"></script>
243 246
 <script src="<?php print $globalURL; ?>/js/map.common.js"></script>
244
-<script src="<?php print $globalURL; ?>/js/map.js.php?ident=<?php print $ident; ?><?php if(isset($latitude)) print '&latitude='.$latitude; ?><?php if(isset($longitude)) print '&longitude='.$longitude; ?>&<?php print time(); ?>"></script>
247
+<script src="<?php print $globalURL; ?>/js/map.js.php?ident=<?php print $ident; ?><?php if(isset($latitude)) {
248
+	print '&latitude='.$latitude;
249
+}
250
+?><?php if(isset($longitude)) {
251
+	print '&longitude='.$longitude;
252
+}
253
+?>&<?php print time(); ?>"></script>
245 254
 <?php
246 255
 		if (isset($globalGoogleAPIKey) && $globalGoogleAPIKey != '' && ($MapType == 'Google-Roadmap' || $MapType == 'Google-Satellite' || $MapType == 'Google-Hybrid' || $MapType == 'Google-Terrain')) {
247 256
 ?>
@@ -296,7 +305,13 @@  discard block
 block discarded – undo
296 305
 <script src="<?php print $globalURL; ?>/js/MovingMarker.js"></script>
297 306
 <script src="<?php print $globalURL; ?>/js/jquery.idle.min.js"></script>
298 307
 <script src="<?php print $globalURL; ?>/js/map.common.js"></script>
299
-<script src="<?php print $globalURL; ?>/js/map.js.php?flightaware_id=<?php print $flightaware_id; ?><?php if(isset($latitude)) print '&latitude='.$latitude; ?><?php if(isset($longitude)) print '&longitude='.$longitude; ?>&<?php print time(); ?>"></script>
308
+<script src="<?php print $globalURL; ?>/js/map.js.php?flightaware_id=<?php print $flightaware_id; ?><?php if(isset($latitude)) {
309
+	print '&latitude='.$latitude;
310
+}
311
+?><?php if(isset($longitude)) {
312
+	print '&longitude='.$longitude;
313
+}
314
+?>&<?php print time(); ?>"></script>
300 315
 <?php
301 316
 		if (isset($globalGoogleAPIKey) && $globalGoogleAPIKey != '' && ($MapType == 'Google-Roadmap' || $MapType == 'Google-Satellite' || $MapType == 'Google-Hybrid' || $MapType == 'Google-Terrain')) {
302 317
 ?>
@@ -369,7 +384,12 @@  discard block
 block discarded – undo
369 384
         <span class="icon-bar"></span>
370 385
       </button>
371 386
       <a href="<?php print $globalURL; ?>/search" class="navbar-toggle navbar-toggle-search"><i class="fa fa-search"></i></a>
372
-      <a class="navbar-brand" href="<?php if ($globalURL == '') print '/'; else print $globalURL; ?>"><img src="<?php print $globalURL.$logoURL; ?>" height="30px" /></a>
387
+      <a class="navbar-brand" href="<?php if ($globalURL == '') {
388
+	print '/';
389
+} else {
390
+	print $globalURL;
391
+}
392
+?>"><img src="<?php print $globalURL.$logoURL; ?>" height="30px" /></a>
373 393
     </div>
374 394
     <div class="collapse navbar-collapse">
375 395
       <ul class="nav navbar-nav">
@@ -469,7 +489,9 @@  discard block
 block discarded – undo
469 489
   		        $alllang = $Language->getLanguages();
470 490
   		        foreach ($alllang as $key => $lang) {
471 491
   		            print '<option value="'.$key.'"';
472
-  		            if (isset($_COOKIE['language']) && $_COOKIE['language'] == $key) print ' selected ';
492
+  		            if (isset($_COOKIE['language']) && $_COOKIE['language'] == $key) {
493
+  		            	print ' selected ';
494
+  		            }
473 495
   		            print '>'.$lang[0].'</option>';
474 496
   		        }
475 497
   		    ?>
@@ -622,4 +644,7 @@  discard block
 block discarded – undo
622 644
 
623 645
 ?>
624 646
 
625
-<section class="container main-content <?php if (strtolower($current_page) == 'index') print 'index '; ?>clear">
647
+<section class="container main-content <?php if (strtolower($current_page) == 'index') {
648
+	print 'index ';
649
+}
650
+?>clear">
Please login to merge, or discard this patch.
index.php 1 patch
Indentation   +77 added lines, -77 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 <div id="showdetails" class="showdetails"></div>
37 37
 <div id="infobox" class="infobox"><h4><?php echo _("Aircrafts detected"); ?></h4><br /><i class="fa fa-spinner fa-pulse fa-fw"></i></div>
38 38
 <?php
39
-    if ((!isset($_COOKIE['MapFormat']) && isset($globalMap3Ddefault) && $globalMap3Ddefault) || (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d')) {
39
+	if ((!isset($_COOKIE['MapFormat']) && isset($globalMap3Ddefault) && $globalMap3Ddefault) || (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d')) {
40 40
 
41 41
 ?>
42 42
 <script src="<?php echo $globalURL; ?>/js/map.3d.js.php"></script>
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
 <script src="<?php echo $globalURL; ?>/js/map-marine.3d.js.php"></script>
57 57
 <?php
58 58
 	}
59
-    }
59
+	}
60 60
 ?>
61 61
 <div id="dialog" title="<?php echo _("Session has timed-out"); ?>">
62 62
   <p><?php echo _("In order to save data consumption web page times out after 30 minutes. Close this dialog to continue."); ?></p>
@@ -70,34 +70,34 @@  discard block
 block discarded – undo
70 70
 	<li><a href="#" onclick="getUserLocation(); return false;" title="<?php echo _("Plot your Location"); ?>"><i class="fa fa-map-marker"></i></a></li>
71 71
 	<li><a href="#" onclick="getCompassDirection(); return false;" title="<?php echo _("Compass Mode"); ?>"><i class="fa fa-compass"></i></a></li>
72 72
 <?php
73
-    if (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d') {
73
+	if (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d') {
74 74
 	if (isset($globalArchive) && $globalArchive == TRUE) {
75 75
 ?>
76 76
 	<li><a href="#archive" role="tab" title="<?php echo _("Archive"); ?>"><i class="fa fa-archive"></i></a></li>
77 77
 <?php
78 78
 	}
79
-    }
79
+	}
80 80
 ?>
81 81
 	<li><a href="#home" role="tab" title="<?php echo _("Layers"); ?>"><i class="fa fa-map"></i></a></li>
82 82
 	<li><a href="#filters" role="tab" title="<?php echo _("Filters"); ?>"><i class="fa fa-filter"></i></a></li>
83 83
 	<li><a href="#settings" role="tab" title="<?php echo _("Settings"); ?>"><i class="fa fa-gears"></i></a></li>
84 84
 <?php
85
-    if (isset($globalMap3D) && $globalMap3D) {
85
+	if (isset($globalMap3D) && $globalMap3D) {
86 86
 	if ((!isset($_COOKIE['MapFormat']) && (!isset($globalMap3Ddefault) || !$globalMap3Ddefault)) || (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] != '3d')) {
87 87
 ?>
88 88
 	<li><a href="#" onclick="show3D(); return false;" role="tab" title="3D"><b>3D</b></a></li>
89 89
 <?php
90
-        } else {
91
-    	    if (isset($globalMapSatellites) && $globalMapSatellites) {
90
+		} else {
91
+			if (isset($globalMapSatellites) && $globalMapSatellites) {
92 92
 ?>
93 93
 	<li><a href="#satellites" role="tab" title="<?php echo _("Satellites"); ?>"><i class="satellite"></i></a></li>
94 94
 <?php
95
-	    }
95
+		}
96 96
 ?>
97 97
 	<li><a href="#" onclick="show2D(); return false;" role="tab" title="2D"><b>2D</b></a></li>
98 98
 <?php
99 99
 	}
100
-    }
100
+	}
101 101
 ?>
102 102
     </ul>
103 103
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 ?>
172 172
         </div>
173 173
 <?php
174
-    if (isset($globalArchive) && $globalArchive == TRUE) {
174
+	if (isset($globalArchive) && $globalArchive == TRUE) {
175 175
 ?>
176 176
         <div class="sidebar-pane" id="archive">
177 177
 	    <h1 class="sidebar-header"><?php echo _("Playback"); ?> <i>Bêta</i><span class="sidebar-close"><i class="fa fa-caret-left"></i></span></h1>
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
 	    </form>
232 232
 	</div>
233 233
 <?php
234
-    }
234
+	}
235 235
 ?>
236 236
         <div class="sidebar-pane" id="settings">
237 237
 	    <h1 class="sidebar-header"><?php echo _("Settings"); ?><span class="sidebar-close"><i class="fa fa-caret-left"></i></span></h1>
@@ -242,56 +242,56 @@  discard block
 block discarded – undo
242 242
 			    <?php
243 243
 				if (!isset($_COOKIE['MapType']) || $_COOKIE['MapType'] == '') $MapType = $globalMapProvider;
244 244
 				else $MapType = $_COOKIE['MapType'];
245
-			    ?>
245
+				?>
246 246
 			    <?php
247 247
 				if (isset($globalBingMapKey) && $globalBingMapKey != '') {
248
-			    ?>
248
+				?>
249 249
 			    <option value="Bing-Aerial"<?php if ($MapType == 'Bing-Aerial') print ' selected'; ?>>Bing-Aerial</option>
250 250
 			    <option value="Bing-Hybrid"<?php if ($MapType == 'Bing-Hybrid') print ' selected'; ?>>Bing-Hybrid</option>
251 251
 			    <option value="Bing-Road"<?php if ($MapType == 'Bing-Road') print ' selected'; ?>>Bing-Road</option>
252 252
 			    <?php
253 253
 				}
254
-			    ?>
254
+				?>
255 255
 			    <?php
256
-			        if ((!isset($_COOKIE['MapFormat']) && (!isset($globalMap3Ddefault) || !$globalMap3Ddefault)) || (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] != '3d')) {
257
-			    ?>
256
+					if ((!isset($_COOKIE['MapFormat']) && (!isset($globalMap3Ddefault) || !$globalMap3Ddefault)) || (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] != '3d')) {
257
+				?>
258 258
 			    <?php
259
-				    if (isset($globalHereappId) && $globalHereappId != '' && isset($globalHereappCode) && $globalHereappCode != '') {
260
-			    ?>
259
+					if (isset($globalHereappId) && $globalHereappId != '' && isset($globalHereappCode) && $globalHereappCode != '') {
260
+				?>
261 261
 			    <option value="Here-Aerial"<?php if ($MapType == 'Here') print ' selected'; ?>>Here-Aerial</option>
262 262
 			    <option value="Here-Hybrid"<?php if ($MapType == 'Here') print ' selected'; ?>>Here-Hybrid</option>
263 263
 			    <option value="Here-Road"<?php if ($MapType == 'Here') print ' selected'; ?>>Here-Road</option>
264 264
 			    <?php
265
-				    }
266
-			    ?>
265
+					}
266
+				?>
267 267
 			    <?php
268
-				    if (isset($globalGoogleAPIKey) && $globalGoogleAPIKey != '') {
269
-			    ?>
268
+					if (isset($globalGoogleAPIKey) && $globalGoogleAPIKey != '') {
269
+				?>
270 270
 			    <option value="Google-Roadmap"<?php if ($MapType == 'Google-Roadmap') print ' selected'; ?>>Google Roadmap</option>
271 271
 			    <option value="Google-Satellite"<?php if ($MapType == 'Google-Satellite') print ' selected'; ?>>Google Satellite</option>
272 272
 			    <option value="Google-Hybrid"<?php if ($MapType == 'Google-Hybrid') print ' selected'; ?>>Google Hybrid</option>
273 273
 			    <option value="Google-Terrain"<?php if ($MapType == 'Google-Terrain') print ' selected'; ?>>Google Terrain</option>
274 274
 			    <?php
275
-				    }
276
-			    ?>
275
+					}
276
+				?>
277 277
 			    <?php
278
-				    if (isset($globalMapQuestKey) && $globalMapQuestKey != '') {
279
-			    ?>
278
+					if (isset($globalMapQuestKey) && $globalMapQuestKey != '') {
279
+				?>
280 280
 			    <option value="MapQuest-OSM"<?php if ($MapType == 'MapQuest-OSM') print ' selected'; ?>>MapQuest-OSM</option>
281 281
 			    <option value="MapQuest-Aerial"<?php if ($MapType == 'MapQuest-Aerial') print ' selected'; ?>>MapQuest-Aerial</option>
282 282
 			    <option value="MapQuest-Hybrid"<?php if ($MapType == 'MapQuest-Hybrid') print ' selected'; ?>>MapQuest-Hybrid</option>
283 283
 			    <?php
284
-				    }
285
-			    ?>
284
+					}
285
+				?>
286 286
 			    <option value="Yandex"<?php if ($MapType == 'Yandex') print ' selected'; ?>>Yandex</option>
287 287
 			    <?php
288 288
 				}
289
-			    ?>
289
+				?>
290 290
 			    <?php
291
-				    if (isset($globalMapboxToken) && $globalMapboxToken != '') {
291
+					if (isset($globalMapboxToken) && $globalMapboxToken != '') {
292 292
 					if (!isset($_COOKIE['MapTypeId'])) $MapBoxId = 'default';
293 293
 					else $MapBoxId = $_COOKIE['MapTypeId'];
294
-			    ?>
294
+				?>
295 295
 			    <option value="Mapbox-default"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'default') print ' selected'; ?>>Mapbox default</option>
296 296
 			    <option value="Mapbox-mapbox.streets"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.streets') print ' selected'; ?>>Mapbox streets</option>
297 297
 			    <option value="Mapbox-mapbox.light"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.light') print ' selected'; ?>>Mapbox light</option>
@@ -305,13 +305,13 @@  discard block
 block discarded – undo
305 305
 			    <option value="Mapbox-mapbox.pirates"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.pirates') print ' selected'; ?>>Mapbox pirates</option>
306 306
 			    <option value="Mapbox-mapbox.emerald"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.emerald') print ' selected'; ?>>Mapbox emerald</option>
307 307
 			    <?php
308
-				    }
309
-			    ?>
308
+					}
309
+				?>
310 310
 			    <option value="OpenStreetMap"<?php if ($MapType == 'OpenStreetMap') print ' selected'; ?>>OpenStreetMap</option>
311 311
 			</select>
312 312
 		    </li>
313 313
 <?php
314
-    if (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d') {
314
+	if (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d') {
315 315
 ?>
316 316
 		    <li><?php echo _("Type of Terrain:"); ?>
317 317
 			<select  class="selectpicker" onchange="terrainType(this);">
@@ -321,10 +321,10 @@  discard block
 block discarded – undo
321 321
 			</select>
322 322
 		    </li>
323 323
 <?php
324
-    }
324
+	}
325 325
 ?>
326 326
 <?php
327
-    if (!isset($_COOKIE['MapFormat']) || $_COOKIE['MapFormat'] != '3d') {
327
+	if (!isset($_COOKIE['MapFormat']) || $_COOKIE['MapFormat'] != '3d') {
328 328
 ?>
329 329
 		    
330 330
 		    <li><div class="checkbox"><label><input type="checkbox" name="flightpopup" value="1" onclick="clickFlightPopup(this)" <?php if (isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true') print 'checked'; ?> ><?php echo _("Display flight info as popup"); ?></label></div></li>
@@ -332,59 +332,59 @@  discard block
 block discarded – undo
332 332
 		    <li><div class="checkbox"><label><input type="checkbox" name="flightroute" value="1" onclick="clickFlightRoute(this)" <?php if ((isset($_COOKIE['MapRoute']) && $_COOKIE['MapRoute'] == 'true') || !isset($_COOKIE['MapRoute'])) print 'checked'; ?> ><?php echo _("Display flight route on click"); ?></label></div></li>
333 333
 		    <li><div class="checkbox"><label><input type="checkbox" name="flightestimation" value="1" onclick="clickFlightEstimation(this)" <?php if ((isset($_COOKIE['flightestimation']) && $_COOKIE['flightestimation'] == 'true') || (!isset($_COOKIE['flightestimation']) && !isset($globalMapEstimation)) || (!isset($_COOKIE['flightestimation']) && isset($globalMapEstimation) && $globalMapEstimation)) print 'checked'; ?> ><?php echo _("Planes animate between updates"); ?></label></div></li>
334 334
 <?php
335
-    }
335
+	}
336 336
 ?>
337 337
 		    <li><div class="checkbox"><label><input type="checkbox" name="displayairports" value="1" onclick="clickDisplayAirports(this)" <?php if (isset($_COOKIE['displayairports']) && $_COOKIE['displayairports'] == 'true') print 'checked'; ?> ><?php echo _("Display airports on map"); ?></label></div></li>
338 338
 <?php
339
-    if (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d') {
339
+	if (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d') {
340 340
 ?>
341 341
 		    <li><div class="checkbox"><label><input type="checkbox" name="displayminimap" value="1" onclick="clickDisplayMinimap(this)" <?php if (!isset($_COOKIE['displayminimap']) || (isset($_COOKIE['displayminimap']) && $_COOKIE['displayminimap'] == 'true')) print 'checked'; ?> ><?php echo _("Show mini-map"); ?></label></div></li>
342 342
 <?php
343
-    }
344
-    if (time() > mktime(0,0,0,12,1,date("Y")) && time() < mktime(0,0,0,12,31,date("Y"))) {
343
+	}
344
+	if (time() > mktime(0,0,0,12,1,date("Y")) && time() < mktime(0,0,0,12,31,date("Y"))) {
345 345
 ?>
346 346
 		    <li><div class="checkbox"><label><input type="checkbox" name="displaysanta" value="1" onclick="clickSanta(this)"><i class="fa fa-snowflake-o" aria-hidden="true"></i> <?php echo _("Show Santa Claus now"); ?> <i class="fa fa-snowflake-o" aria-hidden="true"></i></label></div></li>
347 347
 <?php
348
-    }
348
+	}
349 349
 ?>
350 350
 
351 351
 		    <?php
352 352
 			if (function_exists('array_column')) {
353
-			    if (array_search(TRUE, array_column($globalSources, 'sourcestats')) !== FALSE) {
354
-		    ?>
353
+				if (array_search(TRUE, array_column($globalSources, 'sourcestats')) !== FALSE) {
354
+			?>
355 355
 		    <li><div class="checkbox"><label><input type="checkbox" name="flightpolar" value="1" onclick="clickPolar(this)" <?php if ((isset($_COOKIE['polar']) && $_COOKIE['polar'] == 'true')) print 'checked'; ?> ><?php echo _("Display polar on map"); ?></label></div></li>
356 356
 		    <?php
357
-			    }
357
+				}
358 358
 			} elseif (isset($globalSources)) {
359
-			    $dispolar = false;
360
-			    foreach ($globalSources as $testsource) {
361
-			        if (isset($globalSources['sourcestats']) && $globalSources['sourcestats'] !== FALSE) $dispolar = true;
362
-			    }
363
-			    if ($dispolar) {
364
-		    ?>
359
+				$dispolar = false;
360
+				foreach ($globalSources as $testsource) {
361
+					if (isset($globalSources['sourcestats']) && $globalSources['sourcestats'] !== FALSE) $dispolar = true;
362
+				}
363
+				if ($dispolar) {
364
+			?>
365 365
 		    <li><div class="checkbox"><label><input type="checkbox" name="flightpolar" value="1" onclick="clickPolar(this)" <?php if ((isset($_COOKIE['polar']) && $_COOKIE['polar'] == 'true')) print 'checked'; ?> ><?php echo _("Display polar on map"); ?></label></div></li>
366 366
 		    <?php
367
-			    }
368
-		        }
369
-		    ?>
367
+				}
368
+				}
369
+			?>
370 370
 <?php
371
-    if (!isset($_COOKIE['MapFormat']) || $_COOKIE['MapFormat'] != '3d') {
371
+	if (!isset($_COOKIE['MapFormat']) || $_COOKIE['MapFormat'] != '3d') {
372 372
 ?>
373 373
 
374 374
 		    <?php
375
-		        if (extension_loaded('gd') && function_exists('gd_info')) {
376
-		    ?>
375
+				if (extension_loaded('gd') && function_exists('gd_info')) {
376
+			?>
377 377
 		    <li><input type="checkbox" name="aircraftcoloraltitude" value="1" onclick="iconColorAltitude(this)" <?php if (isset($_COOKIE['IconColorAltitude']) && $_COOKIE['IconColorAltitude'] == 'true') print 'checked'; ?> ><?php echo _("Aircraft icon color based on altitude"); ?></li>
378 378
 		    <?php 
379 379
 			if (!isset($_COOKIE['IconColorAltitude']) || $_COOKIE['IconColorAltitude'] == 'false') {
380
-		    ?>
380
+			?>
381 381
 		    <li><?php echo _("Aircraft icon color:"); ?>
382 382
 			<input type="color" name="aircraftcolor" id="html5colorpicker" onchange="iconColor(aircraftcolor.value);" value="#<?php if (isset($_COOKIE['IconColor'])) print $_COOKIE['IconColor']; elseif (isset($globalAircraftIconColor)) print $globalAircraftIconColor; else print '1a3151'; ?>">
383 383
 		    </li>
384 384
 		    <?php
385
-			    }
386
-		        }
387
-		    ?>
385
+				}
386
+				}
387
+			?>
388 388
 		    <li><?php echo _("Show airport icon at zoom level:"); ?>
389 389
 			<div class="range">
390 390
 			    <input type="range" min="0" max="19" step="1" name="airportzoom" onchange="range.value=value;airportDisplayZoom(airportzoom.value);" value="<?php if (isset($_COOKIE['AirportZoom'])) print $_COOKIE['AirportZoom']; elseif (isset($globalAirportZoom)) print $globalAirportZoom; else print '7'; ?>">
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
 			</div>
393 393
 		    </li>
394 394
 <?php
395
-    }
395
+	}
396 396
 ?>
397 397
 		    <li><?php echo _("Distance unit:"); ?>
398 398
 			<select class="selectpicker" onchange="unitdistance(this);">
@@ -425,16 +425,16 @@  discard block
 block discarded – undo
425 425
 		    <ul>
426 426
 		    <?php
427 427
 			if (((isset($globalVATSIM) && $globalVATSIM) || isset($globalIVAO) && $globalIVAO || isset($globalphpVMS) && $globalphpVMS) && (!isset($globalMapVAchoose) || $globalMapVAchoose)) {
428
-		    ?>
428
+			?>
429 429
 			<?php if (isset($globalVATSIM) && $globalVATSIM) { ?><li><input type="checkbox" name="vatsim" value="1" onclick="clickVATSIM(this)" <?php if ((isset($_COOKIE['ShowVATSIM']) && $_COOKIE['ShowVATSIM'] == 'true') || !isset($_COOKIE['ShowVATSIM'])) print 'checked'; ?> ><?php echo _("Display VATSIM data"); ?></li><?php } ?>
430 430
 			<?php if (isset($globalIVAO) && $globalIVAO) { ?><li><input type="checkbox" name="ivao" value="1" onclick="clickIVAO(this)" <?php if ((isset($_COOKIE['ShowIVAO']) && $_COOKIE['ShowIVAO'] == 'true') || !isset($_COOKIE['ShowIVAO'])) print 'checked'; ?> ><?php echo _("Display IVAO data"); ?></li><?php } ?>
431 431
 			<?php if (isset($globalphpVMS) && $globalphpVMS) { ?><li><input type="checkbox" name="phpvms" value="1" onclick="clickphpVMS(this)" <?php if ((isset($_COOKIE['ShowVMS']) && $_COOKIE['ShowVMS'] == 'true') || !isset($_COOKIE['ShowVMS'])) print 'checked'; ?> ><?php echo _("Display phpVMS data"); ?></li><?php } ?>
432 432
 		    <?php
433 433
 			}
434
-		    ?>
434
+			?>
435 435
 		    <?php
436 436
 			if (!(isset($globalVATSIM) && $globalVATSIM) && !(isset($globalIVAO) && $globalIVAO) && !(isset($globalphpVMS) && $globalphpVMS) && isset($globalSBS1) && $globalSBS1 && isset($globalAPRS) && $globalAPRS && (!isset($globalMapchoose) || $globalMapchoose)) {
437
-		    ?>
437
+			?>
438 438
 			<?php if (isset($globalSBS1) && $globalSBS1) { ?>
439 439
 			    <li><div class="checkbox"><label><input type="checkbox" name="sbs" value="1" onclick="clickSBS1(this)" <?php if ((isset($_COOKIE['ShowSBS1']) && $_COOKIE['ShowSBS1'] == 'true') || !isset($_COOKIE['ShowSBS1'])) print 'checked'; ?> ><?php echo _("Display ADS-B data"); ?></label></div></li>
440 440
 			<?php } ?>
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
 			<?php } ?>
444 444
 		    <?php
445 445
 			}
446
-		    ?>
446
+			?>
447 447
 		    <li><?php echo _("Display airlines:"); ?>
448 448
 		    <br/>
449 449
 			<select class="selectpicker" multiple onchange="airlines(this);" id="display_airlines">
@@ -463,14 +463,14 @@  discard block
 block discarded – undo
463 463
 						echo '<option value="'.$airline['airline_icao'].'">'.$airline_name.'</option>';
464 464
 					}
465 465
 				}
466
-			    ?>
466
+				?>
467 467
 			</select>
468 468
 		    </li>
469 469
 		    <?php
470 470
 			$Spotter = new Spotter();
471 471
 			$allalliancenames = $Spotter->getAllAllianceNames();
472 472
 			if (!empty($allalliancenames)) {
473
-		    ?>
473
+			?>
474 474
 		    <li><?php echo _("Display alliance:"); ?>
475 475
 		    <br/>
476 476
 			<select class="selectpicker" onchange="alliance(this);" id="display_alliance">
@@ -484,15 +484,15 @@  discard block
 block discarded – undo
484 484
 						echo '<option value="'.$alliance_name.'">'.$alliance_name.'</option>';
485 485
 					}
486 486
 				}
487
-			    ?>
487
+				?>
488 488
 			</select>
489 489
 		    </li>
490 490
 		    <?php
491 491
 			}
492
-		    ?>
492
+			?>
493 493
 		    <?php
494 494
 			if (isset($globalAPRS) && $globalAPRS) {
495
-		    ?>
495
+			?>
496 496
 		    <li><?php echo _("Display APRS sources name:"); ?>
497 497
 			<select class="selectpicker" multiple onchange="sources(this);">
498 498
 			    <?php
@@ -504,15 +504,15 @@  discard block
 block discarded – undo
504 504
 						echo '<option value="'.$source['source_name'].'">'.$source['source_name'].'</option>';
505 505
 					}
506 506
 				}
507
-			    ?>
507
+				?>
508 508
 			</select>
509 509
 		    </li>
510 510
 		    <?php
511 511
 			}
512
-		    ?>
512
+			?>
513 513
 		    <?php
514 514
 			if (!(isset($globalVATSIM) && $globalVATSIM) && !(isset($globalIVAO) && $globalIVAO) && !(isset($globalphpVMS) && $globalphpVMS)) {
515
-		    ?>
515
+			?>
516 516
 		    <li><?php echo _("Display airlines of type:"); ?><br/>
517 517
 			<select class="selectpicker" onchange="airlinestype(this);">
518 518
 			    <option value="all"<?php if (!isset($_COOKIE['filter_airlinestype']) || $_COOKIE['filter_airlinestype'] == 'all' || $_COOKIE['filter_airlinestype'] == '') echo ' selected'; ?>><?php echo _("All"); ?></option>
@@ -523,7 +523,7 @@  discard block
 block discarded – undo
523 523
 		    </li>
524 524
 		    <?php
525 525
 			}
526
-		    ?>
526
+			?>
527 527
 		    <li>
528 528
 			<?php echo _("Display flight with ident:"); ?>
529 529
 			<input type="text" name="identfilter" onchange="identfilter();" id="identfilter" value="<?php if (isset($_COOKIE['filter_ident'])) print $_COOKIE['filter_ident']; ?>" />
@@ -536,7 +536,7 @@  discard block
 block discarded – undo
536 536
 	    </form>
537 537
     	</div>
538 538
 <?php
539
-    if (isset($globalMapSatellites) && $globalMapSatellites && isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d') {
539
+	if (isset($globalMapSatellites) && $globalMapSatellites && isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d') {
540 540
 ?>
541 541
         <div class="sidebar-pane" id="satellites">
542 542
 	    <h1 class="sidebar-header"><?php echo _("Satellites"); ?><span class="sidebar-close"><i class="fa fa-caret-left"></i></span></h1>
@@ -576,14 +576,14 @@  discard block
 block discarded – undo
576 576
 						print '<option value="'.$type['tle_type'].'">'.$type_name.'</option>';
577 577
 					}
578 578
 				}
579
-			    ?>
579
+				?>
580 580
 			</select>
581 581
 		    </li>
582 582
 		</ul>
583 583
 	    </form>
584 584
 	</div>
585 585
 <?php
586
-    }
586
+	}
587 587
 ?>
588 588
     </div>
589 589
 </div>
Please login to merge, or discard this patch.
getImages.php 2 patches
Indentation   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -4,31 +4,31 @@  discard block
 block discarded – undo
4 4
 	$hex = str_replace("#", "", $hex);
5 5
 	$color = array();
6 6
 	if (strlen($hex) == 3) {
7
-	    $color['r'] = hexdec(substr($hex, 0, 1) . substr($hex,0,1));
8
-	    $color['g'] = hexdec(substr($hex, 1, 1) . substr($hex,1,1));
9
-	    $color['b'] = hexdec(substr($hex, 2, 1) . substr($hex,2,1));
7
+		$color['r'] = hexdec(substr($hex, 0, 1) . substr($hex,0,1));
8
+		$color['g'] = hexdec(substr($hex, 1, 1) . substr($hex,1,1));
9
+		$color['b'] = hexdec(substr($hex, 2, 1) . substr($hex,2,1));
10 10
 	} else if (strlen($hex) == 6) {
11
-	    $color['r'] = hexdec(substr($hex, 0, 2));
12
-	    $color['g'] = hexdec(substr($hex, 2, 2));
13
-	    $color['b'] = hexdec(substr($hex, 4, 2));
11
+		$color['r'] = hexdec(substr($hex, 0, 2));
12
+		$color['g'] = hexdec(substr($hex, 2, 2));
13
+		$color['b'] = hexdec(substr($hex, 4, 2));
14 14
 	}
15 15
 	return $color;
16 16
 }
17 17
 
18 18
 
19 19
 if (!isset($_GET['color']) || $_GET['color'] == '' || !preg_match('/^([a-fA-F0-9]){3}(([a-fA-F0-9]){3})?\b/',$_GET['color'])) { 
20
-    exit(0);
20
+	exit(0);
21 21
 }
22 22
 $color = $_GET['color'];
23 23
 if (!isset($_GET['filename']) || !preg_match('/^[a-z0-9-_]+\.png$/', strtolower($_GET['filename']))) {
24
-    echo "Incorrect filename";
25
-    exit(0);
24
+	echo "Incorrect filename";
25
+	exit(0);
26 26
 }
27 27
 $filename = $_GET['filename'];
28 28
 if (file_exists(dirname(__FILE__).DIRECTORY_SEPARATOR.'cache'.DIRECTORY_SEPARATOR.$color.'-'.$filename)) {
29
-    header('Content-type: image/png');
30
-    readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'cache'.DIRECTORY_SEPARATOR.$color.'-'.$filename);
31
-    exit(0);
29
+	header('Content-type: image/png');
30
+	readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'cache'.DIRECTORY_SEPARATOR.$color.'-'.$filename);
31
+	exit(0);
32 32
 }
33 33
 if (isset($_GET['tracker'])) {
34 34
 	$original = dirname(__FILE__).DIRECTORY_SEPARATOR.'images'.DIRECTORY_SEPARATOR.'vehicules'.DIRECTORY_SEPARATOR.$filename;
@@ -38,66 +38,66 @@  discard block
 block discarded – undo
38 38
 	$original = dirname(__FILE__).DIRECTORY_SEPARATOR.'images'.DIRECTORY_SEPARATOR.'aircrafts'.DIRECTORY_SEPARATOR.'new'.DIRECTORY_SEPARATOR.$filename;
39 39
 }
40 40
 if (!file_exists($original)) {
41
-    echo "File not found";
41
+	echo "File not found";
42 42
 }
43 43
 
44 44
 if (extension_loaded('gd') && function_exists('gd_info')) {
45
-    $image = imagecreatefrompng($original);
46
-    $index = imagecolorexact($image,26,49,81);
47
-    if ($index < 0) {
45
+	$image = imagecreatefrompng($original);
46
+	$index = imagecolorexact($image,26,49,81);
47
+	if ($index < 0) {
48 48
 	$index = imagecolorexact($image,25,49,79);
49
-    }
50
-    if ($index < 0) {
49
+	}
50
+	if ($index < 0) {
51 51
 	$index = imagecolorexact($image,0,0,0);
52
-    }
53
-    $c = hexToRGB($color);
54
-    imagecolorset($image,$index,$c['r'],$c['g'],$c['b']);
52
+	}
53
+	$c = hexToRGB($color);
54
+	imagecolorset($image,$index,$c['r'],$c['g'],$c['b']);
55 55
  /*
56 56
     $ig = imagecolorat($image, 0, 0);
57 57
     imagecolortransparent($image, $ig);
58 58
    */
59 59
 
60
-    header('Content-type: image/png');
61
-    if (isset($_GET['resize']) && function_exists('imagecopyresampled')) {
60
+	header('Content-type: image/png');
61
+	if (isset($_GET['resize']) && function_exists('imagecopyresampled')) {
62 62
 	$resize = filter_input(INPUT_GET,'resize',FILTER_SANITIZE_NUMBER_INT);
63 63
 	$newimg = imagecreatetruecolor($resize,$resize);
64
-        imagealphablending($newimg, false);
64
+		imagealphablending($newimg, false);
65 65
 	imagesavealpha($newimg, true);
66 66
 	imagecopyresampled($newimg,$image,0,0,0,0,15,15,imagesx($image),imagesy($image));
67 67
 	if (isset($_GET['heading'])) {
68
-    	    $heading = filter_input(INPUT_GET,'heading',FILTER_SANITIZE_NUMBER_INT);
69
-    	    $rotation = imagerotate($newimg,$heading,imageColorAllocateAlpha($newimg,0,0,0,127));
70
-    	    imagealphablending($rotation, false);
71
-	    imagesavealpha($rotation, true);
72
-    	    imagepng($rotation);
73
-    	    imagedestroy($newimg);
74
-    	    imagedestroy($image);
75
-    	    imagedestroy($rotation);
68
+			$heading = filter_input(INPUT_GET,'heading',FILTER_SANITIZE_NUMBER_INT);
69
+			$rotation = imagerotate($newimg,$heading,imageColorAllocateAlpha($newimg,0,0,0,127));
70
+			imagealphablending($rotation, false);
71
+		imagesavealpha($rotation, true);
72
+			imagepng($rotation);
73
+			imagedestroy($newimg);
74
+			imagedestroy($image);
75
+			imagedestroy($rotation);
76 76
 	
77 77
 	} else {
78
-    	    imagepng($newimg);
79
-    	    imagedestroy($newimg);
80
-    	    imagedestroy($image);
81
-        }
82
-    } else {
78
+			imagepng($newimg);
79
+			imagedestroy($newimg);
80
+			imagedestroy($image);
81
+		}
82
+	} else {
83 83
 	imagealphablending($image, false);
84
-        imagesavealpha($image, true);
84
+		imagesavealpha($image, true);
85 85
 	imagepng($image);
86 86
 	imagepng($image);
87 87
 	if (is_writable('cache')) {
88
-    	    imagepng($image,dirname(__FILE__).DIRECTORY_SEPARATOR.'cache/'.$color.'-'.$filename);
88
+			imagepng($image,dirname(__FILE__).DIRECTORY_SEPARATOR.'cache/'.$color.'-'.$filename);
89
+	}
90
+		imagedestroy($image);
89 91
 	}
90
-        imagedestroy($image);
91
-    }
92 92
 } else {
93
-    header('Content-type: image/png');
94
-    if (isset($_GET['tracker'])) {
95
-        readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/vehicules/'.$filename);
96
-    } elseif (isset($_GET['marine'])) {
97
-        readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/vehicules/'.$filename);
98
-    } else {
99
-        if ($color == 'FF0000') readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/aircrafts/selected/'.$filename);
93
+	header('Content-type: image/png');
94
+	if (isset($_GET['tracker'])) {
95
+		readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/vehicules/'.$filename);
96
+	} elseif (isset($_GET['marine'])) {
97
+		readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/vehicules/'.$filename);
98
+	} else {
99
+		if ($color == 'FF0000') readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/aircrafts/selected/'.$filename);
100 100
 	else readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/aircrafts/'.$filename);
101
-    }
101
+	}
102 102
 }
103 103
 ?>
104 104
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,8 +96,11 @@
 block discarded – undo
96 96
     } elseif (isset($_GET['marine'])) {
97 97
         readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/vehicules/'.$filename);
98 98
     } else {
99
-        if ($color == 'FF0000') readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/aircrafts/selected/'.$filename);
100
-	else readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/aircrafts/'.$filename);
99
+        if ($color == 'FF0000') {
100
+        	readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/aircrafts/selected/'.$filename);
101
+        } else {
102
+		readfile(dirname(__FILE__).DIRECTORY_SEPARATOR.'images/aircrafts/'.$filename);
103
+	}
101 104
     }
102 105
 }
103 106
 ?>
104 107
\ No newline at end of file
Please login to merge, or discard this patch.
live-geojson.php 3 patches
Indentation   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -4,23 +4,23 @@  discard block
 block discarded – undo
4 4
 $tracker = false;
5 5
 $marine = false;
6 6
 if (isset($_GET['tracker'])) {
7
-    $tracker = true;
7
+	$tracker = true;
8 8
 }
9 9
 if (isset($_GET['marine'])) {
10
-    $marine = true;
10
+	$marine = true;
11 11
 }
12 12
 if ($tracker) {
13
-    require_once('require/class.Tracker.php');
14
-    require_once('require/class.TrackerLive.php');
15
-    //require_once('require/class.TrackerArchive.php');
13
+	require_once('require/class.Tracker.php');
14
+	require_once('require/class.TrackerLive.php');
15
+	//require_once('require/class.TrackerArchive.php');
16 16
 } elseif ($marine) {
17
-    require_once('require/class.Marine.php');
18
-    require_once('require/class.MarineLive.php');
19
-    //require_once('require/class.MarineArchive.php');
17
+	require_once('require/class.Marine.php');
18
+	require_once('require/class.MarineLive.php');
19
+	//require_once('require/class.MarineArchive.php');
20 20
 } else {
21
-    require_once('require/class.Spotter.php');
22
-    require_once('require/class.SpotterLive.php');
23
-    require_once('require/class.SpotterArchive.php');
21
+	require_once('require/class.Spotter.php');
22
+	require_once('require/class.SpotterLive.php');
23
+	require_once('require/class.SpotterArchive.php');
24 24
 }
25 25
 
26 26
 $begintime = microtime(true);
@@ -40,10 +40,10 @@  discard block
 block discarded – undo
40 40
 $Common = new Common();
41 41
 
42 42
 if (isset($_GET['download'])) {
43
-    if ($_GET['download'] == "true")
44
-    {
43
+	if ($_GET['download'] == "true")
44
+	{
45 45
 	header('Content-disposition: attachment; filename="flightairmap.json"');
46
-    }
46
+	}
47 47
 }
48 48
 header('Content-Type: text/javascript');
49 49
 
@@ -488,8 +488,8 @@  discard block
 block discarded – undo
488 488
 				
489 489
 				if ((isset($_COOKIE['flightpath']) && $_COOKIE['flightpath'] == 'true') 
490 490
 				|| (!isset($_COOKIE['flightpath']) 
491
-				    && (!isset($globalMapHistory) || $globalMapHistory || $allhistory)
492
-				    || (isset($history) && $history != '' && $history != 'NA' && ($history == $spotter_item['ident'] || $history == $spotter_item['flightaware_id']))) 
491
+					&& (!isset($globalMapHistory) || $globalMapHistory || $allhistory)
492
+					|| (isset($history) && $history != '' && $history != 'NA' && ($history == $spotter_item['ident'] || $history == $spotter_item['flightaware_id']))) 
493 493
 				|| (isset($history) && $history == '' && isset($_GET['flightaware_id']) && $_GET['flightaware_id'] == $spotter_item['flightaware_id'])) {
494 494
 					if ($tracker) {
495 495
 						$spotter_history_array = $TrackerLive->getAllLiveTrackerDataById($spotter_item['famtrackid']);
@@ -502,19 +502,19 @@  discard block
 block discarded – undo
502 502
 							$spotter_history_array = $SpotterLive->getAllLiveSpotterDataById($spotter_item['flightaware_id']);
503 503
 						}
504 504
 					}
505
-                            	$d = false;
505
+								$d = false;
506 506
 				foreach ($spotter_history_array as $key => $spotter_history)
507 507
 				{
508 508
 					if (isset($spotter_history['altitude'])) {
509 509
 						$alt = round($spotter_history['altitude']/10)*10;
510 510
 						if (!isset($prev_alt) || $prev_alt != $alt) {
511
-						    if (isset($prev_alt)) {
511
+							if (isset($prev_alt)) {
512 512
 							$output_history .= '['.$spotter_history['longitude'].', '.$spotter_history['latitude'].', '.$spotter_history['altitude'].']';
513 513
 							$output_history .= ']}},';
514 514
 							$output .= $output_history;
515
-						    }
516
-						    if ($compress) $output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history","a": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
517
-						    else $output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history","altitude": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
515
+							}
516
+							if ($compress) $output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history","a": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
517
+							else $output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history","altitude": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
518 518
 						}
519 519
 						$output_history .= '[';
520 520
 						$output_history .=  $spotter_history['longitude'].', ';
@@ -532,38 +532,38 @@  discard block
 block discarded – undo
532 532
 						$output_history .=  $spotter_history['latitude'];
533 533
 						$output_history .= '],';
534 534
 					}
535
-				    //}
535
+					//}
536 536
 				}
537 537
 				if (isset($output_history)) {
538
-				    $output_history  = substr($output_history, 0, -1);
539
-				    $output_history .= ']}},';
540
-				    $output .= $output_history;
541
-				    unset($prev_alt);
542
-				    unset($output_history);
538
+					$output_history  = substr($output_history, 0, -1);
539
+					$output_history .= ']}},';
540
+					$output .= $output_history;
541
+					unset($prev_alt);
542
+					unset($output_history);
543 543
 				}
544 544
 				}
545 545
 				
546 546
 				if (isset($history) && $history == $spotter_item['ident'] && isset($spotter_item['departure_airport']) && $spotter_item['departure_airport'] != 'NA' && isset($spotter_item['arrival_airport']) && $spotter_item['arrival_airport'] != 'NA' && ((isset($_COOKIE['MapRoute']) && $_COOKIE['MapRoute'] == "true") || (!isset($_COOKIE['MapRoute']) && (!isset($globalMapRoute) || (isset($globalMapRoute) && $globalMapRoute))))) {
547
-				    $output_air = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "route"},"geometry": {"type": "LineString","coordinates": [';
548
-				    if (isset($spotter_item['departure_airport_latitude'])) {
547
+					$output_air = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "route"},"geometry": {"type": "LineString","coordinates": [';
548
+					if (isset($spotter_item['departure_airport_latitude'])) {
549 549
 					$output_air .= '['.$spotter_item['departure_airport_longitude'].','.$spotter_item['departure_airport_latitude'].'],';
550
-				    } elseif (isset($spotter_item['departure_airport']) && $spotter_item['departure_airport'] != 'NA') {
550
+					} elseif (isset($spotter_item['departure_airport']) && $spotter_item['departure_airport'] != 'NA') {
551 551
 					$dairport = $Spotter->getAllAirportInfo($spotter_item['departure_airport']);
552 552
 					if (isset($dairport[0]['latitude'])) {
553
-					    $output_air .= '['.$dairport[0]['longitude'].','.$dairport[0]['latitude'].'],';
553
+						$output_air .= '['.$dairport[0]['longitude'].','.$dairport[0]['latitude'].'],';
554 554
 					}
555
-				    }
556
-				    if (isset($spotter_item['arrival_airport_latitude'])) {
555
+					}
556
+					if (isset($spotter_item['arrival_airport_latitude'])) {
557 557
 					$output_air .= '['.$spotter_item['arrival_airport_longitude'].','.$spotter_item['arrival_airport_latitude'].']';
558
-				    } elseif (isset($spotter_item['arrival_airport']) && $spotter_item['arrival_airport'] != 'NA') {
558
+					} elseif (isset($spotter_item['arrival_airport']) && $spotter_item['arrival_airport'] != 'NA') {
559 559
 					$aairport = $Spotter->getAllAirportInfo($spotter_item['arrival_airport']);
560 560
 					if (isset($aairport[0]['latitude'])) {
561
-					    $output_air .= '['.$aairport[0]['longitude'].','.$aairport[0]['latitude'].']';
561
+						$output_air .= '['.$aairport[0]['longitude'].','.$aairport[0]['latitude'].']';
562 562
 					}
563
-				    }
564
-				    $output_air .= ']}},';
565
-				    $output .= $output_air;
566
-				    unset($output_air);
563
+					}
564
+					$output_air .= ']}},';
565
+					$output .= $output_air;
566
+					unset($output_air);
567 567
 				}
568 568
 			}
569 569
 			$output  = substr($output, 0, -1);
Please login to merge, or discard this patch.
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -54,23 +54,23 @@  discard block
 block discarded – undo
54 54
 $min = true;
55 55
 $allhistory = false;
56 56
 $filter['source'] = array();
57
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['filter_ShowVATSIM']) && $_COOKIE['filter_ShowVATSIM'] == 'true') $filter['source'] = array_merge($filter['source'],array('vatsimtxt'));
58
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['filter_ShowIVAO']) && $_COOKIE['filter_ShowIVAO'] == 'true') $filter['source'] = array_merge($filter['source'],array('whazzup'));
59
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['filter_ShowVMS']) && $_COOKIE['filter_ShowVMS'] == 'true') $filter['source'] = array_merge($filter['source'],array('phpvmacars'));
60
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['filter_ShowSBS1']) && $_COOKIE['filter_ShowSBS1'] == 'true') $filter['source'] = array_merge($filter['source'],array('sbs'));
61
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['filter_ShowAPRS']) && $_COOKIE['filter_ShowAPRS'] == 'true') $filter['source'] = array_merge($filter['source'],array('aprs'));
62
-if (isset($_COOKIE['filter_ident']) && $_COOKIE['filter_ident'] != '') $filter['ident'] = filter_var($_COOKIE['filter_ident'],FILTER_SANITIZE_STRING);
63
-if (isset($_COOKIE['filter_Airlines']) && $_COOKIE['filter_Airlines'] != '') $filter['airlines'] = filter_var_array(explode(',',$_COOKIE['filter_Airlines']),FILTER_SANITIZE_STRING);
64
-if (isset($_COOKIE['filter_Sources']) && $_COOKIE['filter_Sources'] != '') $filter['source_aprs'] = filter_var_array(explode(',',$_COOKIE['filter_Sources']),FILTER_SANITIZE_STRING);
65
-if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] != 'all') $filter['airlinestype'] = filter_var($_COOKIE['filter_airlinestype'],FILTER_SANITIZE_STRING);
66
-if (isset($_COOKIE['filter_alliance']) && $_COOKIE['filter_alliance'] != 'all') $filter['alliance'] = filter_var($_COOKIE['filter_alliance'],FILTER_SANITIZE_STRING);
57
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['filter_ShowVATSIM']) && $_COOKIE['filter_ShowVATSIM'] == 'true') $filter['source'] = array_merge($filter['source'], array('vatsimtxt'));
58
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['filter_ShowIVAO']) && $_COOKIE['filter_ShowIVAO'] == 'true') $filter['source'] = array_merge($filter['source'], array('whazzup'));
59
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['filter_ShowVMS']) && $_COOKIE['filter_ShowVMS'] == 'true') $filter['source'] = array_merge($filter['source'], array('phpvmacars'));
60
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['filter_ShowSBS1']) && $_COOKIE['filter_ShowSBS1'] == 'true') $filter['source'] = array_merge($filter['source'], array('sbs'));
61
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['filter_ShowAPRS']) && $_COOKIE['filter_ShowAPRS'] == 'true') $filter['source'] = array_merge($filter['source'], array('aprs'));
62
+if (isset($_COOKIE['filter_ident']) && $_COOKIE['filter_ident'] != '') $filter['ident'] = filter_var($_COOKIE['filter_ident'], FILTER_SANITIZE_STRING);
63
+if (isset($_COOKIE['filter_Airlines']) && $_COOKIE['filter_Airlines'] != '') $filter['airlines'] = filter_var_array(explode(',', $_COOKIE['filter_Airlines']), FILTER_SANITIZE_STRING);
64
+if (isset($_COOKIE['filter_Sources']) && $_COOKIE['filter_Sources'] != '') $filter['source_aprs'] = filter_var_array(explode(',', $_COOKIE['filter_Sources']), FILTER_SANITIZE_STRING);
65
+if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] != 'all') $filter['airlinestype'] = filter_var($_COOKIE['filter_airlinestype'], FILTER_SANITIZE_STRING);
66
+if (isset($_COOKIE['filter_alliance']) && $_COOKIE['filter_alliance'] != 'all') $filter['alliance'] = filter_var($_COOKIE['filter_alliance'], FILTER_SANITIZE_STRING);
67 67
 
68 68
 if (isset($globalMapPopup) && !$globalMapPopup && !(isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true')) {
69 69
 	$min = true;
70 70
 } else $min = false;
71 71
 
72 72
 if (isset($_GET['ident'])) {
73
-	$ident = filter_input(INPUT_GET,'ident',FILTER_SANITIZE_STRING);
73
+	$ident = filter_input(INPUT_GET, 'ident', FILTER_SANITIZE_STRING);
74 74
 	if ($tracker) {
75 75
 		$spotter_array = $TrackerLive->getLastLiveTrackerDataByIdent($ident);
76 76
 	} elseif ($marine) {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 	}
85 85
 	$allhistory = true;
86 86
 } elseif (isset($_GET['flightaware_id'])) {
87
-	$flightaware_id = filter_input(INPUT_GET,'flightaware_id',FILTER_SANITIZE_STRING);
87
+	$flightaware_id = filter_input(INPUT_GET, 'flightaware_id', FILTER_SANITIZE_STRING);
88 88
 	$spotter_array = $SpotterLive->getLastLiveSpotterDataById($flightaware_id);
89 89
 	if (empty($spotter_array)) {
90 90
 		$from_archive = true;
@@ -92,22 +92,22 @@  discard block
 block discarded – undo
92 92
 	}
93 93
 	$allhistory = true;
94 94
 } elseif (isset($_GET['famtrack_id'])) {
95
-	$famtrack_id = filter_input(INPUT_GET,'famtrack_id',FILTER_SANITIZE_STRING);
95
+	$famtrack_id = filter_input(INPUT_GET, 'famtrack_id', FILTER_SANITIZE_STRING);
96 96
 	$spotter_array = $TrackerLive->getLastLiveTrackerDataById($famtrack_id);
97 97
 	$allhistory = true;
98 98
 } elseif (isset($_GET['fammarine_id'])) {
99
-	$fammarine_id = filter_input(INPUT_GET,'fammarine_id',FILTER_SANITIZE_STRING);
99
+	$fammarine_id = filter_input(INPUT_GET, 'fammarine_id', FILTER_SANITIZE_STRING);
100 100
 	$spotter_array = $MarineLive->getLastLiveMarineDataById($fammarine_id);
101 101
 	$allhistory = true;
102 102
 } elseif (isset($_GET['coord']) && (!isset($globalMapPopup) || $globalMapPopup || (isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true'))) {
103 103
 //if (isset($_GET['coord'])) {
104
-	$coord = explode(',',$_GET['coord']);
104
+	$coord = explode(',', $_GET['coord']);
105 105
 	if ($tracker) {
106
-		$spotter_array = $TrackerLive->getLiveTrackerDatabyCoord($coord,$filter);
106
+		$spotter_array = $TrackerLive->getLiveTrackerDatabyCoord($coord, $filter);
107 107
 	} elseif ($marine) {
108
-		$spotter_array = $MarineLive->getLiveMarineDatabyCoord($coord,$filter);
108
+		$spotter_array = $MarineLive->getLiveMarineDatabyCoord($coord, $filter);
109 109
 	} else {
110
-		$spotter_array = $SpotterLive->getLiveSpotterDatabyCoord($coord,$filter);
110
+		$spotter_array = $SpotterLive->getLiveSpotterDatabyCoord($coord, $filter);
111 111
 	}
112 112
 
113 113
 #} elseif (isset($globalMapPopup) && !$globalMapPopup) {
@@ -115,12 +115,12 @@  discard block
 block discarded – undo
115 115
 	$from_archive = true;
116 116
 //	$begindate = filter_input(INPUT_GET,'begindate',FILTER_VALIDATE_REGEXP,array("options"=>array("regexp"=>'~^\d{4}/\d{2}/\d{2}$~')));
117 117
 //	$enddate = filter_input(INPUT_GET,'enddate',FILTER_VALIDATE_REGEXP,array("options"=>array("regexp"=>'~^\d{4}/\d{2}/\d{2}$~')));
118
-	$begindate = filter_input(INPUT_GET,'begindate',FILTER_SANITIZE_NUMBER_INT);
119
-	$enddate = filter_input(INPUT_GET,'enddate',FILTER_SANITIZE_NUMBER_INT);
120
-	$archivespeed = filter_input(INPUT_GET,'speed',FILTER_SANITIZE_NUMBER_INT);
121
-	$begindate = date('Y-m-d H:i:s',$begindate);
122
-	$enddate = date('Y-m-d H:i:s',$enddate);
123
-	$spotter_array = $SpotterArchive->getMinLiveSpotterData($begindate,$enddate,$filter);
118
+	$begindate = filter_input(INPUT_GET, 'begindate', FILTER_SANITIZE_NUMBER_INT);
119
+	$enddate = filter_input(INPUT_GET, 'enddate', FILTER_SANITIZE_NUMBER_INT);
120
+	$archivespeed = filter_input(INPUT_GET, 'speed', FILTER_SANITIZE_NUMBER_INT);
121
+	$begindate = date('Y-m-d H:i:s', $begindate);
122
+	$enddate = date('Y-m-d H:i:s', $enddate);
123
+	$spotter_array = $SpotterArchive->getMinLiveSpotterData($begindate, $enddate, $filter);
124 124
 } elseif ($min) {
125 125
 	if ($tracker) {
126 126
 		$spotter_array = $TrackerLive->getMinLiveTrackerData($filter);
@@ -132,11 +132,11 @@  discard block
 block discarded – undo
132 132
 #	$min = true;
133 133
 } else {
134 134
 	if ($tracker) {
135
-		$spotter_array = $TrackerLive->getLiveTrackerData('','',$filter);
135
+		$spotter_array = $TrackerLive->getLiveTrackerData('', '', $filter);
136 136
 	} elseif ($marine) {
137
-		$spotter_array = $marineLive->getLiveMarineData('','',$filter);
137
+		$spotter_array = $marineLive->getLiveMarineData('', '', $filter);
138 138
 	} else {
139
-		$spotter_array = $SpotterLive->getLiveSpotterData('','',$filter);
139
+		$spotter_array = $SpotterLive->getLiveSpotterData('', '', $filter);
140 140
 	}
141 141
 }
142 142
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 	if ($flightcnt == '') $flightcnt = 0;
153 153
 } else $flightcnt = 0;
154 154
 
155
-$sqltime = round(microtime(true)-$begintime,2);
155
+$sqltime = round(microtime(true) - $begintime, 2);
156 156
 
157 157
 if ((!isset($_COOKIE['flightestimation']) && isset($globalMapEstimation) && $globalMapEstimation == FALSE) || (isset($_COOKIE['flightestimation']) && $_COOKIE['flightestimation'] == 'false')) $usenextlatlon = false;
158 158
 else $usenextlatlon = true;
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
 		if (!empty($spotter_array) && is_array($spotter_array))
170 170
 		{
171 171
 			$output .= '"features": [';
172
-			foreach($spotter_array as $spotter_item)
172
+			foreach ($spotter_array as $spotter_item)
173 173
 			{
174 174
 				$j++;
175 175
 				date_default_timezone_set('UTC');
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
 						if (isset($spotter_item['registration'])) $output .= '"registration": "'.$spotter_item['registration'].'",';
235 235
 						if (isset($spotter_item['aircraft_name']) && isset($spotter_item['aircraft_type'])) {
236 236
 							$output .= '"aircraft_name": "'.$spotter_item['aircraft_name'].' ('.$spotter_item['aircraft_type'].')",';
237
-							$output .= '"aircraft_wiki": "http://'.strtolower($globalLanguage).'.wikipedia.org/wiki/'.urlencode(str_replace(' ','_',$spotter_item['aircraft_name'])).'",';
237
+							$output .= '"aircraft_wiki": "http://'.strtolower($globalLanguage).'.wikipedia.org/wiki/'.urlencode(str_replace(' ', '_', $spotter_item['aircraft_name'])).'",';
238 238
 						} elseif (isset($spotter_item['aircraft_type'])) {
239 239
 							$output .= '"aircraft_name": "NA ('.$spotter_item['aircraft_type'].')",';
240 240
 						} elseif (!$min) {
@@ -374,16 +374,16 @@  discard block
 block discarded – undo
374 374
 						else $output .= '"heading": "'.$spotter_item['heading'].'",';
375 375
 						
376 376
 						if (isset($archivespeed)) {
377
-							$nextcoord = $Common->nextcoord($spotter_item['latitude'],$spotter_item['longitude'],$spotter_item['ground_speed'],$spotter_item['heading'],$archivespeed);
377
+							$nextcoord = $Common->nextcoord($spotter_item['latitude'], $spotter_item['longitude'], $spotter_item['ground_speed'], $spotter_item['heading'], $archivespeed);
378 378
 							$output .= '"nextlatlon": ['.$nextcoord['latitude'].','.$nextcoord['longitude'].'],';
379 379
 						} elseif ($usenextlatlon) {
380
-							$nextcoord = $Common->nextcoord($spotter_item['latitude'],$spotter_item['longitude'],$spotter_item['ground_speed'],$spotter_item['heading']);
380
+							$nextcoord = $Common->nextcoord($spotter_item['latitude'], $spotter_item['longitude'], $spotter_item['ground_speed'], $spotter_item['heading']);
381 381
 							$output .= '"nextlatlon": ['.$nextcoord['latitude'].','.$nextcoord['longitude'].'],';
382 382
 						}
383 383
 
384 384
 						if (!$min) $output .= '"image": "'.$image.'",';
385 385
 						if (isset($spotter_item['image_copyright']) && $spotter_item['image_copyright'] != '') {
386
-							$output .= '"image_copyright": "'.str_replace('"',"'",trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'',$spotter_item['image_copyright']))).'",';
386
+							$output .= '"image_copyright": "'.str_replace('"', "'", trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '', $spotter_item['image_copyright']))).'",';
387 387
 						}
388 388
 						if (isset($spotter_item['image_source_website'])) {
389 389
 							$output .= '"image_source_website": "'.urlencode($spotter_item['image_source_website']).'",';
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
 							$output .= '"waypoints": "'.$spotter_item['waypoints'].'",';
406 406
 						}
407 407
 						if (isset($spotter_item['acars'])) {
408
-							$output .= '"acars": "'.trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"), '<br />',$spotter_item['acars']['message'])).'",';
408
+							$output .= '"acars": "'.trim(str_replace(array("\r\n", "\r", "\n", "\\r", "\\n", "\\r\\n"), '<br />', $spotter_item['acars']['message'])).'",';
409 409
 						}
410 410
 						// type when not aircraft ?
411 411
 						if (isset($spotter_item['type'])) {
@@ -483,7 +483,7 @@  discard block
 block discarded – undo
483 483
                 
484 484
 			}
485 485
 */
486
-				$history = filter_input(INPUT_GET,'history',FILTER_SANITIZE_STRING);
486
+				$history = filter_input(INPUT_GET, 'history', FILTER_SANITIZE_STRING);
487 487
 				if ($history == '' && isset($_COOKIE['history'])) $history = $_COOKIE['history'];
488 488
 				
489 489
 				if ((isset($_COOKIE['flightpath']) && $_COOKIE['flightpath'] == 'true') 
@@ -517,9 +517,9 @@  discard block
 block discarded – undo
517 517
 						    else $output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history","altitude": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
518 518
 						}
519 519
 						$output_history .= '[';
520
-						$output_history .=  $spotter_history['longitude'].', ';
521
-						$output_history .=  $spotter_history['latitude'].', ';
522
-						$output_history .=  $spotter_history['altitude']*30.48;
520
+						$output_history .= $spotter_history['longitude'].', ';
521
+						$output_history .= $spotter_history['latitude'].', ';
522
+						$output_history .= $spotter_history['altitude']*30.48;
523 523
 						$output_history .= '],';
524 524
 						$prev_alt = $alt;
525 525
 					} else {
@@ -528,8 +528,8 @@  discard block
 block discarded – undo
528 528
 							else $output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history"},"geometry": {"type": "LineString","coordinates": [';
529 529
 						} else $d = true;
530 530
 						$output_history .= '[';
531
-						$output_history .=  $spotter_history['longitude'].', ';
532
-						$output_history .=  $spotter_history['latitude'];
531
+						$output_history .= $spotter_history['longitude'].', ';
532
+						$output_history .= $spotter_history['latitude'];
533 533
 						$output_history .= '],';
534 534
 					}
535 535
 				    //}
@@ -569,7 +569,7 @@  discard block
 block discarded – undo
569 569
 			$output  = substr($output, 0, -1);
570 570
 			$output .= ']';
571 571
 			$output .= ',"initial_sqltime": "'.$sqltime.'",';
572
-			$output .= '"totaltime": "'.round(microtime(true)-$begintime,2).'",';
572
+			$output .= '"totaltime": "'.round(microtime(true) - $begintime, 2).'",';
573 573
 			if (isset($begindate)) $output .= '"archive_date": "'.$begindate.'",';
574 574
 			$output .= '"fc": "'.$j.'"';
575 575
 		} else {
Please login to merge, or discard this patch.
Braces   +270 added lines, -106 removed lines patch added patch discarded remove patch
@@ -47,27 +47,52 @@  discard block
 block discarded – undo
47 47
 }
48 48
 header('Content-Type: text/javascript');
49 49
 
50
-if (!isset($globalJsonCompress)) $compress = true;
51
-else $compress = $globalJsonCompress;
50
+if (!isset($globalJsonCompress)) {
51
+	$compress = true;
52
+} else {
53
+	$compress = $globalJsonCompress;
54
+}
52 55
 
53 56
 $from_archive = false;
54 57
 $min = true;
55 58
 $allhistory = false;
56 59
 $filter['source'] = array();
57
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['filter_ShowVATSIM']) && $_COOKIE['filter_ShowVATSIM'] == 'true') $filter['source'] = array_merge($filter['source'],array('vatsimtxt'));
58
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['filter_ShowIVAO']) && $_COOKIE['filter_ShowIVAO'] == 'true') $filter['source'] = array_merge($filter['source'],array('whazzup'));
59
-if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['filter_ShowVMS']) && $_COOKIE['filter_ShowVMS'] == 'true') $filter['source'] = array_merge($filter['source'],array('phpvmacars'));
60
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['filter_ShowSBS1']) && $_COOKIE['filter_ShowSBS1'] == 'true') $filter['source'] = array_merge($filter['source'],array('sbs'));
61
-if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['filter_ShowAPRS']) && $_COOKIE['filter_ShowAPRS'] == 'true') $filter['source'] = array_merge($filter['source'],array('aprs'));
62
-if (isset($_COOKIE['filter_ident']) && $_COOKIE['filter_ident'] != '') $filter['ident'] = filter_var($_COOKIE['filter_ident'],FILTER_SANITIZE_STRING);
63
-if (isset($_COOKIE['filter_Airlines']) && $_COOKIE['filter_Airlines'] != '') $filter['airlines'] = filter_var_array(explode(',',$_COOKIE['filter_Airlines']),FILTER_SANITIZE_STRING);
64
-if (isset($_COOKIE['filter_Sources']) && $_COOKIE['filter_Sources'] != '') $filter['source_aprs'] = filter_var_array(explode(',',$_COOKIE['filter_Sources']),FILTER_SANITIZE_STRING);
65
-if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] != 'all') $filter['airlinestype'] = filter_var($_COOKIE['filter_airlinestype'],FILTER_SANITIZE_STRING);
66
-if (isset($_COOKIE['filter_alliance']) && $_COOKIE['filter_alliance'] != 'all') $filter['alliance'] = filter_var($_COOKIE['filter_alliance'],FILTER_SANITIZE_STRING);
60
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalVATSIM) && $globalVATSIM && isset($_COOKIE['filter_ShowVATSIM']) && $_COOKIE['filter_ShowVATSIM'] == 'true') {
61
+	$filter['source'] = array_merge($filter['source'],array('vatsimtxt'));
62
+}
63
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalIVAO) && $globalIVAO && isset($_COOKIE['filter_ShowIVAO']) && $_COOKIE['filter_ShowIVAO'] == 'true') {
64
+	$filter['source'] = array_merge($filter['source'],array('whazzup'));
65
+}
66
+if ((!isset($globalMapVAchoose) || $globalMapVAchoose) && isset($globalphpVMS) && $globalphpVMS && isset($_COOKIE['filter_ShowVMS']) && $_COOKIE['filter_ShowVMS'] == 'true') {
67
+	$filter['source'] = array_merge($filter['source'],array('phpvmacars'));
68
+}
69
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalSBS1) && $globalSBS1 && isset($_COOKIE['filter_ShowSBS1']) && $_COOKIE['filter_ShowSBS1'] == 'true') {
70
+	$filter['source'] = array_merge($filter['source'],array('sbs'));
71
+}
72
+if ((!isset($globalMapchoose) || $globalMapchoose) && isset($globalAPRS) && $globalAPRS && isset($_COOKIE['filter_ShowAPRS']) && $_COOKIE['filter_ShowAPRS'] == 'true') {
73
+	$filter['source'] = array_merge($filter['source'],array('aprs'));
74
+}
75
+if (isset($_COOKIE['filter_ident']) && $_COOKIE['filter_ident'] != '') {
76
+	$filter['ident'] = filter_var($_COOKIE['filter_ident'],FILTER_SANITIZE_STRING);
77
+}
78
+if (isset($_COOKIE['filter_Airlines']) && $_COOKIE['filter_Airlines'] != '') {
79
+	$filter['airlines'] = filter_var_array(explode(',',$_COOKIE['filter_Airlines']),FILTER_SANITIZE_STRING);
80
+}
81
+if (isset($_COOKIE['filter_Sources']) && $_COOKIE['filter_Sources'] != '') {
82
+	$filter['source_aprs'] = filter_var_array(explode(',',$_COOKIE['filter_Sources']),FILTER_SANITIZE_STRING);
83
+}
84
+if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] != 'all') {
85
+	$filter['airlinestype'] = filter_var($_COOKIE['filter_airlinestype'],FILTER_SANITIZE_STRING);
86
+}
87
+if (isset($_COOKIE['filter_alliance']) && $_COOKIE['filter_alliance'] != 'all') {
88
+	$filter['alliance'] = filter_var($_COOKIE['filter_alliance'],FILTER_SANITIZE_STRING);
89
+}
67 90
 
68 91
 if (isset($globalMapPopup) && !$globalMapPopup && !(isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true')) {
69 92
 	$min = true;
70
-} else $min = false;
93
+} else {
94
+	$min = false;
95
+}
71 96
 
72 97
 if (isset($_GET['ident'])) {
73 98
 	$ident = filter_input(INPUT_GET,'ident',FILTER_SANITIZE_STRING);
@@ -149,20 +174,30 @@  discard block
 block discarded – undo
149 174
 	}
150 175
 */
151 176
 	$flightcnt = count($spotter_array);
152
-	if ($flightcnt == '') $flightcnt = 0;
153
-} else $flightcnt = 0;
177
+	if ($flightcnt == '') {
178
+		$flightcnt = 0;
179
+	}
180
+	} else {
181
+	$flightcnt = 0;
182
+}
154 183
 
155 184
 $sqltime = round(microtime(true)-$begintime,2);
156 185
 
157
-if ((!isset($_COOKIE['flightestimation']) && isset($globalMapEstimation) && $globalMapEstimation == FALSE) || (isset($_COOKIE['flightestimation']) && $_COOKIE['flightestimation'] == 'false')) $usenextlatlon = false;
158
-else $usenextlatlon = true;
186
+if ((!isset($_COOKIE['flightestimation']) && isset($globalMapEstimation) && $globalMapEstimation == FALSE) || (isset($_COOKIE['flightestimation']) && $_COOKIE['flightestimation'] == 'false')) {
187
+	$usenextlatlon = false;
188
+} else {
189
+	$usenextlatlon = true;
190
+}
159 191
 $j = 0;
160 192
 $prev_flightaware_id = '';
161 193
 $aircrafts_shadow = array();
162 194
 $output = '{';
163 195
 	$output .= '"type": "FeatureCollection",';
164
-		if ($min) $output .= '"minimal": "true",';
165
-		else $output .= '"minimal": "false",';
196
+		if ($min) {
197
+			$output .= '"minimal": "true",';
198
+		} else {
199
+			$output .= '"minimal": "false",';
200
+		}
166 201
 		$output .= '"fc": "'.$flightcnt.'",';
167 202
 		$output .= '"sqt": "'.$sqltime.'",';
168 203
 
@@ -206,18 +241,29 @@  discard block
 block discarded – undo
206 241
 						}
207 242
 						$output .= '"properties": {';
208 243
 						if (isset($spotter_item['flightaware_id'])) {
209
-							if ($compress) $output .= '"fi": "'.$spotter_item['flightaware_id'].'",';
210
-							else $output .= '"flightaware_id": "'.$spotter_item['flightaware_id'].'",';
244
+							if ($compress) {
245
+								$output .= '"fi": "'.$spotter_item['flightaware_id'].'",';
246
+							} else {
247
+								$output .= '"flightaware_id": "'.$spotter_item['flightaware_id'].'",';
248
+							}
211 249
 						} elseif (isset($spotter_item['famtrackid'])) {
212
-							if ($compress) $output .= '"fti": "'.$spotter_item['famtrackid'].'",';
213
-							else $output .= '"famtrackid": "'.$spotter_item['famtrackid'].'",';
250
+							if ($compress) {
251
+								$output .= '"fti": "'.$spotter_item['famtrackid'].'",';
252
+							} else {
253
+								$output .= '"famtrackid": "'.$spotter_item['famtrackid'].'",';
254
+							}
214 255
 						} elseif (isset($spotter_item['fammarine_id'])) {
215
-							if ($compress) $output .= '"fmi": "'.$spotter_item['fammarine_id'].'",';
216
-							else $output .= '"fammarineid": "'.$spotter_item['fammarine_id'].'",';
256
+							if ($compress) {
257
+								$output .= '"fmi": "'.$spotter_item['fammarine_id'].'",';
258
+							} else {
259
+								$output .= '"fammarineid": "'.$spotter_item['fammarine_id'].'",';
260
+							}
217 261
 						}
218 262
 							$output .= '"fc": "'.$flightcnt.'",';
219 263
 							$output .= '"sqt": "'.$sqltime.'",';
220
-							if (isset($begindate)) $output .= '"archive_date": "'.$begindate.'",';
264
+							if (isset($begindate)) {
265
+								$output .= '"archive_date": "'.$begindate.'",';
266
+							}
221 267
 
222 268
 /*
223 269
 							if ($min) $output .= '"minimal": "true",';
@@ -225,13 +271,21 @@  discard block
 block discarded – undo
225 271
 */
226 272
 							//$output .= '"fc": "'.$spotter_item['nb'].'",';
227 273
 						if (isset($spotter_item['ident']) && $spotter_item['ident'] != '') {
228
-							if ($compress) $output .= '"c": "'.$spotter_item['ident'].'",';
229
-							else $output .= '"callsign": "'.$spotter_item['ident'].'",';
274
+							if ($compress) {
275
+								$output .= '"c": "'.$spotter_item['ident'].'",';
276
+							} else {
277
+								$output .= '"callsign": "'.$spotter_item['ident'].'",';
278
+							}
230 279
 						} else {
231
-							if ($compress) $output .= '"c": "NA",';
232
-							else $output .= '"callsign": "NA",';
280
+							if ($compress) {
281
+								$output .= '"c": "NA",';
282
+							} else {
283
+								$output .= '"callsign": "NA",';
284
+							}
285
+						}
286
+						if (isset($spotter_item['registration'])) {
287
+							$output .= '"registration": "'.$spotter_item['registration'].'",';
233 288
 						}
234
-						if (isset($spotter_item['registration'])) $output .= '"registration": "'.$spotter_item['registration'].'",';
235 289
 						if (isset($spotter_item['aircraft_name']) && isset($spotter_item['aircraft_type'])) {
236 290
 							$output .= '"aircraft_name": "'.$spotter_item['aircraft_name'].' ('.$spotter_item['aircraft_type'].')",';
237 291
 							$output .= '"aircraft_wiki": "http://'.strtolower($globalLanguage).'.wikipedia.org/wiki/'.urlencode(str_replace(' ','_',$spotter_item['aircraft_name'])).'",';
@@ -244,15 +298,21 @@  discard block
 block discarded – undo
244 298
 							$output .= '"aircraft_icao": "'.$spotter_item['aircraft_icao'].'",';
245 299
 						}
246 300
 						if (!isset($spotter_item['aircraft_shadow']) && !$tracker) {
247
-							if (!isset($spotter_item['aircraft_icao']) || $spotter_item['aircraft_icao'] == '') $spotter_item['aircraft_shadow'] = '';
248
-							else {
301
+							if (!isset($spotter_item['aircraft_icao']) || $spotter_item['aircraft_icao'] == '') {
302
+								$spotter_item['aircraft_shadow'] = '';
303
+							} else {
249 304
 								$aircraft_icao = $spotter_item['aircraft_icao'];
250
-								if (isset($aircrafts_shadow[$aircraft_icao])) $spotter_item['aircraft_shadow'] = $aircrafts_shadow[$aircraft_icao];
251
-								else {
305
+								if (isset($aircrafts_shadow[$aircraft_icao])) {
306
+									$spotter_item['aircraft_shadow'] = $aircrafts_shadow[$aircraft_icao];
307
+								} else {
252 308
 									$aircraft_info = $Spotter->getAllAircraftInfo($spotter_item['aircraft_icao']);
253
-									if (count($aircraft_info) > 0) $spotter_item['aircraft_shadow'] = $aircraft_info[0]['aircraft_shadow'];
254
-									elseif (isset($spotter_item['format_source']) && $spotter_item['format_source'] == 'aprs') $spotter_item['aircraft_shadow'] = 'PA18.png';
255
-									else $spotter_item['aircraft_shadow'] = '';
309
+									if (count($aircraft_info) > 0) {
310
+										$spotter_item['aircraft_shadow'] = $aircraft_info[0]['aircraft_shadow'];
311
+									} elseif (isset($spotter_item['format_source']) && $spotter_item['format_source'] == 'aprs') {
312
+										$spotter_item['aircraft_shadow'] = 'PA18.png';
313
+									} else {
314
+										$spotter_item['aircraft_shadow'] = '';
315
+									}
256 316
 									$aircrafts_shadow[$aircraft_icao] = $spotter_item['aircraft_shadow'];
257 317
 								}
258 318
 							}
@@ -260,73 +320,139 @@  discard block
 block discarded – undo
260 320
 						if (!isset($spotter_item['aircraft_shadow']) || $spotter_item['aircraft_shadow'] == '') {
261 321
 							if ($tracker) {
262 322
 								if (isset($spotter_item['type']) && $spotter_item['type'] == 'Ambulance') {
263
-									if ($compress) $output .= '"as": "ambulance.png",';
264
-									else $output .= '"aircraft_shadow": "ambulance.png",';
323
+									if ($compress) {
324
+										$output .= '"as": "ambulance.png",';
325
+									} else {
326
+										$output .= '"aircraft_shadow": "ambulance.png",';
327
+									}
265 328
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Police') {
266
-									if ($compress) $output .= '"as": "police.png",';
267
-									else $output .= '"aircraft_shadow": "police.png",';
329
+									if ($compress) {
330
+										$output .= '"as": "police.png",';
331
+									} else {
332
+										$output .= '"aircraft_shadow": "police.png",';
333
+									}
268 334
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Yacht (Sail)') {
269
-									if ($compress) $output .= '"as": "ship.png",';
270
-									else $output .= '"aircraft_shadow": "ship.png",';
335
+									if ($compress) {
336
+										$output .= '"as": "ship.png",';
337
+									} else {
338
+										$output .= '"aircraft_shadow": "ship.png",';
339
+									}
271 340
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Ship (Power Boat)') {
272
-									if ($compress) $output .= '"as": "ship.png",';
273
-									else $output .= '"aircraft_shadow": "ship.png",';
341
+									if ($compress) {
342
+										$output .= '"as": "ship.png",';
343
+									} else {
344
+										$output .= '"aircraft_shadow": "ship.png",';
345
+									}
274 346
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Shuttle') {
275
-									if ($compress) $output .= '"as": "ship.png",';
276
-									else $output .= '"aircraft_shadow": "ship.png",';
347
+									if ($compress) {
348
+										$output .= '"as": "ship.png",';
349
+									} else {
350
+										$output .= '"aircraft_shadow": "ship.png",';
351
+									}
277 352
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Truck') {
278
-									if ($compress) $output .= '"as": "truck.png",';
279
-									else $output .= '"aircraft_shadow": "truck.png",';
353
+									if ($compress) {
354
+										$output .= '"as": "truck.png",';
355
+									} else {
356
+										$output .= '"aircraft_shadow": "truck.png",';
357
+									}
280 358
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Truck (18 Wheeler)') {
281
-									if ($compress) $output .= '"as": "truck.png",';
282
-									else $output .= '"aircraft_shadow": "truck.png",';
359
+									if ($compress) {
360
+										$output .= '"as": "truck.png",';
361
+									} else {
362
+										$output .= '"aircraft_shadow": "truck.png",';
363
+									}
283 364
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Aircraft (small)') {
284
-									if ($compress) $output .= '"as": "aircraft.png",';
285
-									else $output .= '"aircraft_shadow": "aircraft.png",';
365
+									if ($compress) {
366
+										$output .= '"as": "aircraft.png",';
367
+									} else {
368
+										$output .= '"aircraft_shadow": "aircraft.png",';
369
+									}
286 370
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Large Aircraft') {
287
-									if ($compress) $output .= '"as": "aircraft.png",';
288
-									else $output .= '"aircraft_shadow": "aircraft.png",';
371
+									if ($compress) {
372
+										$output .= '"as": "aircraft.png",';
373
+									} else {
374
+										$output .= '"aircraft_shadow": "aircraft.png",';
375
+									}
289 376
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Helicopter') {
290
-									if ($compress) $output .= '"as": "helico.png",';
291
-									else $output .= '"aircraft_shadow": "helico.png",';
377
+									if ($compress) {
378
+										$output .= '"as": "helico.png",';
379
+									} else {
380
+										$output .= '"aircraft_shadow": "helico.png",';
381
+									}
292 382
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Railroad Engine') {
293
-									if ($compress) $output .= '"as": "rail.png",';
294
-									else $output .= '"aircraft_shadow": "rail.png",';
383
+									if ($compress) {
384
+										$output .= '"as": "rail.png",';
385
+									} else {
386
+										$output .= '"aircraft_shadow": "rail.png",';
387
+									}
295 388
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Firetruck') {
296
-									if ($compress) $output .= '"as": "firetruck.png",';
297
-									else $output .= '"aircraft_shadow": "firetruck.png",';
389
+									if ($compress) {
390
+										$output .= '"as": "firetruck.png",';
391
+									} else {
392
+										$output .= '"aircraft_shadow": "firetruck.png",';
393
+									}
298 394
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Bus') {
299
-									if ($compress) $output .= '"as": "bus.png",';
300
-									else $output .= '"aircraft_shadow": "bus.png",';
395
+									if ($compress) {
396
+										$output .= '"as": "bus.png",';
397
+									} else {
398
+										$output .= '"aircraft_shadow": "bus.png",';
399
+									}
301 400
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Phone') {
302
-									if ($compress) $output .= '"as": "phone.png",';
303
-									else $output .= '"aircraft_shadow": "phone.png",';
401
+									if ($compress) {
402
+										$output .= '"as": "phone.png",';
403
+									} else {
404
+										$output .= '"aircraft_shadow": "phone.png",';
405
+									}
304 406
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Jogger') {
305
-									if ($compress) $output .= '"as": "jogger.png",';
306
-									else $output .= '"aircraft_shadow": "jogger.png",';
407
+									if ($compress) {
408
+										$output .= '"as": "jogger.png",';
409
+									} else {
410
+										$output .= '"aircraft_shadow": "jogger.png",';
411
+									}
307 412
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Bike') {
308
-									if ($compress) $output .= '"as": "bike.png",';
309
-									else $output .= '"aircraft_shadow": "bike.png",';
413
+									if ($compress) {
414
+										$output .= '"as": "bike.png",';
415
+									} else {
416
+										$output .= '"aircraft_shadow": "bike.png",';
417
+									}
310 418
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Motorcycle') {
311
-									if ($compress) $output .= '"as": "motorcycle.png",';
312
-									else $output .= '"aircraft_shadow": "motorcycle.png",';
419
+									if ($compress) {
420
+										$output .= '"as": "motorcycle.png",';
421
+									} else {
422
+										$output .= '"aircraft_shadow": "motorcycle.png",';
423
+									}
313 424
 								} elseif (isset($spotter_item['type']) && $spotter_item['type'] == 'Balloon') {
314
-									if ($compress) $output .= '"as": "balloon.png",';
315
-									else $output .= '"aircraft_shadow": "balloon.png",';
425
+									if ($compress) {
426
+										$output .= '"as": "balloon.png",';
427
+									} else {
428
+										$output .= '"aircraft_shadow": "balloon.png",';
429
+									}
316 430
 								} else {
317
-									if ($compress) $output .= '"as": "car.png",';
318
-									else $output .= '"aircraft_shadow": "car.png",';
431
+									if ($compress) {
432
+										$output .= '"as": "car.png",';
433
+									} else {
434
+										$output .= '"aircraft_shadow": "car.png",';
435
+									}
319 436
 								}
320 437
 							} elseif ($marine) {
321
-								if ($compress) $output .= '"as": "ship.png",';
322
-								else $output .= '"aircraft_shadow": "ship.png",';
438
+								if ($compress) {
439
+									$output .= '"as": "ship.png",';
440
+								} else {
441
+									$output .= '"aircraft_shadow": "ship.png",';
442
+								}
323 443
 							} else {
324
-								if ($compress) $output .= '"as": "default.png",';
325
-								else $output .= '"aircraft_shadow": "default.png",';
444
+								if ($compress) {
445
+									$output .= '"as": "default.png",';
446
+								} else {
447
+									$output .= '"aircraft_shadow": "default.png",';
448
+								}
326 449
 							}
327 450
 						} else {
328
-							if ($compress) $output .= '"as": "'.$spotter_item['aircraft_shadow'].'",';
329
-							else $output .= '"aircraft_shadow": "'.$spotter_item['aircraft_shadow'].'",';
451
+							if ($compress) {
452
+								$output .= '"as": "'.$spotter_item['aircraft_shadow'].'",';
453
+							} else {
454
+								$output .= '"aircraft_shadow": "'.$spotter_item['aircraft_shadow'].'",';
455
+							}
330 456
 						}
331 457
 						if (isset($spotter_item['airline_name'])) {
332 458
 							$output .= '"airline_name": "'.$spotter_item['airline_name'].'",';
@@ -334,8 +460,11 @@  discard block
 block discarded – undo
334 460
 							$output .= '"airline_name": "NA",';
335 461
 						}
336 462
 						if (isset($spotter_item['departure_airport'])) {
337
-							if ($compress) $output .= '"dac": "'.$spotter_item['departure_airport'].'",';
338
-							else $output .= '"departure_airport_code": "'.$spotter_item['departure_airport'].'",';
463
+							if ($compress) {
464
+								$output .= '"dac": "'.$spotter_item['departure_airport'].'",';
465
+							} else {
466
+								$output .= '"departure_airport_code": "'.$spotter_item['departure_airport'].'",';
467
+							}
339 468
 						}
340 469
 						if (isset($spotter_item['departure_airport_city'])) {
341 470
 							$output .= '"departure_airport": "'.$spotter_item['departure_airport_city'].', '.$spotter_item['departure_airport_country'].'",';
@@ -347,8 +476,11 @@  discard block
 block discarded – undo
347 476
 							$output .= '"arrival_airport_time": "'.$spotter_item['arrival_airport_time'].'",';
348 477
 						}
349 478
 						if (isset($spotter_item['arrival_airport'])) {
350
-							if ($compress) $output .= '"aac": "'.$spotter_item['arrival_airport'].'",';
351
-							else $output .= '"arrival_airport_code": "'.$spotter_item['arrival_airport'].'",';
479
+							if ($compress) {
480
+								$output .= '"aac": "'.$spotter_item['arrival_airport'].'",';
481
+							} else {
482
+								$output .= '"arrival_airport_code": "'.$spotter_item['arrival_airport'].'",';
483
+							}
352 484
 						}
353 485
 						if (isset($spotter_item['arrival_airport_city'])) {
354 486
 							$output .= '"arrival_airport": "'.$spotter_item['arrival_airport_city'].', '.$spotter_item['arrival_airport_country'].'",';
@@ -367,11 +499,17 @@  discard block
 block discarded – undo
367 499
 						}
368 500
 						
369 501
 						if (isset($spotter_item['altitude'])) {
370
-							if ($compress) $output .= '"a": "'.$spotter_item['altitude'].'",';
371
-							else $output .= '"altitude": "'.$spotter_item['altitude'].'",';
502
+							if ($compress) {
503
+								$output .= '"a": "'.$spotter_item['altitude'].'",';
504
+							} else {
505
+								$output .= '"altitude": "'.$spotter_item['altitude'].'",';
506
+							}
507
+						}
508
+						if ($compress) {
509
+							$output .= '"h": "'.$spotter_item['heading'].'",';
510
+						} else {
511
+							$output .= '"heading": "'.$spotter_item['heading'].'",';
372 512
 						}
373
-						if ($compress)$output .= '"h": "'.$spotter_item['heading'].'",';
374
-						else $output .= '"heading": "'.$spotter_item['heading'].'",';
375 513
 						
376 514
 						if (isset($archivespeed)) {
377 515
 							$nextcoord = $Common->nextcoord($spotter_item['latitude'],$spotter_item['longitude'],$spotter_item['ground_speed'],$spotter_item['heading'],$archivespeed);
@@ -381,7 +519,9 @@  discard block
 block discarded – undo
381 519
 							$output .= '"nextlatlon": ['.$nextcoord['latitude'].','.$nextcoord['longitude'].'],';
382 520
 						}
383 521
 
384
-						if (!$min) $output .= '"image": "'.$image.'",';
522
+						if (!$min) {
523
+							$output .= '"image": "'.$image.'",';
524
+						}
385 525
 						if (isset($spotter_item['image_copyright']) && $spotter_item['image_copyright'] != '') {
386 526
 							$output .= '"image_copyright": "'.str_replace('"',"'",trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'',$spotter_item['image_copyright']))).'",';
387 527
 						}
@@ -389,8 +529,11 @@  discard block
 block discarded – undo
389 529
 							$output .= '"image_source_website": "'.urlencode($spotter_item['image_source_website']).'",';
390 530
 						}
391 531
 						if (isset($spotter_item['squawk'])) {
392
-							if ($compress) $output .= '"sq": "'.$spotter_item['squawk'].'",';
393
-							else $output .= '"squawk": "'.$spotter_item['squawk'].'",';
532
+							if ($compress) {
533
+								$output .= '"sq": "'.$spotter_item['squawk'].'",';
534
+							} else {
535
+								$output .= '"squawk": "'.$spotter_item['squawk'].'",';
536
+							}
394 537
 						}
395 538
 						if (isset($spotter_item['squawk_usage'])) {
396 539
 							$output .= '"squawk_usage": "'.$spotter_item['squawk_usage'].'",';
@@ -409,14 +552,23 @@  discard block
 block discarded – undo
409 552
 						}
410 553
 						// type when not aircraft ?
411 554
 						if (isset($spotter_item['type'])) {
412
-							if ($compress) $output .= '"t": "'.$spotter_item['type'].'"';
413
-							else $output .= '"type": "'.$spotter_item['type'].'"';
555
+							if ($compress) {
556
+								$output .= '"t": "'.$spotter_item['type'].'"';
557
+							} else {
558
+								$output .= '"type": "'.$spotter_item['type'].'"';
559
+							}
414 560
 						} elseif ($marine) {
415
-							if ($compress) $output .= '"t": "ship"';
416
-							else $output .= '"type": "ship"';
561
+							if ($compress) {
562
+								$output .= '"t": "ship"';
563
+							} else {
564
+								$output .= '"type": "ship"';
565
+							}
417 566
 						} else {
418
-							if ($compress) $output .= '"t": "aircraft"';
419
-							else $output .= '"type": "aircraft"';
567
+							if ($compress) {
568
+								$output .= '"t": "aircraft"';
569
+							} else {
570
+								$output .= '"type": "aircraft"';
571
+							}
420 572
 						}
421 573
 						$output .= '},';
422 574
 						$output .= '"geometry": {';
@@ -484,7 +636,9 @@  discard block
 block discarded – undo
484 636
 			}
485 637
 */
486 638
 				$history = filter_input(INPUT_GET,'history',FILTER_SANITIZE_STRING);
487
-				if ($history == '' && isset($_COOKIE['history'])) $history = $_COOKIE['history'];
639
+				if ($history == '' && isset($_COOKIE['history'])) {
640
+					$history = $_COOKIE['history'];
641
+				}
488 642
 				
489 643
 				if ((isset($_COOKIE['flightpath']) && $_COOKIE['flightpath'] == 'true') 
490 644
 				|| (!isset($_COOKIE['flightpath']) 
@@ -513,8 +667,11 @@  discard block
 block discarded – undo
513 667
 							$output_history .= ']}},';
514 668
 							$output .= $output_history;
515 669
 						    }
516
-						    if ($compress) $output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history","a": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
517
-						    else $output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history","altitude": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
670
+						    if ($compress) {
671
+						    	$output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history","a": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
672
+						    } else {
673
+						    	$output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history","altitude": "'.$alt.'"},"geometry": {"type": "LineString","coordinates": [';
674
+						    }
518 675
 						}
519 676
 						$output_history .= '[';
520 677
 						$output_history .=  $spotter_history['longitude'].', ';
@@ -524,9 +681,14 @@  discard block
 block discarded – undo
524 681
 						$prev_alt = $alt;
525 682
 					} else {
526 683
 						if ($d == false) {
527
-							if ($compress) $output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history"},"geometry": {"type": "LineString","coordinates": [';
528
-							else $output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history"},"geometry": {"type": "LineString","coordinates": [';
529
-						} else $d = true;
684
+							if ($compress) {
685
+								$output_history = '{"type": "Feature","properties": {"c": "'.$spotter_item['ident'].'","t": "history"},"geometry": {"type": "LineString","coordinates": [';
686
+							} else {
687
+								$output_history = '{"type": "Feature","properties": {"callsign": "'.$spotter_item['ident'].'","type": "history"},"geometry": {"type": "LineString","coordinates": [';
688
+							}
689
+						} else {
690
+							$d = true;
691
+						}
530 692
 						$output_history .= '[';
531 693
 						$output_history .=  $spotter_history['longitude'].', ';
532 694
 						$output_history .=  $spotter_history['latitude'];
@@ -570,7 +732,9 @@  discard block
 block discarded – undo
570 732
 			$output .= ']';
571 733
 			$output .= ',"initial_sqltime": "'.$sqltime.'",';
572 734
 			$output .= '"totaltime": "'.round(microtime(true)-$begintime,2).'",';
573
-			if (isset($begindate)) $output .= '"archive_date": "'.$begindate.'",';
735
+			if (isset($begindate)) {
736
+				$output .= '"archive_date": "'.$begindate.'",';
737
+			}
574 738
 			$output .= '"fc": "'.$j.'"';
575 739
 		} else {
576 740
 			$output .= '"features": ';
Please login to merge, or discard this patch.
aircraft-data.php 1 patch
Braces   +34 added lines, -12 removed lines patch added patch discarded remove patch
@@ -55,7 +55,9 @@  discard block
 block discarded – undo
55 55
 {
56 56
 	if ($spotter_item['image_source'] == 'flickr' || $spotter_item['image_source'] == 'wikimedia' || $spotter_item['image_source'] == 'devianart') {
57 57
 		$image = preg_replace("/^http:/i","https:",$spotter_item['image_thumbnail']);
58
-	} else $image = $spotter_item['image_thumbnail'];
58
+	} else {
59
+		$image = $spotter_item['image_thumbnail'];
60
+	}
59 61
 
60 62
 }
61 63
 /* else {
@@ -67,7 +69,9 @@  discard block
 block discarded – undo
67 69
 	print '<div class="left"><img src="'.$image.'" alt="'.$spotter_item['registration'].' '.$spotter_item['aircraft_name'].'" title="'.$spotter_item['registration'].' '.$spotter_item['aircraft_name'].' Image &copy; '.$spotter_item['image_copyright'].'"/><br />Image &copy; '.$spotter_item['image_copyright'].'</div>';
68 70
 }
69 71
 print '<div class="right"><div class="callsign-details"><div class="callsign"><a href="'.$globalURL.'/redirect/'.$spotter_item['flightaware_id'].'" target="_blank">'.$spotter_item['ident'].'</a></div>';
70
-if (isset($spotter_item['airline_name'])) print '<div class="airline">'.$spotter_item['airline_name'].'</div>';
72
+if (isset($spotter_item['airline_name'])) {
73
+	print '<div class="airline">'.$spotter_item['airline_name'].'</div>';
74
+}
71 75
 print '</div>';
72 76
 print '<div class="nomobile airports"><div class="airport"><span class="code"><a href="'.$globalURL.'/airport/'.$spotter_item['departure_airport'].'" target="_blank">'.$spotter_item['departure_airport'].'</a></span>'.$spotter_item['departure_airport_city'].' '.$spotter_item['departure_airport_country'];
73 77
 if (isset($spotter_item['departure_airport_time'])) {
@@ -95,9 +99,14 @@  discard block
 block discarded – undo
95 99
 print '<span class="code"><a href="'.$globalURL.'/airport/'.$spotter_item['arrival_airport'].'" target="_blank">'.$spotter_item['arrival_airport'].'</a></span>'.$spotter_item['arrival_airport_city'].' '.$spotter_item['arrival_airport_country'];
96 100
 print '</div></div><div>';
97 101
 print '<span>'._("Aircraft").'</span>';
98
-if (isset($spotter_item['aircraft_wiki'])) print '<a href="'.$spotter_item['aircraft_wiki'].'">'.$spotter_item['aircraft_name'].'</a>';
99
-if (isset($spotter_item['aircraft_type'])) print '<a href="'.$globalURL.'/aircraft/'.$spotter_item['aircraft_type'].'">'.$spotter_item['aircraft_manufacturer'].' '.$spotter_item['aircraft_name'].' ('.$spotter_item['aircraft_type'].')</a>';
100
-else print $spotter_item['aircraft_manufacturer'].' '.$spotter_item['aircraft_name'];
102
+if (isset($spotter_item['aircraft_wiki'])) {
103
+	print '<a href="'.$spotter_item['aircraft_wiki'].'">'.$spotter_item['aircraft_name'].'</a>';
104
+}
105
+if (isset($spotter_item['aircraft_type'])) {
106
+	print '<a href="'.$globalURL.'/aircraft/'.$spotter_item['aircraft_type'].'">'.$spotter_item['aircraft_manufacturer'].' '.$spotter_item['aircraft_name'].' ('.$spotter_item['aircraft_type'].')</a>';
107
+} else {
108
+	print $spotter_item['aircraft_manufacturer'].' '.$spotter_item['aircraft_name'];
109
+}
101 110
 print '</div>';
102 111
 print '<div><span>'._("Altitude").'</span>';
103 112
 if ((!isset($_COOKIE['unitaltitude']) && isset($globalUnitAltitude) && $globalUnitAltitude == 'feet') || (isset($_COOKIE['unitaltitude']) && $_COOKIE['unitaltitude'] == 'feet')) {
@@ -106,7 +115,9 @@  discard block
 block discarded – undo
106 115
 	print round($spotter_item['altitude']*30.48).' m (FL'.$spotter_item['altitude'].')';
107 116
 }
108 117
 print '</div>';
109
-if (isset($spotter_item['registration']) && $spotter_item['registration'] != '') print '<div><span>'._("Registration").'</span><a href="'.$globalURL.'/registration/'.$spotter_item['registration'].'" target="_blank">'.$spotter_item['registration'].'</a></div>';
118
+if (isset($spotter_item['registration']) && $spotter_item['registration'] != '') {
119
+	print '<div><span>'._("Registration").'</span><a href="'.$globalURL.'/registration/'.$spotter_item['registration'].'" target="_blank">'.$spotter_item['registration'].'</a></div>';
120
+}
110 121
 print '<div><span>'._("Speed").'</span>';
111 122
 if ((!isset($_COOKIE['unitspeed']) && isset($globalUnitSpeed) && $globalUnitSpeed == 'mph') || (isset($_COOKIE['unitspeed']) && $_COOKIE['unitspeed'] == 'mph')) {
112 123
 	print round($spotter_item['ground_speed']*1.15078).' mph';
@@ -120,8 +131,11 @@  discard block
 block discarded – undo
120 131
 print '<div><span>'._("Heading").'</span>'.$spotter_item['heading'].'°</div>';
121 132
 if (isset($spotter_item['pilot_name']) && $spotter_item['pilot_name'] != '') {
122 133
 	print '<div><span>'._("Pilot").'</span>';
123
-	if (isset($spotter_item['pilot_id'])) print $spotter_item['pilot_name'].' ('.$spotter_item['pilot_id'].')';
124
-	else print $spotter_item['pilot_name'];
134
+	if (isset($spotter_item['pilot_id'])) {
135
+		print $spotter_item['pilot_name'].' ('.$spotter_item['pilot_id'].')';
136
+	} else {
137
+		print $spotter_item['pilot_name'];
138
+	}
125 139
 	print '</div>';
126 140
 }
127 141
 
@@ -147,10 +161,18 @@  discard block
 block discarded – undo
147 161
 }
148 162
 print '</div>';
149 163
 
150
-if (isset($globalphpVMS) && $globalphpVMS && isset($globalVATSIM) && $globalVATSIM && isset($globalIVAO) && $globalIVAO && isset($spotter_item['format_source']) && $spotter_item['format_source'] != '' && $spotter_item['format_source'] != 'pireps') print '<div class="waypoints"><span>'._("Source").'</span>'.$spotter_item['format_source'].'</div>';
151
-if (isset($spotter_item['waypoints']) && $spotter_item['waypoints'] != '') print '<div class="waypoints"><span>'._("Route").'</span>'.$spotter_item['waypoints'].'</div>';
152
-if (isset($spotter_item['acars']['message'])) print '<div class="acars"><span>'._("Latest ACARS message").'</span>'.trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'<br/>',$spotter_item['acars']['message'])).'</div>';
153
-if (isset($spotter_item['squawk']) && $spotter_item['squawk'] != '' && $spotter_item['squawk'] != 0) print '<div class="bottom">'._("Squawk:").' '.$spotter_item['squawk'].' - '.$spotter_item['squawk_usage'].'</div>';
164
+if (isset($globalphpVMS) && $globalphpVMS && isset($globalVATSIM) && $globalVATSIM && isset($globalIVAO) && $globalIVAO && isset($spotter_item['format_source']) && $spotter_item['format_source'] != '' && $spotter_item['format_source'] != 'pireps') {
165
+	print '<div class="waypoints"><span>'._("Source").'</span>'.$spotter_item['format_source'].'</div>';
166
+}
167
+if (isset($spotter_item['waypoints']) && $spotter_item['waypoints'] != '') {
168
+	print '<div class="waypoints"><span>'._("Route").'</span>'.$spotter_item['waypoints'].'</div>';
169
+}
170
+if (isset($spotter_item['acars']['message'])) {
171
+	print '<div class="acars"><span>'._("Latest ACARS message").'</span>'.trim(str_replace(array("\r\n","\r","\n","\\r","\\n","\\r\\n"),'<br/>',$spotter_item['acars']['message'])).'</div>';
172
+}
173
+if (isset($spotter_item['squawk']) && $spotter_item['squawk'] != '' && $spotter_item['squawk'] != 0) {
174
+	print '<div class="bottom">'._("Squawk:").' '.$spotter_item['squawk'].' - '.$spotter_item['squawk_usage'].'</div>';
175
+}
154 176
 print '</div>';
155 177
 ?>
156 178
 </div>
157 179
\ No newline at end of file
Please login to merge, or discard this patch.