Completed
Push — master ( 05da79...c0278b )
by Yannick
09:24
created
statistics-date.php 1 patch
Braces   +21 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,11 +16,15 @@  discard block
 block discarded – undo
16 16
 	$Tracker = new Tracker();
17 17
 }
18 18
 
19
-if (!isset($filter_name)) $filter_name = '';
19
+if (!isset($filter_name)) {
20
+	$filter_name = '';
21
+}
20 22
 $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING);
21 23
 if ($airline_icao == '' && isset($globalFilter)) {
22
-    if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0];
23
-}
24
+    if (isset($globalFilter['airline'])) {
25
+    	$airline_icao = $globalFilter['airline'][0];
26
+    }
27
+    }
24 28
 
25 29
 require_once('header.php');
26 30
 include('statistics-sub-menu.php'); 
@@ -33,9 +37,13 @@  discard block
 block discarded – undo
33 37
 	  </div>
34 38
       <p>'._("Below is a chart that plots the busiest day during the <strong>last 7 days</strong>.").'</p>';
35 39
 
36
-if ($type == 'aircraft') $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name);
37
-elseif ($type == 'marine') $date_array = $Marine->countAllDatesLast7Days();
38
-elseif ($type == 'tracker') $date_array = $Tracker->countAllDatesLast7Days();
40
+if ($type == 'aircraft') {
41
+	$date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name);
42
+} elseif ($type == 'marine') {
43
+	$date_array = $Marine->countAllDatesLast7Days();
44
+} elseif ($type == 'tracker') {
45
+	$date_array = $Tracker->countAllDatesLast7Days();
46
+}
39 47
 if (count($date_array) == 0) {
40 48
 	print _("No data available");
41 49
 } else {
@@ -61,9 +69,13 @@  discard block
 block discarded – undo
61 69
 } else {
62 70
 	print '<p>'._("Below are the <strong>Top 10</strong> most busiest dates.").'</p>';
63 71
 }
64
-if ($type == 'aircraft') $date_array = $Stats->countAllDates($airline_icao,$filter_name);
65
-elseif ($type == 'marine') $date_array = $Marine->countAllDates();
66
-elseif ($type == 'tracker') $date_array = $Tracker->countAllDates();
72
+if ($type == 'aircraft') {
73
+	$date_array = $Stats->countAllDates($airline_icao,$filter_name);
74
+} elseif ($type == 'marine') {
75
+	$date_array = $Marine->countAllDates();
76
+} elseif ($type == 'tracker') {
77
+	$date_array = $Tracker->countAllDates();
78
+}
67 79
 if (!empty($date_array))
68 80
 {
69 81
 	print '<div class="table-responsive">';
Please login to merge, or discard this patch.
statistics-month.php 1 patch
Braces   +19 added lines, -8 removed lines patch added patch discarded remove patch
@@ -15,11 +15,15 @@  discard block
 block discarded – undo
15 15
 	require_once('require/class.Tracker.php');
16 16
 	$Tracker = new Tracker();
17 17
 }
18
-if (!isset($filter_name)) $filter_name = '';
18
+if (!isset($filter_name)) {
19
+	$filter_name = '';
20
+}
19 21
 $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING);
20 22
 if ($airline_icao == '' && isset($globalFilter)) {
21
-    if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0];
22
-}
23
+    if (isset($globalFilter['airline'])) {
24
+    	$airline_icao = $globalFilter['airline'][0];
25
+    }
26
+    }
23 27
 
24 28
 require_once('header.php');
25 29
 include('statistics-sub-menu.php'); 
@@ -32,9 +36,13 @@  discard block
 block discarded – undo
32 36
 	  </div>
33 37
       <p>'._("Below is a chart that plots the busiest day during the <strong>last month</strong>.").'</p>';
34 38
 
35
-if ($type == 'aircraft') $date_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name);
36
-elseif ($type == 'marine') $date_array = $Marine->countAllDatesLastMonth();
37
-elseif ($type == 'tracker') $date_array = $Tracker->countAllDatesLastMonth();
39
+if ($type == 'aircraft') {
40
+	$date_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name);
41
+} elseif ($type == 'marine') {
42
+	$date_array = $Marine->countAllDatesLastMonth();
43
+} elseif ($type == 'tracker') {
44
+	$date_array = $Tracker->countAllDatesLastMonth();
45
+}
38 46
 
39 47
 print '<div id="chart" class="chart" width="100%"></div><script>';
40 48
 $month_data = '';
@@ -75,8 +83,11 @@  discard block
 block discarded – undo
75 83
 		print '<tr>';
76 84
 		print '<td><strong>'.$i.'</strong></td>';
77 85
 		print '<td>';
78
-		if ($type == 'aircraft') print '<a href="'.$globalURL.'/date/'.date('Y-m-d',strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>';
79
-		else print '<a href="'.$globalURL.'/'.$type.'/date/'.date('Y-m-d',strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>';
86
+		if ($type == 'aircraft') {
87
+			print '<a href="'.$globalURL.'/date/'.date('Y-m-d',strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>';
88
+		} else {
89
+			print '<a href="'.$globalURL.'/'.$type.'/date/'.date('Y-m-d',strtotime($date_item['date_name'])).'">'.date("l F j, Y", strtotime($date_item['date_name'])).'</a>';
90
+		}
80 91
 		print '</td>';
81 92
 		print '<td>';
82 93
 		print $date_item['date_count'];
Please login to merge, or discard this patch.
statistics-year.php 1 patch
Braces   +21 added lines, -9 removed lines patch added patch discarded remove patch
@@ -17,11 +17,15 @@  discard block
 block discarded – undo
17 17
 $title = _("Statistics").' - '._("Busiest Month of Last Year");
18 18
 
19 19
 
20
-if (!isset($filter_name)) $filter_name = '';
20
+if (!isset($filter_name)) {
21
+	$filter_name = '';
22
+}
21 23
 $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING);
22 24
 if ($airline_icao == '' && isset($globalFilter)) {
23
-    if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0];
24
-}
25
+    if (isset($globalFilter['airline'])) {
26
+    	$airline_icao = $globalFilter['airline'][0];
27
+    }
28
+    }
25 29
 
26 30
 require_once('header.php');
27 31
 include('statistics-sub-menu.php');
@@ -33,9 +37,13 @@  discard block
 block discarded – undo
33 37
 	</div>
34 38
       <p>'._("Below is a chart that plots the busiest month during the <strong>last year</strong>.").'</p>';
35 39
 
36
-if ($type == 'aircraft') $date_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name);
37
-elseif ($type == 'marine') $date_array = $Marine->countAllMonthsLastYear(true);
38
-elseif ($type == 'tracker') $date_array = $Tracker->countAllMonthsLastYear(true);
40
+if ($type == 'aircraft') {
41
+	$date_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name);
42
+} elseif ($type == 'marine') {
43
+	$date_array = $Marine->countAllMonthsLastYear(true);
44
+} elseif ($type == 'tracker') {
45
+	$date_array = $Tracker->countAllMonthsLastYear(true);
46
+}
39 47
 print '<div id="chart" class="chart" width="100%"></div><script>';
40 48
 $year_data = '';
41 49
 $year_cnt = '';
@@ -53,9 +61,13 @@  discard block
 block discarded – undo
53 61
     axis: { x: { type: "timeseries", localtime: false,tick: { format: "%Y-%m"}}, y: { label: "#"}},legend: { show: false }});';
54 62
 print '</script>';
55 63
 
56
-if ($type == 'aircraft') $date_array = $Stats->countAllMonths($airline_icao);
57
-elseif ($type == 'marine') $date_array = $Marine->countAllMonths();
58
-elseif ($type == 'tracker') $date_array = $Tracker->countAllMonths();
64
+if ($type == 'aircraft') {
65
+	$date_array = $Stats->countAllMonths($airline_icao);
66
+} elseif ($type == 'marine') {
67
+	$date_array = $Marine->countAllMonths();
68
+} elseif ($type == 'tracker') {
69
+	$date_array = $Tracker->countAllMonths();
70
+}
59 71
 
60 72
 if (!empty($date_array))
61 73
 {
Please login to merge, or discard this patch.
statistics-sub-menu.php 1 patch
Braces   +110 added lines, -27 removed lines patch added patch discarded remove patch
@@ -4,7 +4,13 @@  discard block
 block discarded – undo
4 4
 	<div class="stats_airline">
5 5
 	
6 6
 		<form id="changedate" method="post">
7
-			<input type="month" name="date" onchange="statsdatechange(this);" value="<?php if (isset($year) && $year != '') echo $year.'-'; ?><?php if (isset($month) && $month != '') echo $month; ?>" />
7
+			<input type="month" name="date" onchange="statsdatechange(this);" value="<?php if (isset($year) && $year != '') {
8
+	echo $year.'-';
9
+}
10
+?><?php if (isset($month) && $month != '') {
11
+	echo $month;
12
+}
13
+?>" />
8 14
 		</form>
9 15
 <?php
10 16
 	if (!isset($type) || $type == 'aircraft') {
@@ -15,7 +21,9 @@  discard block
 block discarded – undo
15 21
 				<?php
16 22
 					require_once('require/class.Stats.php');
17 23
 					$Stats = new Stats();
18
-					if (!isset($filter_name)) $filter_name = '';
24
+					if (!isset($filter_name)) {
25
+						$filter_name = '';
26
+					}
19 27
 					$airlines = $Stats->getAllAirlineNames($filter_name);
20 28
 					if (isset($airline_icao) && ($airline_icao == '' || $airline_icao == 'all')) {
21 29
 						print '<option value="all" selected>All</option>';
@@ -49,10 +57,22 @@  discard block
 block discarded – undo
49 57
 		      <?php echo _("Aircraft"); ?> <span class="caret"></span>
50 58
 		    </a>
51 59
 		    <ul class="dropdown-menu">
52
-			<li><a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Aircraft"); ?></a></li>
53
-			<li><a href="<?php print $globalURL; ?>/statistics/registration<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Registration"); ?></a></li>
54
-			<li><a href="<?php print $globalURL; ?>/statistics/manufacturer<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Manufacturer"); ?></a></li>
55
-			<li><a href="<?php print $globalURL; ?>/statistics/country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Country"); ?></a></li>
60
+			<li><a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
61
+	echo '/'.$airline_icao;
62
+}
63
+?>"><?php echo _("Aircraft"); ?></a></li>
64
+			<li><a href="<?php print $globalURL; ?>/statistics/registration<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
65
+	echo '/'.$airline_icao;
66
+}
67
+?>"><?php echo _("Registration"); ?></a></li>
68
+			<li><a href="<?php print $globalURL; ?>/statistics/manufacturer<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
69
+	echo '/'.$airline_icao;
70
+}
71
+?>"><?php echo _("Manufacturer"); ?></a></li>
72
+			<li><a href="<?php print $globalURL; ?>/statistics/country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
73
+	echo '/'.$airline_icao;
74
+}
75
+?>"><?php echo _("Country"); ?></a></li>
56 76
 		    </ul>
57 77
 		</li>
58 78
 		<li class="dropdown">
@@ -60,9 +80,18 @@  discard block
 block discarded – undo
60 80
 		      <?php echo _("Airline"); ?> <span class="caret"></span>
61 81
 		    </a>
62 82
 		    <ul class="dropdown-menu" role="menu">
63
-		      <li><a href="<?php print $globalURL; ?>/statistics/airline<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Airline"); ?></a></li>
64
-		      <li><a href="<?php print $globalURL; ?>/statistics/airline-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Airline by Country"); ?></a></li>
65
-		      <li><a href="<?php print $globalURL; ?>/statistics/callsign<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Callsign"); ?></a></li>
83
+		      <li><a href="<?php print $globalURL; ?>/statistics/airline<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
84
+	echo '/'.$airline_icao;
85
+}
86
+?>"><?php echo _("Airline"); ?></a></li>
87
+		      <li><a href="<?php print $globalURL; ?>/statistics/airline-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
88
+	echo '/'.$airline_icao;
89
+}
90
+?>"><?php echo _("Airline by Country"); ?></a></li>
91
+		      <li><a href="<?php print $globalURL; ?>/statistics/callsign<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
92
+	echo '/'.$airline_icao;
93
+}
94
+?>"><?php echo _("Callsign"); ?></a></li>
66 95
 		    </ul>
67 96
 		</li>
68 97
 		<li class="dropdown">
@@ -70,10 +99,22 @@  discard block
 block discarded – undo
70 99
 		      <?php echo _("Airport"); ?> <span class="caret"></span>
71 100
 		    </a>
72 101
 		    <ul class="dropdown-menu" role="menu">
73
-		      <li><a href="<?php print $globalURL; ?>/statistics/airport-departure<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Departure Airport"); ?></a></li>
74
-		      <li><a href="<?php print $globalURL; ?>/statistics/airport-departure-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Departure Airport by Country"); ?></a></li>
75
-		      <li><a href="<?php print $globalURL; ?>/statistics/airport-arrival<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Arrival Airport"); ?></a></li>
76
-		      <li><a href="<?php print $globalURL; ?>/statistics/airport-arrival-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Arrival Airport by Country"); ?></a></li>
102
+		      <li><a href="<?php print $globalURL; ?>/statistics/airport-departure<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
103
+	echo '/'.$airline_icao;
104
+}
105
+?>"><?php echo _("Departure Airport"); ?></a></li>
106
+		      <li><a href="<?php print $globalURL; ?>/statistics/airport-departure-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
107
+	echo '/'.$airline_icao;
108
+}
109
+?>"><?php echo _("Departure Airport by Country"); ?></a></li>
110
+		      <li><a href="<?php print $globalURL; ?>/statistics/airport-arrival<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
111
+	echo '/'.$airline_icao;
112
+}
113
+?>"><?php echo _("Arrival Airport"); ?></a></li>
114
+		      <li><a href="<?php print $globalURL; ?>/statistics/airport-arrival-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
115
+	echo '/'.$airline_icao;
116
+}
117
+?>"><?php echo _("Arrival Airport by Country"); ?></a></li>
77 118
 		    </ul>
78 119
 		</li>
79 120
 		<li class="dropdown">
@@ -81,8 +122,14 @@  discard block
 block discarded – undo
81 122
 		      <?php echo _("Route"); ?> <span class="caret"></span>
82 123
 		    </a>
83 124
 		    <ul class="dropdown-menu" role="menu">
84
-		      <li><a href="<?php print $globalURL; ?>/statistics/route-airport<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Route by Airport"); ?></a></li>
85
-		      <li><a href="<?php print $globalURL; ?>/statistics/route-waypoint<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Route by Waypoint"); ?></a></li>
125
+		      <li><a href="<?php print $globalURL; ?>/statistics/route-airport<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
126
+	echo '/'.$airline_icao;
127
+}
128
+?>"><?php echo _("Route by Airport"); ?></a></li>
129
+		      <li><a href="<?php print $globalURL; ?>/statistics/route-waypoint<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
130
+	echo '/'.$airline_icao;
131
+}
132
+?>"><?php echo _("Route by Waypoint"); ?></a></li>
86 133
 		    </ul>
87 134
 		</li>
88 135
 		<li class="dropdown">
@@ -90,8 +137,14 @@  discard block
 block discarded – undo
90 137
 		      <?php echo _("Date &amp; Time"); ?> <span class="caret"></span>
91 138
 		    </a>
92 139
 		    <ul class="dropdown-menu" role="menu">
93
-		      <li><a href="<?php print $globalURL; ?>/statistics/date<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Date"); ?></a></li>
94
-			  <li><a href="<?php print $globalURL; ?>/statistics/time<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>"><?php echo _("Time"); ?></a></li>
140
+		      <li><a href="<?php print $globalURL; ?>/statistics/date<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
141
+	echo '/'.$airline_icao;
142
+}
143
+?>"><?php echo _("Date"); ?></a></li>
144
+			  <li><a href="<?php print $globalURL; ?>/statistics/time<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
145
+	echo '/'.$airline_icao;
146
+}
147
+?>"><?php echo _("Time"); ?></a></li>
95 148
 		    </ul>
96 149
 		</li>
97 150
 		<?php
@@ -139,9 +192,18 @@  discard block
 block discarded – undo
139 192
 		      <?php echo _("Aircraft"); ?> <span class="caret"></span>
140 193
 		    </a>
141 194
 		    <ul class="dropdown-menu">
142
-			<li><a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Aircraft"); ?></a></li>
143
-			<li><a href="<?php print $globalURL; ?>/statistics/registration<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Registration"); ?></a></li>
144
-			<li><a href="<?php print $globalURL; ?>/statistics/manufacturer<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Manufacturer"); ?></a></li>
195
+			<li><a href="<?php print $globalURL; ?>/statistics/aircraft<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
196
+	echo '/'.$airline_icao;
197
+}
198
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Aircraft"); ?></a></li>
199
+			<li><a href="<?php print $globalURL; ?>/statistics/registration<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
200
+	echo '/'.$airline_icao;
201
+}
202
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Registration"); ?></a></li>
203
+			<li><a href="<?php print $globalURL; ?>/statistics/manufacturer<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
204
+	echo '/'.$airline_icao;
205
+}
206
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Manufacturer"); ?></a></li>
145 207
 			<!-- <li><a href="<?php print $globalURL; ?>/statistics/country"><?php echo _("Country"); ?></a></li> -->
146 208
 		    </ul>
147 209
 		</li>
@@ -150,9 +212,18 @@  discard block
 block discarded – undo
150 212
 		      <?php echo _("Airline"); ?> <span class="caret"></span>
151 213
 		    </a>
152 214
 		    <ul class="dropdown-menu" role="menu">
153
-		      <li><a href="<?php print $globalURL; ?>/statistics/airline<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Airline"); ?></a></li>
154
-		      <li><a href="<?php print $globalURL; ?>/statistics/airline-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Airline by Country"); ?></a></li>
155
-		      <li><a href="<?php print $globalURL; ?>/statistics/callsign<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Callsign"); ?></a></li>
215
+		      <li><a href="<?php print $globalURL; ?>/statistics/airline<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
216
+	echo '/'.$airline_icao;
217
+}
218
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Airline"); ?></a></li>
219
+		      <li><a href="<?php print $globalURL; ?>/statistics/airline-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
220
+	echo '/'.$airline_icao;
221
+}
222
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Airline by Country"); ?></a></li>
223
+		      <li><a href="<?php print $globalURL; ?>/statistics/callsign<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
224
+	echo '/'.$airline_icao;
225
+}
226
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Callsign"); ?></a></li>
156 227
 		    </ul>
157 228
 		</li>
158 229
 		<li class="dropdown">
@@ -160,10 +231,22 @@  discard block
 block discarded – undo
160 231
 		      <?php echo _("Airport"); ?> <span class="caret"></span>
161 232
 		    </a>
162 233
 		    <ul class="dropdown-menu" role="menu">
163
-		      <li><a href="<?php print $globalURL; ?>/statistics/airport-departure<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Departure Airport"); ?></a></li>
164
-		      <li><a href="<?php print $globalURL; ?>/statistics/airport-departure-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Departure Airport by Country"); ?></a></li>
165
-		      <li><a href="<?php print $globalURL; ?>/statistics/airport-arrival<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Arrival Airport"); ?></a></li>
166
-		      <li><a href="<?php print $globalURL; ?>/statistics/airport-arrival-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Arrival Airport by Country"); ?></a></li>
234
+		      <li><a href="<?php print $globalURL; ?>/statistics/airport-departure<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
235
+	echo '/'.$airline_icao;
236
+}
237
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Departure Airport"); ?></a></li>
238
+		      <li><a href="<?php print $globalURL; ?>/statistics/airport-departure-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
239
+	echo '/'.$airline_icao;
240
+}
241
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Departure Airport by Country"); ?></a></li>
242
+		      <li><a href="<?php print $globalURL; ?>/statistics/airport-arrival<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
243
+	echo '/'.$airline_icao;
244
+}
245
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Arrival Airport"); ?></a></li>
246
+		      <li><a href="<?php print $globalURL; ?>/statistics/airport-arrival-country<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') {
247
+	echo '/'.$airline_icao;
248
+}
249
+?>/<?php echo $year.'/'.$month.'/'; ?>"><?php echo _("Arrival Airport by Country"); ?></a></li>
167 250
 		    </ul>
168 251
 		</li>
169 252
 		<!--
Please login to merge, or discard this patch.
statistics-country.php 1 patch
Braces   +7 added lines, -3 removed lines patch added patch discarded remove patch
@@ -4,7 +4,9 @@  discard block
 block discarded – undo
4 4
 require_once('require/class.Language.php');
5 5
 $Stats = new Stats();
6 6
 
7
-if (!isset($filter_name)) $filter_name = '';
7
+if (!isset($filter_name)) {
8
+	$filter_name = '';
9
+}
8 10
 $type = 'aircraft';
9 11
 if (isset($_GET['marine'])) {
10 12
 	$type = 'marine';
@@ -21,8 +23,10 @@  discard block
 block discarded – undo
21 23
 }
22 24
 $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING);
23 25
 if ($airline_icao == '' && isset($globalFilter)) {
24
-    if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0];
25
-}
26
+    if (isset($globalFilter['airline'])) {
27
+    	$airline_icao = $globalFilter['airline'][0];
28
+    }
29
+    }
26 30
 
27 31
 require_once('header.php');
28 32
 include('statistics-sub-menu.php'); 
Please login to merge, or discard this patch.
statistics-time.php 1 patch
Braces   +21 added lines, -9 removed lines patch added patch discarded remove patch
@@ -16,11 +16,15 @@  discard block
 block discarded – undo
16 16
 	$Tracker = new Tracker();
17 17
 }
18 18
 
19
-if (!isset($filter_name)) $filter_name = '';
19
+if (!isset($filter_name)) {
20
+	$filter_name = '';
21
+}
20 22
 $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING);
21 23
 if ($airline_icao == '' && isset($globalFilter)) {
22
-    if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0];
23
-}
24
+    if (isset($globalFilter['airline'])) {
25
+    	$airline_icao = $globalFilter['airline'][0];
26
+    }
27
+    }
24 28
 
25 29
 require_once('header.php');
26 30
 include('statistics-sub-menu.php');
@@ -33,9 +37,13 @@  discard block
 block discarded – undo
33 37
 	</div>
34 38
 	<p>'._("Below is a list of the most common <strong>time of day</strong>.").'</p>';
35 39
 
36
-if ($type == 'aircraft') $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name);
37
-elseif ($type == 'marine') $hour_array = $Marine->countAllHours('hour',true);
38
-elseif ($type == 'tracker') $hour_array = $Tracker->countAllHours('hour',true);
40
+if ($type == 'aircraft') {
41
+	$hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name);
42
+} elseif ($type == 'marine') {
43
+	$hour_array = $Marine->countAllHours('hour',true);
44
+} elseif ($type == 'tracker') {
45
+	$hour_array = $Tracker->countAllHours('hour',true);
46
+}
39 47
 print '<div id="chartHour" class="chart" width="100%"></div><script>';
40 48
 $hour_data = '';
41 49
 $hour_cnt = '';
@@ -53,9 +61,13 @@  discard block
 block discarded – undo
53 61
     axis: { x: { type: "category", categories: '.$hour_data.'},y: { label: "# of Flights"}},legend: { show: false }});';
54 62
 print '</script>';
55 63
 
56
-if ($type == 'aircraft') $hour_array = $Stats->countAllHours('count',true,$airline_icao,$filter_name);
57
-elseif ($type == 'marine') $hour_array = $Marine->countAllHours('count',true);
58
-elseif ($type == 'tracker') $hour_array = $Tracker->countAllHours('count',true);
64
+if ($type == 'aircraft') {
65
+	$hour_array = $Stats->countAllHours('count',true,$airline_icao,$filter_name);
66
+} elseif ($type == 'marine') {
67
+	$hour_array = $Marine->countAllHours('count',true);
68
+} elseif ($type == 'tracker') {
69
+	$hour_array = $Tracker->countAllHours('count',true);
70
+}
59 71
 if (!empty($hour_array))
60 72
 {
61 73
 	print '<div class="table-responsive">';
Please login to merge, or discard this patch.
require/class.Marine.php 1 patch
Braces   +170 added lines, -61 removed lines patch added patch discarded remove patch
@@ -29,7 +29,9 @@  discard block
 block discarded – undo
29 29
 		if (isset($filter[0]['source'])) {
30 30
 			$filters = array_merge($filters,$filter);
31 31
 		}
32
-		if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter);
32
+		if (is_array($globalFilter)) {
33
+			$filter = array_merge($filter,$globalFilter);
34
+		}
33 35
 		$filter_query_join = '';
34 36
 		$filter_query_where = '';
35 37
 		foreach($filters as $flt) {
@@ -68,8 +70,11 @@  discard block
 block discarded – undo
68 70
 				$filter_query_where .= " AND EXTRACT(DAY FROM marine_output.date) = '".$filter['day']."'";
69 71
 			}
70 72
 		}
71
-		if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE';
72
-		elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND';
73
+		if ($filter_query_where == '' && $where) {
74
+			$filter_query_where = ' WHERE';
75
+		} elseif ($filter_query_where != '' && $and) {
76
+			$filter_query_where .= ' AND';
77
+		}
73 78
 		if ($filter_query_where != '') {
74 79
 			$filter_query_where = preg_replace('/^ AND/',' WHERE',$filter_query_where);
75 80
 		}
@@ -123,32 +128,54 @@  discard block
 block discarded – undo
123 128
 				$temp_array['spotter_id'] = $row['spotter_archive_id'];
124 129
 			} elseif (isset($row['spotter_archive_output_id'])) {
125 130
 				$temp_array['spotter_id'] = $row['spotter_archive_output_id'];
126
-			*/} 
127
-			elseif (isset($row['marineid'])) {
131
+			*/} elseif (isset($row['marineid'])) {
128 132
 				$temp_array['marine_id'] = $row['marineid'];
129 133
 			} else {
130 134
 				$temp_array['marine_id'] = '';
131 135
 			}
132
-			if (isset($row['fammarine_id'])) $temp_array['fammarine_id'] = $row['fammarine_id'];
133
-			if (isset($row['mmsi'])) $temp_array['mmsi'] = $row['mmsi'];
134
-			if (isset($row['type'])) $temp_array['type'] = $row['type'];
135
-			if (isset($row['type_id'])) $temp_array['type_id'] = $row['type_id'];
136
-			if (isset($row['ident'])) $temp_array['ident'] = $row['ident'];
137
-			if (isset($row['latitude'])) $temp_array['latitude'] = $row['latitude'];
138
-			if (isset($row['longitude'])) $temp_array['longitude'] = $row['longitude'];
139
-			if (isset($row['format_source'])) $temp_array['format_source'] = $row['format_source'];
136
+			if (isset($row['fammarine_id'])) {
137
+				$temp_array['fammarine_id'] = $row['fammarine_id'];
138
+			}
139
+			if (isset($row['mmsi'])) {
140
+				$temp_array['mmsi'] = $row['mmsi'];
141
+			}
142
+			if (isset($row['type'])) {
143
+				$temp_array['type'] = $row['type'];
144
+			}
145
+			if (isset($row['type_id'])) {
146
+				$temp_array['type_id'] = $row['type_id'];
147
+			}
148
+			if (isset($row['ident'])) {
149
+				$temp_array['ident'] = $row['ident'];
150
+			}
151
+			if (isset($row['latitude'])) {
152
+				$temp_array['latitude'] = $row['latitude'];
153
+			}
154
+			if (isset($row['longitude'])) {
155
+				$temp_array['longitude'] = $row['longitude'];
156
+			}
157
+			if (isset($row['format_source'])) {
158
+				$temp_array['format_source'] = $row['format_source'];
159
+			}
140 160
 			if (isset($row['heading'])) {
141 161
 				$temp_array['heading'] = $row['heading'];
142 162
 				$heading_direction = $this->parseDirection($row['heading']);
143
-				if (isset($heading_direction[0]['direction_fullname'])) $temp_array['heading_name'] = $heading_direction[0]['direction_fullname'];
163
+				if (isset($heading_direction[0]['direction_fullname'])) {
164
+					$temp_array['heading_name'] = $heading_direction[0]['direction_fullname'];
165
+				}
166
+			}
167
+			if (isset($row['ground_speed'])) {
168
+				$temp_array['ground_speed'] = $row['ground_speed'];
144 169
 			}
145
-			if (isset($row['ground_speed'])) $temp_array['ground_speed'] = $row['ground_speed'];
146 170
 
147 171
 			if($temp_array['mmsi'] != "")
148 172
 			{
149 173
 				$Image = new Image($this->db);
150
-				if (isset($temp_array['ident']) && $temp_array['ident'] != '') $image_array = $Image->getMarineImage($temp_array['mmsi'],'',$temp_array['ident']);
151
-				else $image_array = $Image->getMarineImage($temp_array['mmsi']);
174
+				if (isset($temp_array['ident']) && $temp_array['ident'] != '') {
175
+					$image_array = $Image->getMarineImage($temp_array['mmsi'],'',$temp_array['ident']);
176
+				} else {
177
+					$image_array = $Image->getMarineImage($temp_array['mmsi']);
178
+				}
152 179
 				unset($Image);
153 180
 				if (count($image_array) > 0) {
154 181
 					$temp_array['image'] = $image_array[0]['image'];
@@ -200,13 +227,21 @@  discard block
 block discarded – undo
200 227
 			}
201 228
 			
202 229
 			$fromsource = NULL;
203
-			if (isset($row['source_name']) && $row['source_name'] != '') $temp_array['source_name'] = $row['source_name'];
204
-			if (isset($row['over_country']) && $row['over_country'] != '') $temp_array['over_country'] = $row['over_country'];
205
-			if (isset($row['distance']) && $row['distance'] != '') $temp_array['distance'] = $row['distance'];
230
+			if (isset($row['source_name']) && $row['source_name'] != '') {
231
+				$temp_array['source_name'] = $row['source_name'];
232
+			}
233
+			if (isset($row['over_country']) && $row['over_country'] != '') {
234
+				$temp_array['over_country'] = $row['over_country'];
235
+			}
236
+			if (isset($row['distance']) && $row['distance'] != '') {
237
+				$temp_array['distance'] = $row['distance'];
238
+			}
206 239
 			$temp_array['query_number_rows'] = $num_rows;
207 240
 			$spotter_array[] = $temp_array;
208 241
 		}
209
-		if ($num_rows == 0) return array();
242
+		if ($num_rows == 0) {
243
+			return array();
244
+		}
210 245
 		$spotter_array[0]['query_number_rows'] = $num_rows;
211 246
 		return $spotter_array;
212 247
 	}	
@@ -232,8 +267,12 @@  discard block
 block discarded – undo
232 267
 			{
233 268
 				//$limit_query = " LIMIT ".$limit_array[0].",".$limit_array[1];
234 269
 				$limit_query = " LIMIT ".$limit_array[1]." OFFSET ".$limit_array[0];
235
-			} else $limit_query = "";
236
-		} else $limit_query = "";
270
+			} else {
271
+				$limit_query = "";
272
+			}
273
+		} else {
274
+			$limit_query = "";
275
+		}
237 276
 		if ($sort != "")
238 277
 		{
239 278
 			$search_orderby_array = $this->getOrderBy();
@@ -257,7 +296,9 @@  discard block
 block discarded – undo
257 296
 		global $global_query;
258 297
 		
259 298
 		date_default_timezone_set('UTC');
260
-		if ($id == '') return array();
299
+		if ($id == '') {
300
+			return array();
301
+		}
261 302
 		$additional_query = "marine_output.fammarine_id = :id";
262 303
 		$query_values = array(':id' => $id);
263 304
 		$query  = $global_query." WHERE ".$additional_query." ";
@@ -400,8 +441,11 @@  discard block
 block discarded – undo
400 441
 		$query .= " ORDER BY marine_output.source_name ASC";
401 442
 
402 443
 		$sth = $this->db->prepare($query);
403
-		if (!empty($query_values)) $sth->execute($query_values);
404
-		else $sth->execute();
444
+		if (!empty($query_values)) {
445
+			$sth->execute($query_values);
446
+		} else {
447
+			$sth->execute();
448
+		}
405 449
 
406 450
 		$source_array = array();
407 451
 		$temp_array = array();
@@ -456,8 +500,11 @@  discard block
 block discarded – undo
456 500
 		$sth = $this->db->prepare($query);
457 501
 		$sth->execute(array(':mmsi' => $mmsi));
458 502
 		$result = $sth->fetchAll(PDO::FETCH_ASSOC);
459
-		if (isset($result[0])) return $result[0];
460
-		else return array();
503
+		if (isset($result[0])) {
504
+			return $result[0];
505
+		} else {
506
+			return array();
507
+		}
461 508
 	}
462 509
 
463 510
 	/*
@@ -473,7 +520,9 @@  discard block
 block discarded – undo
473 520
 			date_default_timezone_set($globalTimezone);
474 521
 			$datetime = new DateTime();
475 522
 			$offset = $datetime->format('P');
476
-		} else $offset = '+00:00';
523
+		} else {
524
+			$offset = '+00:00';
525
+		}
477 526
 
478 527
 		if ($globalDBdriver == 'mysql') {
479 528
 			$query  = "SELECT DISTINCT DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) as date
@@ -703,9 +752,15 @@  discard block
 block discarded – undo
703 752
             		$latitude = 0;
704 753
             		$longitude = 0;
705 754
             	}
706
-                if ($heading == '' || $Common->isInteger($heading) === false) $heading = 0;
707
-                if ($groundspeed == '' || $Common->isInteger($groundspeed) === false) $groundspeed = 0;
708
-                if ($arrival_date == '') $arrival_date = NULL;
755
+                if ($heading == '' || $Common->isInteger($heading) === false) {
756
+                	$heading = 0;
757
+                }
758
+                if ($groundspeed == '' || $Common->isInteger($groundspeed) === false) {
759
+                	$groundspeed = 0;
760
+                }
761
+                if ($arrival_date == '') {
762
+                	$arrival_date = NULL;
763
+                }
709 764
 		$query  = "INSERT INTO marine_output (fammarine_id, ident, latitude, longitude, heading, ground_speed, date, format_source, source_name, mmsi, type, status,imo,arrival_port_name,arrival_port_date) 
710 765
 		    VALUES (:fammarine_id,:ident,:latitude,:longitude,:heading,:speed,:date,:format_source, :source_name,:mmsi,:type,:status,:imo,:arrival_port_name,:arrival_port_date)";
711 766
 
@@ -813,7 +868,9 @@  discard block
 block discarded – undo
813 868
 		global $globalDBdriver, $globalArchive;
814 869
 		//$filter_query = $this->getFilter($filters,true,true);
815 870
 		$Connection= new Connection($this->db);
816
-		if (!$Connection->tableExists('countries')) return array();
871
+		if (!$Connection->tableExists('countries')) {
872
+			return array();
873
+		}
817 874
 		require_once('class.SpotterLive.php');
818 875
 		if (!isset($globalArchive) || $globalArchive !== TRUE) {
819 876
 			$MarineLive = new MarineLive();
@@ -857,7 +914,9 @@  discard block
 block discarded – undo
857 914
 			$query = "SELECT c.name, c.iso3, c.iso2, count(c.name) as nb FROM countries c INNER JOIN (SELECT DISTINCT fammarine_id,over_country FROM marine_archive".$filter_query.") l ON c.iso2 = l.over_country ";
858 915
 		}
859 916
 		$query .= "GROUP BY c.name,c.iso3,c.iso2 ORDER BY nb DESC";
860
-		if ($limit) $query .= " LIMIT 10 OFFSET 0";
917
+		if ($limit) {
918
+			$query .= " LIMIT 10 OFFSET 0";
919
+		}
861 920
 
862 921
 		$sth = $this->db->prepare($query);
863 922
 		$sth->execute();
@@ -891,12 +950,18 @@  discard block
 block discarded – undo
891 950
 		$query  = "SELECT DISTINCT marine_output.ident, COUNT(marine_output.ident) AS callsign_icao_count 
892 951
                     FROM marine_output".$filter_query." marine_output.ident <> ''";
893 952
 		 if ($olderthanmonths > 0) {
894
-			if ($globalDBdriver == 'mysql') $query .= ' AND date < DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$olderthanmonths.' MONTH)';
895
-			else $query .= " AND marine_output.date < CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '".$olderthanmonths." MONTHS'";
953
+			if ($globalDBdriver == 'mysql') {
954
+				$query .= ' AND date < DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$olderthanmonths.' MONTH)';
955
+			} else {
956
+				$query .= " AND marine_output.date < CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '".$olderthanmonths." MONTHS'";
957
+			}
896 958
 		}
897 959
 		if ($sincedate != '') {
898
-			if ($globalDBdriver == 'mysql') $query .= " AND marine_output.date > '".$sincedate."'";
899
-			else $query .= " AND marine_output.date > CAST('".$sincedate."' AS TIMESTAMP)";
960
+			if ($globalDBdriver == 'mysql') {
961
+				$query .= " AND marine_output.date > '".$sincedate."'";
962
+			} else {
963
+				$query .= " AND marine_output.date > CAST('".$sincedate."' AS TIMESTAMP)";
964
+			}
900 965
 		}
901 966
 		$query_values = array();
902 967
 		if ($year != '') {
@@ -927,7 +992,9 @@  discard block
 block discarded – undo
927 992
 			}
928 993
 		}
929 994
 		$query .= " GROUP BY marine_output.ident ORDER BY callsign_icao_count DESC";
930
-		if ($limit) $query .= " LIMIT 10 OFFSET 0";
995
+		if ($limit) {
996
+			$query .= " LIMIT 10 OFFSET 0";
997
+		}
931 998
       		
932 999
 		$sth = $this->db->prepare($query);
933 1000
 		$sth->execute($query_values);
@@ -962,7 +1029,9 @@  discard block
 block discarded – undo
962 1029
 			date_default_timezone_set($globalTimezone);
963 1030
 			$datetime = new DateTime();
964 1031
 			$offset = $datetime->format('P');
965
-		} else $offset = '+00:00';
1032
+		} else {
1033
+			$offset = '+00:00';
1034
+		}
966 1035
 
967 1036
 		if ($globalDBdriver == 'mysql') {
968 1037
 			$query  = "SELECT DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count
@@ -1012,7 +1081,9 @@  discard block
 block discarded – undo
1012 1081
 			date_default_timezone_set($globalTimezone);
1013 1082
 			$datetime = new DateTime();
1014 1083
 			$offset = $datetime->format('P');
1015
-		} else $offset = '+00:00';
1084
+		} else {
1085
+			$offset = '+00:00';
1086
+		}
1016 1087
 		$filter_query = $this->getFilter($filters,true,true);
1017 1088
 		if ($globalDBdriver == 'mysql') {
1018 1089
 			$query  = "SELECT DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count
@@ -1058,7 +1129,9 @@  discard block
 block discarded – undo
1058 1129
 			date_default_timezone_set($globalTimezone);
1059 1130
 			$datetime = new DateTime();
1060 1131
 			$offset = $datetime->format('P');
1061
-		} else $offset = '+00:00';
1132
+		} else {
1133
+			$offset = '+00:00';
1134
+		}
1062 1135
 		$filter_query = $this->getFilter($filters,true,true);
1063 1136
 		if ($globalDBdriver == 'mysql') {
1064 1137
 			$query  = "SELECT DATE(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count
@@ -1106,7 +1179,9 @@  discard block
 block discarded – undo
1106 1179
 			date_default_timezone_set($globalTimezone);
1107 1180
 			$datetime = new DateTime();
1108 1181
 			$offset = $datetime->format('P');
1109
-		} else $offset = '+00:00';
1182
+		} else {
1183
+			$offset = '+00:00';
1184
+		}
1110 1185
 
1111 1186
 		if ($globalDBdriver == 'mysql') {
1112 1187
 			$query  = "SELECT YEAR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS year_name,MONTH(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS month_name, count(*) as date_count
@@ -1155,7 +1230,9 @@  discard block
 block discarded – undo
1155 1230
 			date_default_timezone_set($globalTimezone);
1156 1231
 			$datetime = new DateTime();
1157 1232
 			$offset = $datetime->format('P');
1158
-		} else $offset = '+00:00';
1233
+		} else {
1234
+			$offset = '+00:00';
1235
+		}
1159 1236
 		$filter_query = $this->getFilter($filters,true,true);
1160 1237
 		if ($globalDBdriver == 'mysql') {
1161 1238
 			$query  = "SELECT MONTH(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS month_name, YEAR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS year_name, count(*) as date_count
@@ -1204,7 +1281,9 @@  discard block
 block discarded – undo
1204 1281
 			date_default_timezone_set($globalTimezone);
1205 1282
 			$datetime = new DateTime();
1206 1283
 			$offset = $datetime->format('P');
1207
-		} else $offset = '+00:00';
1284
+		} else {
1285
+			$offset = '+00:00';
1286
+		}
1208 1287
 
1209 1288
 		$orderby_sql = '';
1210 1289
 		if ($orderby == "hour")
@@ -1273,7 +1352,9 @@  discard block
 block discarded – undo
1273 1352
 			date_default_timezone_set($globalTimezone);
1274 1353
 			$datetime = new DateTime($date);
1275 1354
 			$offset = $datetime->format('P');
1276
-		} else $offset = '+00:00';
1355
+		} else {
1356
+			$offset = '+00:00';
1357
+		}
1277 1358
 
1278 1359
 		if ($globalDBdriver == 'mysql') {
1279 1360
 			$query  = "SELECT HOUR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count
@@ -1321,7 +1402,9 @@  discard block
 block discarded – undo
1321 1402
 			date_default_timezone_set($globalTimezone);
1322 1403
 			$datetime = new DateTime();
1323 1404
 			$offset = $datetime->format('P');
1324
-		} else $offset = '+00:00';
1405
+		} else {
1406
+			$offset = '+00:00';
1407
+		}
1325 1408
 
1326 1409
 		if ($globalDBdriver == 'mysql') {
1327 1410
 			$query  = "SELECT HOUR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count
@@ -1386,8 +1469,11 @@  discard block
 block discarded – undo
1386 1469
 				$query_values = array_merge($query_values,array(':month' => $month));
1387 1470
 			}
1388 1471
 		}
1389
-		if (empty($query_values)) $queryi .= $this->getFilter($filters);
1390
-		else $queryi .= $this->getFilter($filters,true,true).substr($query,4);
1472
+		if (empty($query_values)) {
1473
+			$queryi .= $this->getFilter($filters);
1474
+		} else {
1475
+			$queryi .= $this->getFilter($filters,true,true).substr($query,4);
1476
+		}
1391 1477
 		
1392 1478
 		$sth = $this->db->prepare($queryi);
1393 1479
 		$sth->execute($query_values);
@@ -1424,8 +1510,11 @@  discard block
 block discarded – undo
1424 1510
 				$query_values = array_merge($query_values,array(':month' => $month));
1425 1511
 			}
1426 1512
 		}
1427
-		if (empty($query_values)) $queryi .= $this->getFilter($filters);
1428
-		else $queryi .= $this->getFilter($filters,true,true).substr($query,4);
1513
+		if (empty($query_values)) {
1514
+			$queryi .= $this->getFilter($filters);
1515
+		} else {
1516
+			$queryi .= $this->getFilter($filters,true,true).substr($query,4);
1517
+		}
1429 1518
 		
1430 1519
 		$sth = $this->db->prepare($queryi);
1431 1520
 		$sth->execute($query_values);
@@ -1447,7 +1536,9 @@  discard block
 block discarded – undo
1447 1536
 			date_default_timezone_set($globalTimezone);
1448 1537
 			$datetime = new DateTime();
1449 1538
 			$offset = $datetime->format('P');
1450
-		} else $offset = '+00:00';
1539
+		} else {
1540
+			$offset = '+00:00';
1541
+		}
1451 1542
 
1452 1543
 		if ($globalDBdriver == 'mysql') {
1453 1544
 			$query  = "SELECT HOUR(CONVERT_TZ(marine_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count
@@ -1551,7 +1642,9 @@  discard block
 block discarded – undo
1551 1642
 	*/
1552 1643
 	public function parseDirection($direction = 0)
1553 1644
 	{
1554
-		if ($direction == '') $direction = 0;
1645
+		if ($direction == '') {
1646
+			$direction = 0;
1647
+		}
1555 1648
 		$direction_array = array();
1556 1649
 		$temp_array = array();
1557 1650
 
@@ -1640,7 +1733,9 @@  discard block
 block discarded – undo
1640 1733
 		$longitude = filter_var($longitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION);
1641 1734
 	
1642 1735
 		$Connection = new Connection($this->db);
1643
-		if (!$Connection->tableExists('countries')) return '';
1736
+		if (!$Connection->tableExists('countries')) {
1737
+			return '';
1738
+		}
1644 1739
 	
1645 1740
 		try {
1646 1741
 			/*
@@ -1660,9 +1755,13 @@  discard block
 block discarded – undo
1660 1755
 			$sth->closeCursor();
1661 1756
 			if (count($row) > 0) {
1662 1757
 				return $row;
1663
-			} else return '';
1758
+			} else {
1759
+				return '';
1760
+			}
1664 1761
 		} catch (PDOException $e) {
1665
-			if (isset($globalDebug) && $globalDebug) echo 'Error : '.$e->getMessage()."\n";
1762
+			if (isset($globalDebug) && $globalDebug) {
1763
+				echo 'Error : '.$e->getMessage()."\n";
1764
+			}
1666 1765
 			return '';
1667 1766
 		}
1668 1767
 	
@@ -1680,7 +1779,9 @@  discard block
 block discarded – undo
1680 1779
 		$iso2 = filter_var($iso2,FILTER_SANITIZE_STRING);
1681 1780
 	
1682 1781
 		$Connection = new Connection($this->db);
1683
-		if (!$Connection->tableExists('countries')) return '';
1782
+		if (!$Connection->tableExists('countries')) {
1783
+			return '';
1784
+		}
1684 1785
 	
1685 1786
 		try {
1686 1787
 			$query = "SELECT name,iso2,iso3 FROM countries WHERE iso2 = :iso2 LIMIT 1";
@@ -1692,9 +1793,13 @@  discard block
 block discarded – undo
1692 1793
 			$sth->closeCursor();
1693 1794
 			if (count($row) > 0) {
1694 1795
 				return $row;
1695
-			} else return '';
1796
+			} else {
1797
+				return '';
1798
+			}
1696 1799
 		} catch (PDOException $e) {
1697
-			if (isset($globalDebug) && $globalDebug) echo 'Error : '.$e->getMessage()."\n";
1800
+			if (isset($globalDebug) && $globalDebug) {
1801
+				echo 'Error : '.$e->getMessage()."\n";
1802
+			}
1698 1803
 			return '';
1699 1804
 		}
1700 1805
 	
@@ -1712,7 +1817,9 @@  discard block
 block discarded – undo
1712 1817
 	{
1713 1818
 		global $globalBitlyAccessToken;
1714 1819
 		
1715
-		if ($globalBitlyAccessToken == '') return $url;
1820
+		if ($globalBitlyAccessToken == '') {
1821
+			return $url;
1822
+		}
1716 1823
         
1717 1824
 		$google_url = 'https://api-ssl.bitly.com/v3/shorten?access_token='.$globalBitlyAccessToken.'&longUrl='.$url;
1718 1825
 		
@@ -1788,7 +1895,9 @@  discard block
 block discarded – undo
1788 1895
 			}
1789 1896
 		}
1790 1897
 		$query .= " GROUP BY marine_output.type ORDER BY marine_type_count DESC";
1791
-		if ($limit) $query .= " LIMIT 10 OFFSET 0";
1898
+		if ($limit) {
1899
+			$query .= " LIMIT 10 OFFSET 0";
1900
+		}
1792 1901
 		$sth = $this->db->prepare($query);
1793 1902
 		$sth->execute($query_values);
1794 1903
 		$marine_array = array();
Please login to merge, or discard this patch.
require/class.Tracker.php 1 patch
Braces   +157 added lines, -56 removed lines patch added patch discarded remove patch
@@ -31,7 +31,9 @@  discard block
 block discarded – undo
31 31
 		if (isset($filter[0]['source'])) {
32 32
 			$filters = array_merge($filters,$filter);
33 33
 		}
34
-		if (is_array($globalFilter)) $filter = array_merge($filter,$globalFilter);
34
+		if (is_array($globalFilter)) {
35
+			$filter = array_merge($filter,$globalFilter);
36
+		}
35 37
 		$filter_query_join = '';
36 38
 		$filter_query_where = '';
37 39
 		foreach($filters as $flt) {
@@ -70,8 +72,11 @@  discard block
 block discarded – undo
70 72
 				$filter_query_where .= " AND EXTRACT(DAY FROM tracker_output.date) = '".$filter['day']."'";
71 73
 			}
72 74
 		}
73
-		if ($filter_query_where == '' && $where) $filter_query_where = ' WHERE';
74
-		elseif ($filter_query_where != '' && $and) $filter_query_where .= ' AND';
75
+		if ($filter_query_where == '' && $where) {
76
+			$filter_query_where = ' WHERE';
77
+		} elseif ($filter_query_where != '' && $and) {
78
+			$filter_query_where .= ' AND';
79
+		}
75 80
 		if ($filter_query_where != '') {
76 81
 			$filter_query_where = preg_replace('/^ AND/',' WHERE',$filter_query_where);
77 82
 		}
@@ -125,26 +130,43 @@  discard block
 block discarded – undo
125 130
 				$temp_array['spotter_id'] = $row['spotter_archive_id'];
126 131
 			} elseif (isset($row['spotter_archive_output_id'])) {
127 132
 				$temp_array['spotter_id'] = $row['spotter_archive_output_id'];
128
-			*/} 
129
-			elseif (isset($row['trackerid'])) {
133
+			*/} elseif (isset($row['trackerid'])) {
130 134
 				$temp_array['trackerid'] = $row['trackerid'];
131 135
 			} else {
132 136
 				$temp_array['trackerid'] = '';
133 137
 			}
134
-			if (isset($row['famtrackid'])) $temp_array['famtrackid'] = $row['famtrackid'];
135
-			if (isset($row['type'])) $temp_array['type'] = $row['type'];
136
-			if (isset($row['comment'])) $temp_array['comment'] = $row['comment'];
138
+			if (isset($row['famtrackid'])) {
139
+				$temp_array['famtrackid'] = $row['famtrackid'];
140
+			}
141
+			if (isset($row['type'])) {
142
+				$temp_array['type'] = $row['type'];
143
+			}
144
+			if (isset($row['comment'])) {
145
+				$temp_array['comment'] = $row['comment'];
146
+			}
137 147
 			$temp_array['ident'] = $row['ident'];
138
-			if (isset($row['latitude'])) $temp_array['latitude'] = $row['latitude'];
139
-			if (isset($row['longitude'])) $temp_array['longitude'] = $row['longitude'];
140
-			if (isset($row['format_source'])) $temp_array['format_source'] = $row['format_source'];
141
-			if (isset($row['altitude'])) $temp_array['altitude'] = $row['altitude'];
148
+			if (isset($row['latitude'])) {
149
+				$temp_array['latitude'] = $row['latitude'];
150
+			}
151
+			if (isset($row['longitude'])) {
152
+				$temp_array['longitude'] = $row['longitude'];
153
+			}
154
+			if (isset($row['format_source'])) {
155
+				$temp_array['format_source'] = $row['format_source'];
156
+			}
157
+			if (isset($row['altitude'])) {
158
+				$temp_array['altitude'] = $row['altitude'];
159
+			}
142 160
 			if (isset($row['heading'])) {
143 161
 				$temp_array['heading'] = $row['heading'];
144 162
 				$heading_direction = $this->parseDirection($row['heading']);
145
-				if (isset($heading_direction[0]['direction_fullname'])) $temp_array['heading_name'] = $heading_direction[0]['direction_fullname'];
163
+				if (isset($heading_direction[0]['direction_fullname'])) {
164
+					$temp_array['heading_name'] = $heading_direction[0]['direction_fullname'];
165
+				}
166
+			}
167
+			if (isset($row['ground_speed'])) {
168
+				$temp_array['ground_speed'] = $row['ground_speed'];
146 169
 			}
147
-			if (isset($row['ground_speed'])) $temp_array['ground_speed'] = $row['ground_speed'];
148 170
 			
149 171
 			if (isset($row['date'])) {
150 172
 				$dateArray = $this->parseDateString($row['date']);
@@ -187,13 +209,21 @@  discard block
 block discarded – undo
187 209
 			}
188 210
 			
189 211
 			$fromsource = NULL;
190
-			if (isset($row['source_name']) && $row['source_name'] != '') $temp_array['source_name'] = $row['source_name'];
191
-			if (isset($row['over_country']) && $row['over_country'] != '') $temp_array['over_country'] = $row['over_country'];
192
-			if (isset($row['distance']) && $row['distance'] != '') $temp_array['distance'] = $row['distance'];
212
+			if (isset($row['source_name']) && $row['source_name'] != '') {
213
+				$temp_array['source_name'] = $row['source_name'];
214
+			}
215
+			if (isset($row['over_country']) && $row['over_country'] != '') {
216
+				$temp_array['over_country'] = $row['over_country'];
217
+			}
218
+			if (isset($row['distance']) && $row['distance'] != '') {
219
+				$temp_array['distance'] = $row['distance'];
220
+			}
193 221
 			$temp_array['query_number_rows'] = $num_rows;
194 222
 			$spotter_array[] = $temp_array;
195 223
 		}
196
-		if ($num_rows == 0) return array();
224
+		if ($num_rows == 0) {
225
+			return array();
226
+		}
197 227
 		$spotter_array[0]['query_number_rows'] = $num_rows;
198 228
 		return $spotter_array;
199 229
 	}	
@@ -224,8 +254,12 @@  discard block
 block discarded – undo
224 254
 			{
225 255
 				//$limit_query = " LIMIT ".$limit_array[0].",".$limit_array[1];
226 256
 				$limit_query = " LIMIT ".$limit_array[1]." OFFSET ".$limit_array[0];
227
-			} else $limit_query = "";
228
-		} else $limit_query = "";
257
+			} else {
258
+				$limit_query = "";
259
+			}
260
+		} else {
261
+			$limit_query = "";
262
+		}
229 263
 		
230 264
 		if ($sort != "")
231 265
 		{
@@ -253,7 +287,9 @@  discard block
 block discarded – undo
253 287
 		global $global_query;
254 288
 		
255 289
 		date_default_timezone_set('UTC');
256
-		if ($id == '') return array();
290
+		if ($id == '') {
291
+			return array();
292
+		}
257 293
 		$additional_query = "tracker_output.famtrackid = :id";
258 294
 		$query_values = array(':id' => $id);
259 295
 		$query  = $global_query." WHERE ".$additional_query." ";
@@ -396,8 +432,11 @@  discard block
 block discarded – undo
396 432
 		$query .= " ORDER BY tracker_output.source_name ASC";
397 433
 
398 434
 		$sth = $this->db->prepare($query);
399
-		if (!empty($query_values)) $sth->execute($query_values);
400
-		else $sth->execute();
435
+		if (!empty($query_values)) {
436
+			$sth->execute($query_values);
437
+		} else {
438
+			$sth->execute();
439
+		}
401 440
 
402 441
 		$source_array = array();
403 442
 		$temp_array = array();
@@ -452,7 +491,9 @@  discard block
 block discarded – undo
452 491
 			date_default_timezone_set($globalTimezone);
453 492
 			$datetime = new DateTime();
454 493
 			$offset = $datetime->format('P');
455
-		} else $offset = '+00:00';
494
+		} else {
495
+			$offset = '+00:00';
496
+		}
456 497
 
457 498
 		if ($globalDBdriver == 'mysql') {
458 499
 			$query  = "SELECT DISTINCT DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) as date
@@ -608,7 +649,9 @@  discard block
 block discarded – undo
608 649
 			{
609 650
 				return false;
610 651
 			}
611
-		} else $altitude = 0;
652
+		} else {
653
+			$altitude = 0;
654
+		}
612 655
 		
613 656
 		if ($heading != "")
614 657
 		{
@@ -647,8 +690,12 @@  discard block
 block discarded – undo
647 690
             		$latitude = 0;
648 691
             		$longitude = 0;
649 692
             	}
650
-                if ($heading == '' || $Common->isInteger($heading) === false) $heading = 0;
651
-                if ($groundspeed == '' || $Common->isInteger($groundspeed) === false) $groundspeed = 0;
693
+                if ($heading == '' || $Common->isInteger($heading) === false) {
694
+                	$heading = 0;
695
+                }
696
+                if ($groundspeed == '' || $Common->isInteger($groundspeed) === false) {
697
+                	$groundspeed = 0;
698
+                }
652 699
                 $query  = "INSERT INTO tracker_output (famtrackid, ident, latitude, longitude, altitude, heading, ground_speed, date, format_source, source_name, comment, type) 
653 700
                 VALUES (:famtrackid,:ident,:latitude,:longitude,:altitude,:heading,:speed,:date,:format_source, :source_name,:comment,:type)";
654 701
 
@@ -757,7 +804,9 @@  discard block
 block discarded – undo
757 804
 		global $globalDBdriver, $globalArchive;
758 805
 		//$filter_query = $this->getFilter($filters,true,true);
759 806
 		$Connection= new Connection($this->db);
760
-		if (!$Connection->tableExists('countries')) return array();
807
+		if (!$Connection->tableExists('countries')) {
808
+			return array();
809
+		}
761 810
 		if (!isset($globalArchive) || $globalArchive !== TRUE) {
762 811
 			require_once('class.TrackerLive.php');
763 812
 			$TrackerLive = new TrackerLive();
@@ -800,7 +849,9 @@  discard block
 block discarded – undo
800 849
 			$query = "SELECT c.name, c.iso3, c.iso2, count(c.name) as nb FROM countries c INNER JOIN (SELECT DISTINCT famtrackid,over_country FROM tracker_archive".$filter_query.") l ON c.iso2 = l.over_country ";
801 850
 		}
802 851
 		$query .= "GROUP BY c.name,c.iso3,c.iso2 ORDER BY nb DESC";
803
-		if ($limit) $query .= " LIMIT 10 OFFSET 0";
852
+		if ($limit) {
853
+			$query .= " LIMIT 10 OFFSET 0";
854
+		}
804 855
       
805 856
 		
806 857
 		$sth = $this->db->prepare($query);
@@ -833,12 +884,18 @@  discard block
 block discarded – undo
833 884
 		$query  = "SELECT DISTINCT tracker_output.ident, COUNT(tracker_output.ident) AS callsign_icao_count 
834 885
                     FROM tracker_output".$filter_query." tracker_output.ident <> ''";
835 886
 		 if ($olderthanmonths > 0) {
836
-			if ($globalDBdriver == 'mysql') $query .= ' AND date < DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$olderthanmonths.' MONTH)';
837
-			else $query .= " AND tracker_output.date < CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '".$olderthanmonths." MONTHS'";
887
+			if ($globalDBdriver == 'mysql') {
888
+				$query .= ' AND date < DATE_SUB(UTC_TIMESTAMP(),INTERVAL '.$olderthanmonths.' MONTH)';
889
+			} else {
890
+				$query .= " AND tracker_output.date < CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '".$olderthanmonths." MONTHS'";
891
+			}
838 892
 		}
839 893
 		if ($sincedate != '') {
840
-			if ($globalDBdriver == 'mysql') $query .= " AND tracker_output.date > '".$sincedate."'";
841
-			else $query .= " AND tracker_output.date > CAST('".$sincedate."' AS TIMESTAMP)";
894
+			if ($globalDBdriver == 'mysql') {
895
+				$query .= " AND tracker_output.date > '".$sincedate."'";
896
+			} else {
897
+				$query .= " AND tracker_output.date > CAST('".$sincedate."' AS TIMESTAMP)";
898
+			}
842 899
 		}
843 900
 		$query_values = array();
844 901
 		if ($year != '') {
@@ -869,7 +926,9 @@  discard block
 block discarded – undo
869 926
 			}
870 927
 		}
871 928
 		$query .= " GROUP BY tracker_output.ident ORDER BY callsign_icao_count DESC";
872
-		if ($limit) $query .= " LIMIT 10 OFFSET 0";
929
+		if ($limit) {
930
+			$query .= " LIMIT 10 OFFSET 0";
931
+		}
873 932
       		
874 933
 		$sth = $this->db->prepare($query);
875 934
 		$sth->execute($query_values);
@@ -904,7 +963,9 @@  discard block
 block discarded – undo
904 963
 			date_default_timezone_set($globalTimezone);
905 964
 			$datetime = new DateTime();
906 965
 			$offset = $datetime->format('P');
907
-		} else $offset = '+00:00';
966
+		} else {
967
+			$offset = '+00:00';
968
+		}
908 969
 
909 970
 		if ($globalDBdriver == 'mysql') {
910 971
 			$query  = "SELECT DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count
@@ -954,7 +1015,9 @@  discard block
 block discarded – undo
954 1015
 			date_default_timezone_set($globalTimezone);
955 1016
 			$datetime = new DateTime();
956 1017
 			$offset = $datetime->format('P');
957
-		} else $offset = '+00:00';
1018
+		} else {
1019
+			$offset = '+00:00';
1020
+		}
958 1021
 		$filter_query = $this->getFilter($filters,true,true);
959 1022
 		if ($globalDBdriver == 'mysql') {
960 1023
 			$query  = "SELECT DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count
@@ -1000,7 +1063,9 @@  discard block
 block discarded – undo
1000 1063
 			date_default_timezone_set($globalTimezone);
1001 1064
 			$datetime = new DateTime();
1002 1065
 			$offset = $datetime->format('P');
1003
-		} else $offset = '+00:00';
1066
+		} else {
1067
+			$offset = '+00:00';
1068
+		}
1004 1069
 		$filter_query = $this->getFilter($filters,true,true);
1005 1070
 		if ($globalDBdriver == 'mysql') {
1006 1071
 			$query  = "SELECT DATE(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS date_name, count(*) as date_count
@@ -1048,7 +1113,9 @@  discard block
 block discarded – undo
1048 1113
 			date_default_timezone_set($globalTimezone);
1049 1114
 			$datetime = new DateTime();
1050 1115
 			$offset = $datetime->format('P');
1051
-		} else $offset = '+00:00';
1116
+		} else {
1117
+			$offset = '+00:00';
1118
+		}
1052 1119
 
1053 1120
 		if ($globalDBdriver == 'mysql') {
1054 1121
 			$query  = "SELECT YEAR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS year_name,MONTH(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS month_name, count(*) as date_count
@@ -1097,7 +1164,9 @@  discard block
 block discarded – undo
1097 1164
 			date_default_timezone_set($globalTimezone);
1098 1165
 			$datetime = new DateTime();
1099 1166
 			$offset = $datetime->format('P');
1100
-		} else $offset = '+00:00';
1167
+		} else {
1168
+			$offset = '+00:00';
1169
+		}
1101 1170
 		$filter_query = $this->getFilter($filters,true,true);
1102 1171
 		if ($globalDBdriver == 'mysql') {
1103 1172
 			$query  = "SELECT MONTH(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS month_name, YEAR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS year_name, count(*) as date_count
@@ -1146,7 +1215,9 @@  discard block
 block discarded – undo
1146 1215
 			date_default_timezone_set($globalTimezone);
1147 1216
 			$datetime = new DateTime();
1148 1217
 			$offset = $datetime->format('P');
1149
-		} else $offset = '+00:00';
1218
+		} else {
1219
+			$offset = '+00:00';
1220
+		}
1150 1221
 
1151 1222
 		$orderby_sql = '';
1152 1223
 		if ($orderby == "hour")
@@ -1215,7 +1286,9 @@  discard block
 block discarded – undo
1215 1286
 			date_default_timezone_set($globalTimezone);
1216 1287
 			$datetime = new DateTime($date);
1217 1288
 			$offset = $datetime->format('P');
1218
-		} else $offset = '+00:00';
1289
+		} else {
1290
+			$offset = '+00:00';
1291
+		}
1219 1292
 
1220 1293
 		if ($globalDBdriver == 'mysql') {
1221 1294
 			$query  = "SELECT HOUR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count
@@ -1263,7 +1336,9 @@  discard block
 block discarded – undo
1263 1336
 			date_default_timezone_set($globalTimezone);
1264 1337
 			$datetime = new DateTime();
1265 1338
 			$offset = $datetime->format('P');
1266
-		} else $offset = '+00:00';
1339
+		} else {
1340
+			$offset = '+00:00';
1341
+		}
1267 1342
 
1268 1343
 		if ($globalDBdriver == 'mysql') {
1269 1344
 			$query  = "SELECT HOUR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count
@@ -1328,8 +1403,11 @@  discard block
 block discarded – undo
1328 1403
 				$query_values = array_merge($query_values,array(':month' => $month));
1329 1404
 			}
1330 1405
 		}
1331
-		if (empty($query_values)) $queryi .= $this->getFilter($filters);
1332
-		else $queryi .= $this->getFilter($filters,true,true).substr($query,4);
1406
+		if (empty($query_values)) {
1407
+			$queryi .= $this->getFilter($filters);
1408
+		} else {
1409
+			$queryi .= $this->getFilter($filters,true,true).substr($query,4);
1410
+		}
1333 1411
 		
1334 1412
 		$sth = $this->db->prepare($queryi);
1335 1413
 		$sth->execute($query_values);
@@ -1366,8 +1444,11 @@  discard block
 block discarded – undo
1366 1444
 				$query_values = array_merge($query_values,array(':month' => $month));
1367 1445
 			}
1368 1446
 		}
1369
-		if (empty($query_values)) $queryi .= $this->getFilter($filters);
1370
-		else $queryi .= $this->getFilter($filters,true,true).substr($query,4);
1447
+		if (empty($query_values)) {
1448
+			$queryi .= $this->getFilter($filters);
1449
+		} else {
1450
+			$queryi .= $this->getFilter($filters,true,true).substr($query,4);
1451
+		}
1371 1452
 		
1372 1453
 		$sth = $this->db->prepare($queryi);
1373 1454
 		$sth->execute($query_values);
@@ -1389,7 +1470,9 @@  discard block
 block discarded – undo
1389 1470
 			date_default_timezone_set($globalTimezone);
1390 1471
 			$datetime = new DateTime();
1391 1472
 			$offset = $datetime->format('P');
1392
-		} else $offset = '+00:00';
1473
+		} else {
1474
+			$offset = '+00:00';
1475
+		}
1393 1476
 
1394 1477
 		if ($globalDBdriver == 'mysql') {
1395 1478
 			$query  = "SELECT HOUR(CONVERT_TZ(tracker_output.date,'+00:00', :offset)) AS hour_name, count(*) as hour_count
@@ -1493,7 +1576,9 @@  discard block
 block discarded – undo
1493 1576
 	*/
1494 1577
 	public function parseDirection($direction = 0)
1495 1578
 	{
1496
-		if ($direction == '') $direction = 0;
1579
+		if ($direction == '') {
1580
+			$direction = 0;
1581
+		}
1497 1582
 		$direction_array = array();
1498 1583
 		$temp_array = array();
1499 1584
 
@@ -1582,7 +1667,9 @@  discard block
 block discarded – undo
1582 1667
 		$longitude = filter_var($longitude,FILTER_SANITIZE_NUMBER_FLOAT,FILTER_FLAG_ALLOW_FRACTION);
1583 1668
 	
1584 1669
 		$Connection = new Connection($this->db);
1585
-		if (!$Connection->tableExists('countries')) return '';
1670
+		if (!$Connection->tableExists('countries')) {
1671
+			return '';
1672
+		}
1586 1673
 	
1587 1674
 		try {
1588 1675
 			/*
@@ -1602,9 +1689,13 @@  discard block
 block discarded – undo
1602 1689
 			$sth->closeCursor();
1603 1690
 			if (count($row) > 0) {
1604 1691
 				return $row;
1605
-			} else return '';
1692
+			} else {
1693
+				return '';
1694
+			}
1606 1695
 		} catch (PDOException $e) {
1607
-			if (isset($globalDebug) && $globalDebug) echo 'Error : '.$e->getMessage()."\n";
1696
+			if (isset($globalDebug) && $globalDebug) {
1697
+				echo 'Error : '.$e->getMessage()."\n";
1698
+			}
1608 1699
 			return '';
1609 1700
 		}
1610 1701
 	
@@ -1622,7 +1713,9 @@  discard block
 block discarded – undo
1622 1713
 		$iso2 = filter_var($iso2,FILTER_SANITIZE_STRING);
1623 1714
 	
1624 1715
 		$Connection = new Connection($this->db);
1625
-		if (!$Connection->tableExists('countries')) return '';
1716
+		if (!$Connection->tableExists('countries')) {
1717
+			return '';
1718
+		}
1626 1719
 	
1627 1720
 		try {
1628 1721
 			$query = "SELECT name,iso2,iso3 FROM countries WHERE iso2 = :iso2 LIMIT 1";
@@ -1634,9 +1727,13 @@  discard block
 block discarded – undo
1634 1727
 			$sth->closeCursor();
1635 1728
 			if (count($row) > 0) {
1636 1729
 				return $row;
1637
-			} else return '';
1730
+			} else {
1731
+				return '';
1732
+			}
1638 1733
 		} catch (PDOException $e) {
1639
-			if (isset($globalDebug) && $globalDebug) echo 'Error : '.$e->getMessage()."\n";
1734
+			if (isset($globalDebug) && $globalDebug) {
1735
+				echo 'Error : '.$e->getMessage()."\n";
1736
+			}
1640 1737
 			return '';
1641 1738
 		}
1642 1739
 	
@@ -1697,7 +1794,9 @@  discard block
 block discarded – undo
1697 1794
 			}
1698 1795
 		}
1699 1796
 		$query .= " GROUP BY tracker_output.type ORDER BY tracker_type_count DESC";
1700
-		if ($limit) $query .= " LIMIT 10 OFFSET 0";
1797
+		if ($limit) {
1798
+			$query .= " LIMIT 10 OFFSET 0";
1799
+		}
1701 1800
 		$sth = $this->db->prepare($query);
1702 1801
 		$sth->execute($query_values);
1703 1802
 		$tracker_array = array();
@@ -1724,7 +1823,9 @@  discard block
 block discarded – undo
1724 1823
 	{
1725 1824
 		global $globalBitlyAccessToken;
1726 1825
 		
1727
-		if ($globalBitlyAccessToken == '') return $url;
1826
+		if ($globalBitlyAccessToken == '') {
1827
+			return $url;
1828
+		}
1728 1829
         
1729 1830
 		$google_url = 'https://api-ssl.bitly.com/v3/shorten?access_token='.$globalBitlyAccessToken.'&longUrl='.$url;
1730 1831
 		
Please login to merge, or discard this patch.
install/class.update_db.php 1 patch
Braces   +931 added lines, -322 removed lines patch added patch discarded remove patch
@@ -17,7 +17,9 @@  discard block
 block discarded – undo
17 17
 		curl_setopt($ch, CURLOPT_URL, $url);
18 18
 		curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
19 19
 		curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
20
-		if ($referer != '') curl_setopt($ch, CURLOPT_REFERER, $referer);
20
+		if ($referer != '') {
21
+			curl_setopt($ch, CURLOPT_REFERER, $referer);
22
+		}
21 23
 		curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.2) Gecko/20090729 Firefox/3.5.2 GTB5');
22 24
 		curl_setopt($ch, CURLOPT_FILE, $fp);
23 25
 		curl_exec($ch);
@@ -28,12 +30,16 @@  discard block
 block discarded – undo
28 30
 	public static function gunzip($in_file,$out_file_name = '') {
29 31
 		//echo $in_file.' -> '.$out_file_name."\n";
30 32
 		$buffer_size = 4096; // read 4kb at a time
31
-		if ($out_file_name == '') $out_file_name = str_replace('.gz', '', $in_file); 
33
+		if ($out_file_name == '') {
34
+			$out_file_name = str_replace('.gz', '', $in_file);
35
+		}
32 36
 		if ($in_file != '' && file_exists($in_file)) {
33 37
 			// PHP version of Ubuntu use gzopen64 instead of gzopen
34
-			if (function_exists('gzopen')) $file = gzopen($in_file,'rb');
35
-			elseif (function_exists('gzopen64')) $file = gzopen64($in_file,'rb');
36
-			else {
38
+			if (function_exists('gzopen')) {
39
+				$file = gzopen($in_file,'rb');
40
+			} elseif (function_exists('gzopen64')) {
41
+				$file = gzopen64($in_file,'rb');
42
+			} else {
37 43
 				echo 'gzopen not available';
38 44
 				die;
39 45
 			}
@@ -54,8 +60,12 @@  discard block
 block discarded – undo
54 60
 			if ($res === TRUE) {
55 61
 				$zip->extractTo($path);
56 62
 				$zip->close();
57
-			} else return false;
58
-		} else return false;
63
+			} else {
64
+				return false;
65
+			}
66
+		} else {
67
+			return false;
68
+		}
59 69
 	}
60 70
 	
61 71
 	public static function connect_sqlite($database) {
@@ -70,7 +80,9 @@  discard block
 block discarded – undo
70 80
 	public static function retrieve_route_sqlite_to_dest($database_file) {
71 81
 		global $globalDebug, $globalTransaction;
72 82
 		//$query = 'TRUNCATE TABLE routes';
73
-		if ($globalDebug) echo " - Delete previous routes from DB -";
83
+		if ($globalDebug) {
84
+			echo " - Delete previous routes from DB -";
85
+		}
74 86
 		$query = "DELETE FROM routes WHERE Source = '' OR Source = :source";
75 87
 		$Connection = new Connection();
76 88
 		try {
@@ -81,7 +93,9 @@  discard block
 block discarded – undo
81 93
                         return "error : ".$e->getMessage();
82 94
                 }
83 95
 
84
-    		if ($globalDebug) echo " - Add routes to DB -";
96
+    		if ($globalDebug) {
97
+    			echo " - Add routes to DB -";
98
+    		}
85 99
     		update_db::connect_sqlite($database_file);
86 100
 		//$query = 'select Route.RouteID, Route.callsign, operator.Icao AS operator_icao, FromAir.Icao AS FromAirportIcao, ToAir.Icao AS ToAirportIcao from Route inner join operator ON Route.operatorId = operator.operatorId LEFT JOIN Airport AS FromAir ON route.FromAirportId = FromAir.AirportId LEFT JOIN Airport AS ToAir ON ToAir.AirportID = route.ToAirportID';
87 101
 		$query = "select Route.RouteID, Route.callsign, operator.Icao AS operator_icao, FromAir.Icao AS FromAirportIcao, ToAir.Icao AS ToAirportIcao, rstp.allstop AS AllStop from Route inner join operator ON Route.operatorId = operator.operatorId LEFT JOIN Airport AS FromAir ON route.FromAirportId = FromAir.AirportId LEFT JOIN Airport AS ToAir ON ToAir.AirportID = route.ToAirportID LEFT JOIN (select RouteId,GROUP_CONCAT(icao,' ') as allstop from routestop left join Airport as air ON routestop.AirportId = air.AirportID group by RouteID) AS rstp ON Route.RouteID = rstp.RouteID";
@@ -96,15 +110,21 @@  discard block
 block discarded – undo
96 110
 		$Connection = new Connection();
97 111
 		$sth_dest = $Connection->db->prepare($query_dest);
98 112
 		try {
99
-			if ($globalTransaction) $Connection->db->beginTransaction();
113
+			if ($globalTransaction) {
114
+				$Connection->db->beginTransaction();
115
+			}
100 116
             		while ($values = $sth->fetch(PDO::FETCH_ASSOC)) {
101 117
 				//$query_dest_values = array(':RouteID' => $values['RouteId'],':CallSign' => $values['Callsign'],':Operator_ICAO' => $values['operator_icao'],':FromAirport_ICAO' => $values['FromAirportIcao'],':ToAirport_ICAO' => $values['ToAirportIcao'],':routestop' => $values['AllStop'],':source' => $database_file);
102 118
 				$query_dest_values = array(':CallSign' => $values['Callsign'],':Operator_ICAO' => $values['operator_icao'],':FromAirport_ICAO' => $values['FromAirportIcao'],':ToAirport_ICAO' => $values['ToAirportIcao'],':routestop' => $values['AllStop'],':source' => $database_file);
103 119
 				$sth_dest->execute($query_dest_values);
104 120
             		}
105
-			if ($globalTransaction) $Connection->db->commit();
121
+			if ($globalTransaction) {
122
+				$Connection->db->commit();
123
+			}
106 124
 		} catch(PDOException $e) {
107
-			if ($globalTransaction) $Connection->db->rollBack(); 
125
+			if ($globalTransaction) {
126
+				$Connection->db->rollBack();
127
+			}
108 128
 			return "error : ".$e->getMessage();
109 129
 		}
110 130
                 return '';
@@ -112,7 +132,9 @@  discard block
 block discarded – undo
112 132
 	public static function retrieve_route_oneworld($database_file) {
113 133
 		global $globalDebug, $globalTransaction;
114 134
 		//$query = 'TRUNCATE TABLE routes';
115
-		if ($globalDebug) echo " - Delete previous routes from DB -";
135
+		if ($globalDebug) {
136
+			echo " - Delete previous routes from DB -";
137
+		}
116 138
 		$query = "DELETE FROM routes WHERE Source = '' OR Source = :source";
117 139
 		$Connection = new Connection();
118 140
 		try {
@@ -123,14 +145,18 @@  discard block
 block discarded – undo
123 145
                         return "error : ".$e->getMessage();
124 146
                 }
125 147
 
126
-    		if ($globalDebug) echo " - Add routes to DB -";
148
+    		if ($globalDebug) {
149
+    			echo " - Add routes to DB -";
150
+    		}
127 151
 		require_once(dirname(__FILE__).'/../require/class.Spotter.php');
128 152
 		$Spotter = new Spotter();
129 153
 		if ($fh = fopen($database_file,"r")) {
130 154
 			$query_dest = 'INSERT INTO routes (CallSign,Operator_ICAO,FromAirport_ICAO,FromAirport_Time,ToAirport_ICAO,ToAirport_Time,RouteStop,Source) VALUES (:CallSign, :Operator_ICAO, :FromAirport_ICAO,:FromAirport_Time, :ToAirport_ICAO, :ToAirport_Time,:routestop, :source)';
131 155
 			$Connection = new Connection();
132 156
 			$sth_dest = $Connection->db->prepare($query_dest);
133
-			if ($globalTransaction) $Connection->db->beginTransaction();
157
+			if ($globalTransaction) {
158
+				$Connection->db->beginTransaction();
159
+			}
134 160
 			while (!feof($fh)) {
135 161
 				$line = fgetcsv($fh,9999,',');
136 162
 				if ($line[0] != '') {
@@ -139,13 +165,17 @@  discard block
 block discarded – undo
139 165
 							$query_dest_values = array(':CallSign' => str_replace('*','',$line[7]),':Operator_ICAO' => '',':FromAirport_ICAO' => $Spotter->getAirportICAO($line[0]),':FromAirport_Time' => $line[5],':ToAirport_ICAO' => $Spotter->getAirportICAO($line[1]),':ToAirport_Time' => $line[6],':routestop' => '',':source' => 'oneworld');
140 166
 							$sth_dest->execute($query_dest_values);
141 167
 						} catch(PDOException $e) {
142
-							if ($globalTransaction) $Connection->db->rollBack(); 
168
+							if ($globalTransaction) {
169
+								$Connection->db->rollBack();
170
+							}
143 171
 							return "error : ".$e->getMessage();
144 172
 						}
145 173
 					}
146 174
 				}
147 175
 			}
148
-			if ($globalTransaction) $Connection->db->commit();
176
+			if ($globalTransaction) {
177
+				$Connection->db->commit();
178
+			}
149 179
 		}
150 180
                 return '';
151 181
 	}
@@ -153,7 +183,9 @@  discard block
 block discarded – undo
153 183
 	public static function retrieve_route_skyteam($database_file) {
154 184
 		global $globalDebug, $globalTransaction;
155 185
 		//$query = 'TRUNCATE TABLE routes';
156
-		if ($globalDebug) echo " - Delete previous routes from DB -";
186
+		if ($globalDebug) {
187
+			echo " - Delete previous routes from DB -";
188
+		}
157 189
 		$query = "DELETE FROM routes WHERE Source = '' OR Source = :source";
158 190
 		$Connection = new Connection();
159 191
 		try {
@@ -164,7 +196,9 @@  discard block
 block discarded – undo
164 196
                         return "error : ".$e->getMessage();
165 197
                 }
166 198
 
167
-    		if ($globalDebug) echo " - Add routes to DB -";
199
+    		if ($globalDebug) {
200
+    			echo " - Add routes to DB -";
201
+    		}
168 202
 
169 203
 		require_once(dirname(__FILE__).'/../require/class.Spotter.php');
170 204
 		$Spotter = new Spotter();
@@ -173,7 +207,9 @@  discard block
 block discarded – undo
173 207
 			$Connection = new Connection();
174 208
 			$sth_dest = $Connection->db->prepare($query_dest);
175 209
 			try {
176
-				if ($globalTransaction) $Connection->db->beginTransaction();
210
+				if ($globalTransaction) {
211
+					$Connection->db->beginTransaction();
212
+				}
177 213
 				while (!feof($fh)) {
178 214
 					$line = fgetcsv($fh,9999,',');
179 215
 					if ($line[0] != '') {
@@ -184,9 +220,13 @@  discard block
 block discarded – undo
184 220
 						}
185 221
 					}
186 222
 				}
187
-				if ($globalTransaction) $Connection->db->commit();
223
+				if ($globalTransaction) {
224
+					$Connection->db->commit();
225
+				}
188 226
 			} catch(PDOException $e) {
189
-				if ($globalTransaction) $Connection->db->rollBack(); 
227
+				if ($globalTransaction) {
228
+					$Connection->db->rollBack();
229
+				}
190 230
 				return "error : ".$e->getMessage();
191 231
 			}
192 232
 		}
@@ -229,11 +269,16 @@  discard block
 block discarded – undo
229 269
 		$sth_dest = $Connection->db->prepare($query_dest);
230 270
 		$sth_dest_owner = $Connection->db->prepare($query_dest_owner);
231 271
 		try {
232
-			if ($globalTransaction) $Connection->db->beginTransaction();
272
+			if ($globalTransaction) {
273
+				$Connection->db->beginTransaction();
274
+			}
233 275
             		while ($values = $sth->fetch(PDO::FETCH_ASSOC)) {
234 276
 			//$query_dest_values = array(':AircraftID' => $values['AircraftID'],':FirstCreated' => $values['FirstCreated'],':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':SerialNo' => $values['SerialNo'], ':OperatorFlagCode' => $values['OperatorFlagCode'], ':Manufacturer' => $values['Manufacturer'], ':Type' => $values['Type'], ':FirstRegDate' => $values['FirstRegDate'], ':CurrentRegDate' => $values['CurrentRegDate'], ':Country' => $values['Country'], ':PreviousID' => $values['PreviousID'], ':DeRegDate' => $values['DeRegDate'], ':Status' => $values['Status'], ':PopularName' => $values['PopularName'],':GenericName' => $values['GenericName'],':AircraftClass' => $values['AircraftClass'], ':Engines' => $values['Engines'], ':OwnershipStatus' => $values['OwnershipStatus'],':RegisteredOwners' => $values['RegisteredOwners'],':MTOW' => $values['MTOW'], ':TotalHours' => $values['TotalHours'],':YearBuilt' => $values['YearBuilt'], ':CofACategory' => $values['CofACategory'], ':CofAExpiry' => $values['CofAExpiry'], ':UserNotes' => $values['UserNotes'], ':Interested' => $values['Interested'], ':UserTag' => $values['UserTag'], ':InfoUrl' => $values['InfoURL'], ':PictureUrl1' => $values['PictureURL1'], ':PictureUrl2' => $values['PictureURL2'], ':PictureUrl3' => $values['PictureURL3'], ':UserBool1' => $values['UserBool1'], ':UserBool2' => $values['UserBool2'], ':UserBool3' => $values['UserBool3'], ':UserBool4' => $values['UserBool4'], ':UserBool5' => $values['UserBool5'], ':UserString1' => $values['UserString1'], ':UserString2' => $values['UserString2'], ':UserString3' => $values['UserString3'], ':UserString4' => $values['UserString4'], ':UserString5' => $values['UserString5'], ':UserInt1' => $values['UserInt1'], ':UserInt2' => $values['UserInt2'], ':UserInt3' => $values['UserInt3'], ':UserInt4' => $values['UserInt4'], ':UserInt5' => $values['UserInt5']);
235
-				if ($values['UserString4'] == 'M') $type = 'military';
236
-				else $type = null;
277
+				if ($values['UserString4'] == 'M') {
278
+					$type = 'military';
279
+				} else {
280
+					$type = null;
281
+				}
237 282
 				$query_dest_values = array(':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':source' => $database_file,':type' => $type);
238 283
 				$sth_dest->execute($query_dest_values);
239 284
 				if ($values['RegisteredOwners'] != '' && $values['RegisteredOwners'] != NULL && $values['RegisteredOwners'] != 'Private') {
@@ -241,7 +286,9 @@  discard block
 block discarded – undo
241 286
 				    $sth_dest_owner->execute($query_dest_owner_values);
242 287
 				}
243 288
             		}
244
-			if ($globalTransaction) $Connection->db->commit();
289
+			if ($globalTransaction) {
290
+				$Connection->db->commit();
291
+			}
245 292
 		} catch(PDOException $e) {
246 293
 			return "error : ".$e->getMessage();
247 294
 		}
@@ -278,7 +325,9 @@  discard block
 block discarded – undo
278 325
 			$Connection = new Connection();
279 326
 			$sth_dest = $Connection->db->prepare($query_dest);
280 327
 			try {
281
-				if ($globalTransaction) $Connection->db->beginTransaction();
328
+				if ($globalTransaction) {
329
+					$Connection->db->beginTransaction();
330
+				}
282 331
             			while (!feof($fh)) {
283 332
             				$values = array();
284 333
             				$line = $Common->hex2str(fgets($fh,9999));
@@ -289,7 +338,9 @@  discard block
 block discarded – undo
289 338
             				// Check if we can find ICAO, else set it to GLID
290 339
             				$aircraft_name_split = explode(' ',$aircraft_name);
291 340
             				$search_more = '';
292
-            				if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'";
341
+            				if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) {
342
+            					$search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'";
343
+            				}
293 344
             				$query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more;
294 345
             				$sth_search = $Connection->db->prepare($query_search);
295 346
 					try {
@@ -302,7 +353,9 @@  discard block
 block discarded – undo
302 353
 					} catch(PDOException $e) {
303 354
 						return "error : ".$e->getMessage();
304 355
 					}
305
-					if (!isset($values['ICAOTypeCode'])) $values['ICAOTypeCode'] = 'GLID';
356
+					if (!isset($values['ICAOTypeCode'])) {
357
+						$values['ICAOTypeCode'] = 'GLID';
358
+					}
306 359
 					// Add data to db
307 360
 					if ($values['Registration'] != '' && $values['Registration'] != '0000') {
308 361
 						//$query_dest_values = array(':AircraftID' => $values['AircraftID'],':FirstCreated' => $values['FirstCreated'],':LastModified' => $values['LastModified'],':ModeS' => $values['ModeS'],':ModeSCountry' => $values['ModeSCountry'],':Registration' => $values['Registration'],':ICAOTypeCode' => $values['ICAOTypeCode'],':SerialNo' => $values['SerialNo'], ':OperatorFlagCode' => $values['OperatorFlagCode'], ':Manufacturer' => $values['Manufacturer'], ':Type' => $values['Type'], ':FirstRegDate' => $values['FirstRegDate'], ':CurrentRegDate' => $values['CurrentRegDate'], ':Country' => $values['Country'], ':PreviousID' => $values['PreviousID'], ':DeRegDate' => $values['DeRegDate'], ':Status' => $values['Status'], ':PopularName' => $values['PopularName'],':GenericName' => $values['GenericName'],':AircraftClass' => $values['AircraftClass'], ':Engines' => $values['Engines'], ':OwnershipStatus' => $values['OwnershipStatus'],':RegisteredOwners' => $values['RegisteredOwners'],':MTOW' => $values['MTOW'], ':TotalHours' => $values['TotalHours'],':YearBuilt' => $values['YearBuilt'], ':CofACategory' => $values['CofACategory'], ':CofAExpiry' => $values['CofAExpiry'], ':UserNotes' => $values['UserNotes'], ':Interested' => $values['Interested'], ':UserTag' => $values['UserTag'], ':InfoUrl' => $values['InfoURL'], ':PictureUrl1' => $values['PictureURL1'], ':PictureUrl2' => $values['PictureURL2'], ':PictureUrl3' => $values['PictureURL3'], ':UserBool1' => $values['UserBool1'], ':UserBool2' => $values['UserBool2'], ':UserBool3' => $values['UserBool3'], ':UserBool4' => $values['UserBool4'], ':UserBool5' => $values['UserBool5'], ':UserString1' => $values['UserString1'], ':UserString2' => $values['UserString2'], ':UserString3' => $values['UserString3'], ':UserString4' => $values['UserString4'], ':UserString5' => $values['UserString5'], ':UserInt1' => $values['UserInt1'], ':UserInt2' => $values['UserInt2'], ':UserInt3' => $values['UserInt3'], ':UserInt4' => $values['UserInt4'], ':UserInt5' => $values['UserInt5']);
@@ -311,7 +364,9 @@  discard block
 block discarded – undo
311 364
 						$sth_dest->execute($query_dest_values);
312 365
 					}
313 366
 				}
314
-				if ($globalTransaction) $Connection->db->commit();
367
+				if ($globalTransaction) {
368
+					$Connection->db->commit();
369
+				}
315 370
 			} catch(PDOException $e) {
316 371
 				return "error : ".$e->getMessage();
317 372
 			}
@@ -347,7 +402,9 @@  discard block
 block discarded – undo
347 402
 			$Connection = new Connection();
348 403
 			$sth_dest = $Connection->db->prepare($query_dest);
349 404
 			try {
350
-				if ($globalTransaction) $Connection->db->beginTransaction();
405
+				if ($globalTransaction) {
406
+					$Connection->db->beginTransaction();
407
+				}
351 408
 				$tmp = fgetcsv($fh,9999,',',"'");
352 409
             			while (!feof($fh)) {
353 410
             				$line = fgetcsv($fh,9999,',',"'");
@@ -360,13 +417,17 @@  discard block
 block discarded – undo
360 417
             				// Check if we can find ICAO, else set it to GLID
361 418
             				$aircraft_name_split = explode(' ',$aircraft_name);
362 419
             				$search_more = '';
363
-            				if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) $search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'";
420
+            				if (count($aircraft_name) > 1 && strlen($aircraft_name_split[1]) > 3) {
421
+            					$search_more .= " AND LIKE '%".$aircraft_name_split[0]."%'";
422
+            				}
364 423
             				$query_search = "SELECT * FROM aircraft WHERE type LIKE '%".$aircraft_name."%'".$search_more;
365 424
             				$sth_search = $Connection->db->prepare($query_search);
366 425
 					try {
367 426
                                     		$sth_search->execute();
368 427
 	            				$result = $sth_search->fetch(PDO::FETCH_ASSOC);
369
-	            				if (isset($result['icao']) && $result['icao'] != '') $values['ICAOTypeCode'] = $result['icao'];
428
+	            				if (isset($result['icao']) && $result['icao'] != '') {
429
+	            					$values['ICAOTypeCode'] = $result['icao'];
430
+	            				}
370 431
 					} catch(PDOException $e) {
371 432
 						return "error : ".$e->getMessage();
372 433
 					}
@@ -379,7 +440,9 @@  discard block
 block discarded – undo
379 440
 						$sth_dest->execute($query_dest_values);
380 441
 					}
381 442
 				}
382
-				if ($globalTransaction) $Connection->db->commit();
443
+				if ($globalTransaction) {
444
+					$Connection->db->commit();
445
+				}
383 446
 			} catch(PDOException $e) {
384 447
 				return "error : ".$e->getMessage();
385 448
 			}
@@ -418,7 +481,9 @@  discard block
 block discarded – undo
418 481
 			$sth_dest = $Connection->db->prepare($query_dest);
419 482
 			$sth_modes = $Connection->db->prepare($query_modes);
420 483
 			try {
421
-				if ($globalTransaction) $Connection->db->beginTransaction();
484
+				if ($globalTransaction) {
485
+					$Connection->db->beginTransaction();
486
+				}
422 487
 				$tmp = fgetcsv($fh,9999,',','"');
423 488
             			while (!feof($fh)) {
424 489
             				$line = fgetcsv($fh,9999,',','"');
@@ -428,16 +493,22 @@  discard block
 block discarded – undo
428 493
             				    $values['registration'] = $line[0];
429 494
             				    $values['base'] = $line[4];
430 495
             				    $values['owner'] = $line[5];
431
-            				    if ($line[6] == '') $values['date_first_reg'] = null;
432
-					    else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6]));
496
+            				    if ($line[6] == '') {
497
+            				    	$values['date_first_reg'] = null;
498
+            				    } else {
499
+					    	$values['date_first_reg'] = date("Y-m-d",strtotime($line[6]));
500
+					    }
433 501
 					    $values['cancel'] = $line[7];
434 502
 					} elseif ($country == 'EI') {
435 503
 					    // TODO : add modeS & reg to aircraft_modes
436 504
             				    $values['registration'] = $line[0];
437 505
             				    $values['base'] = $line[3];
438 506
             				    $values['owner'] = $line[2];
439
-            				    if ($line[1] == '') $values['date_first_reg'] = null;
440
-					    else $values['date_first_reg'] = date("Y-m-d",strtotime($line[1]));
507
+            				    if ($line[1] == '') {
508
+            				    	$values['date_first_reg'] = null;
509
+            				    } else {
510
+					    	$values['date_first_reg'] = date("Y-m-d",strtotime($line[1]));
511
+					    }
441 512
 					    $values['cancel'] = '';
442 513
 					    $values['modes'] = $line[7];
443 514
 					    $values['icao'] = $line[8];
@@ -456,16 +527,22 @@  discard block
 block discarded – undo
456 527
             				    $values['registration'] = $line[3];
457 528
             				    $values['base'] = null;
458 529
             				    $values['owner'] = $line[5];
459
-            				    if ($line[18] == '') $values['date_first_reg'] = null;
460
-					    else $values['date_first_reg'] = date("Y-m-d",strtotime($line[18]));
530
+            				    if ($line[18] == '') {
531
+            				    	$values['date_first_reg'] = null;
532
+            				    } else {
533
+					    	$values['date_first_reg'] = date("Y-m-d",strtotime($line[18]));
534
+					    }
461 535
 					    $values['cancel'] = '';
462 536
 					} elseif ($country == 'VH') {
463 537
 					    // TODO : add modeS & reg to aircraft_modes
464 538
             				    $values['registration'] = $line[0];
465 539
             				    $values['base'] = null;
466 540
             				    $values['owner'] = $line[12];
467
-            				    if ($line[28] == '') $values['date_first_reg'] = null;
468
-					    else $values['date_first_reg'] = date("Y-m-d",strtotime($line[28]));
541
+            				    if ($line[28] == '') {
542
+            				    	$values['date_first_reg'] = null;
543
+            				    } else {
544
+					    	$values['date_first_reg'] = date("Y-m-d",strtotime($line[28]));
545
+					    }
469 546
 
470 547
 					    $values['cancel'] = $line[39];
471 548
 					} elseif ($country == 'OE' || $country == '9A' || $country == 'VP' || $country == 'LX' || $country == 'P2' || $country == 'HC') {
@@ -484,29 +561,41 @@  discard block
 block discarded – undo
484 561
             				    $values['registration'] = $line[0];
485 562
             				    $values['base'] = null;
486 563
             				    $values['owner'] = $line[8];
487
-            				    if ($line[7] == '') $values['date_first_reg'] = null;
488
-					    else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7]));
564
+            				    if ($line[7] == '') {
565
+            				    	$values['date_first_reg'] = null;
566
+            				    } else {
567
+					    	$values['date_first_reg'] = date("Y-m-d",strtotime($line[7]));
568
+					    }
489 569
 					    $values['cancel'] = '';
490 570
 					} elseif ($country == 'PP') {
491 571
             				    $values['registration'] = $line[0];
492 572
             				    $values['base'] = null;
493 573
             				    $values['owner'] = $line[4];
494
-            				    if ($line[6] == '') $values['date_first_reg'] = null;
495
-					    else $values['date_first_reg'] = date("Y-m-d",strtotime($line[6]));
574
+            				    if ($line[6] == '') {
575
+            				    	$values['date_first_reg'] = null;
576
+            				    } else {
577
+					    	$values['date_first_reg'] = date("Y-m-d",strtotime($line[6]));
578
+					    }
496 579
 					    $values['cancel'] = $line[7];
497 580
 					} elseif ($country == 'E7') {
498 581
             				    $values['registration'] = $line[0];
499 582
             				    $values['base'] = null;
500 583
             				    $values['owner'] = $line[4];
501
-            				    if ($line[5] == '') $values['date_first_reg'] = null;
502
-					    else $values['date_first_reg'] = date("Y-m-d",strtotime($line[5]));
584
+            				    if ($line[5] == '') {
585
+            				    	$values['date_first_reg'] = null;
586
+            				    } else {
587
+					    	$values['date_first_reg'] = date("Y-m-d",strtotime($line[5]));
588
+					    }
503 589
 					    $values['cancel'] = '';
504 590
 					} elseif ($country == '8Q') {
505 591
             				    $values['registration'] = $line[0];
506 592
             				    $values['base'] = null;
507 593
             				    $values['owner'] = $line[3];
508
-            				    if ($line[7] == '') $values['date_first_reg'] = null;
509
-					    else $values['date_first_reg'] = date("Y-m-d",strtotime($line[7]));
594
+            				    if ($line[7] == '') {
595
+            				    	$values['date_first_reg'] = null;
596
+            				    } else {
597
+					    	$values['date_first_reg'] = date("Y-m-d",strtotime($line[7]));
598
+					    }
510 599
 					    $values['cancel'] = '';
511 600
 					} elseif ($country == 'ZK') {
512 601
             				    $values['registration'] = $line[0];
@@ -551,7 +640,9 @@  discard block
 block discarded – undo
551 640
 						$sth_modes->execute($query_modes_values);
552 641
 					}
553 642
 				}
554
-				if ($globalTransaction) $Connection->db->commit();
643
+				if ($globalTransaction) {
644
+					$Connection->db->commit();
645
+				}
555 646
 			} catch(PDOException $e) {
556 647
 				return "error : ".$e->getMessage();
557 648
 			}
@@ -685,25 +776,45 @@  discard block
 block discarded – undo
685 776
 		    VALUES (:airport_id, :name, :city, :country, :iata, :icao, :latitude, :longitude, :altitude, :type, :home_link, :wikipedia_link, :image_thumb, :image)";
686 777
 		$Connection = new Connection();
687 778
 		$sth_dest = $Connection->db->prepare($query_dest);
688
-		if ($globalTransaction) $Connection->db->beginTransaction();
779
+		if ($globalTransaction) {
780
+			$Connection->db->beginTransaction();
781
+		}
689 782
   
690 783
 		$i = 0;
691 784
 		while($row = sparql_fetch_array($result))
692 785
 		{
693 786
 			if ($i >= 1) {
694 787
 			//print_r($row);
695
-			if (!isset($row['iata'])) $row['iata'] = '';
696
-			if (!isset($row['icao'])) $row['icao'] = '';
697
-			if (!isset($row['type'])) $row['type'] = '';
698
-			if (!isset($row['altitude'])) $row['altitude'] = '';
788
+			if (!isset($row['iata'])) {
789
+				$row['iata'] = '';
790
+			}
791
+			if (!isset($row['icao'])) {
792
+				$row['icao'] = '';
793
+			}
794
+			if (!isset($row['type'])) {
795
+				$row['type'] = '';
796
+			}
797
+			if (!isset($row['altitude'])) {
798
+				$row['altitude'] = '';
799
+			}
699 800
 			if (isset($row['city_bis'])) {
700 801
 				$row['city'] = $row['city_bis'];
701 802
 			}
702
-			if (!isset($row['city'])) $row['city'] = '';
703
-			if (!isset($row['country'])) $row['country'] = '';
704
-			if (!isset($row['homepage'])) $row['homepage'] = '';
705
-			if (!isset($row['wikipedia_page'])) $row['wikipedia_page'] = '';
706
-			if (!isset($row['name'])) continue;
803
+			if (!isset($row['city'])) {
804
+				$row['city'] = '';
805
+			}
806
+			if (!isset($row['country'])) {
807
+				$row['country'] = '';
808
+			}
809
+			if (!isset($row['homepage'])) {
810
+				$row['homepage'] = '';
811
+			}
812
+			if (!isset($row['wikipedia_page'])) {
813
+				$row['wikipedia_page'] = '';
814
+			}
815
+			if (!isset($row['name'])) {
816
+				continue;
817
+			}
707 818
 			if (!isset($row['image'])) {
708 819
 				$row['image'] = '';
709 820
 				$row['image_thumb'] = '';
@@ -739,7 +850,9 @@  discard block
 block discarded – undo
739 850
 
740 851
 			$i++;
741 852
 		}
742
-		if ($globalTransaction) $Connection->db->commit();
853
+		if ($globalTransaction) {
854
+			$Connection->db->commit();
855
+		}
743 856
 		echo "Delete duplicate rows...\n";
744 857
 		$query = 'ALTER IGNORE TABLE airport ADD UNIQUE INDEX icaoidx (icao)';
745 858
 		try {
@@ -751,7 +864,9 @@  discard block
 block discarded – undo
751 864
                 }
752 865
 
753 866
 
754
-		if ($globalDebug) echo "Insert Not available Airport...\n";
867
+		if ($globalDebug) {
868
+			echo "Insert Not available Airport...\n";
869
+		}
755 870
 		$query = "INSERT INTO airport (`airport_id`,`name`,`city`,`country`,`iata`,`icao`,`latitude`,`longitude`,`altitude`,`type`,`home_link`,`wikipedia_link`,`image`,`image_thumb`)
756 871
 		    VALUES (:airport_id, :name, :city, :country, :iata, :icao, :latitude, :longitude, :altitude, :type, :home_link, :wikipedia_link, :image, :image_thumb)";
757 872
 		$query_values = array(':airport_id' => $i, ':name' => 'Not available',':iata' => 'NA',':icao' => 'NA',':latitude' => '0',':longitude' => '0',':altitude' => '0',':type' => 'NA',':city' => 'N/A',':country' => 'N/A',':home_link' => '',':wikipedia_link' => '',':image' => '',':image_thumb' => '');
@@ -778,7 +893,9 @@  discard block
 block discarded – undo
778 893
 		$delimiter = ',';
779 894
 		$out_file = $tmp_dir.'airports.csv';
780 895
 		update_db::download('http://ourairports.com/data/airports.csv',$out_file);
781
-		if (!file_exists($out_file) || !is_readable($out_file)) return FALSE;
896
+		if (!file_exists($out_file) || !is_readable($out_file)) {
897
+			return FALSE;
898
+		}
782 899
 		echo "Add data from ourairports.com...\n";
783 900
 
784 901
 		$header = NULL;
@@ -788,8 +905,9 @@  discard block
 block discarded – undo
788 905
 			//$Connection->db->beginTransaction();
789 906
 			while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
790 907
 			{
791
-				if(!$header) $header = $row;
792
-				else {
908
+				if(!$header) {
909
+					$header = $row;
910
+				} else {
793 911
 					$data = array();
794 912
 					$data = array_combine($header, $row);
795 913
 					try {
@@ -827,7 +945,9 @@  discard block
 block discarded – undo
827 945
 		echo "Download data from another free database...\n";
828 946
 		$out_file = $tmp_dir.'GlobalAirportDatabase.zip';
829 947
 		update_db::download('http://www.partow.net/downloads/GlobalAirportDatabase.zip',$out_file);
830
-		if (!file_exists($out_file) || !is_readable($out_file)) return FALSE;
948
+		if (!file_exists($out_file) || !is_readable($out_file)) {
949
+			return FALSE;
950
+		}
831 951
 		update_db::unzip($out_file);
832 952
 		$header = NULL;
833 953
 		echo "Add data from another free database...\n";
@@ -838,8 +958,9 @@  discard block
 block discarded – undo
838 958
 			//$Connection->db->beginTransaction();
839 959
 			while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
840 960
 			{
841
-				if(!$header) $header = $row;
842
-				else {
961
+				if(!$header) {
962
+					$header = $row;
963
+				} else {
843 964
 					$data = $row;
844 965
 
845 966
 					$query = 'UPDATE airport SET `city` = :city, `country` = :country WHERE icao = :icao';
@@ -1015,7 +1136,9 @@  discard block
 block discarded – undo
1015 1136
 		if (($handle = fopen($tmp_dir.'MASTER.txt', 'r')) !== FALSE)
1016 1137
 		{
1017 1138
 			$i = 0;
1018
-			if ($globalTransaction) $Connection->db->beginTransaction();
1139
+			if ($globalTransaction) {
1140
+				$Connection->db->beginTransaction();
1141
+			}
1019 1142
 			while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
1020 1143
 			{
1021 1144
 				if ($i > 0) {
@@ -1028,7 +1151,9 @@  discard block
 block discarded – undo
1028 1151
 					}
1029 1152
 					$result_search = $sths->fetchAll(PDO::FETCH_ASSOC);
1030 1153
 					if (!empty($result_search)) {
1031
-						if ($globalDebug) echo '.';
1154
+						if ($globalDebug) {
1155
+							echo '.';
1156
+						}
1032 1157
 							//if ($globalDBdriver == 'mysql') {
1033 1158
 							//	$queryi = 'INSERT INTO faamfr (mfr,icao) VALUES (:mfr,:icao) ON DUPLICATE KEY UPDATE icao = :icao';
1034 1159
 							//} else {
@@ -1050,8 +1175,12 @@  discard block
 block discarded – undo
1050 1175
 						}
1051 1176
 						$result_search_mfr = $sthsm->fetchAll(PDO::FETCH_ASSOC);
1052 1177
 						if (!empty($result_search_mfr)) {
1053
-							if (trim($data[16]) == '' && trim($data[23]) != '') $data[16] = $data[23];
1054
-							if (trim($data[16]) == '' && trim($data[15]) != '') $data[16] = $data[15];
1178
+							if (trim($data[16]) == '' && trim($data[23]) != '') {
1179
+								$data[16] = $data[23];
1180
+							}
1181
+							if (trim($data[16]) == '' && trim($data[15]) != '') {
1182
+								$data[16] = $data[15];
1183
+							}
1055 1184
 							$queryf = 'INSERT INTO aircraft_modes (FirstCreated,LastModified,ModeS,ModeSCountry,Registration,ICAOTypeCode,Source) VALUES (:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:source)';
1056 1185
 							try {
1057 1186
 								$sthf = $Connection->db->prepare($queryf);
@@ -1062,7 +1191,9 @@  discard block
 block discarded – undo
1062 1191
 						}
1063 1192
 					}
1064 1193
 					if (strtotime($data[29]) > time()) {
1065
-						if ($globalDebug) echo 'i';
1194
+						if ($globalDebug) {
1195
+							echo 'i';
1196
+						}
1066 1197
 						$query = 'INSERT INTO aircraft_owner (registration,base,owner,date_first_reg,Source) VALUES (:registration,:base,:owner,:date_first_reg,:source)';
1067 1198
 						try {
1068 1199
 							$sth = $Connection->db->prepare($query);
@@ -1073,13 +1204,19 @@  discard block
 block discarded – undo
1073 1204
 					}
1074 1205
 				}
1075 1206
 				if ($i % 90 == 0) {
1076
-					if ($globalTransaction) $Connection->db->commit();
1077
-					if ($globalTransaction) $Connection->db->beginTransaction();
1207
+					if ($globalTransaction) {
1208
+						$Connection->db->commit();
1209
+					}
1210
+					if ($globalTransaction) {
1211
+						$Connection->db->beginTransaction();
1212
+					}
1078 1213
 				}
1079 1214
 				$i++;
1080 1215
 			}
1081 1216
 			fclose($handle);
1082
-			if ($globalTransaction) $Connection->db->commit();
1217
+			if ($globalTransaction) {
1218
+				$Connection->db->commit();
1219
+			}
1083 1220
 		}
1084 1221
 		print_r($mfr);
1085 1222
 		return '';
@@ -1104,11 +1241,15 @@  discard block
 block discarded – undo
1104 1241
 			$i = 0;
1105 1242
 			//$Connection->db->setAttribute(PDO::ATTR_AUTOCOMMIT, FALSE);
1106 1243
 			//$Connection->db->beginTransaction();
1107
-			if ($globalTransaction) $Connection->db->beginTransaction();
1244
+			if ($globalTransaction) {
1245
+				$Connection->db->beginTransaction();
1246
+			}
1108 1247
 			while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
1109 1248
 			{
1110 1249
 				if ($i > 0) {
1111
-					if ($data[1] == 'NULL') $data[1] = $data[0];
1250
+					if ($data[1] == 'NULL') {
1251
+						$data[1] = $data[0];
1252
+					}
1112 1253
 					$query = 'INSERT INTO aircraft_modes (FirstCreated,LastModified,ModeS,ModeSCountry,Registration,ICAOTypeCode,type_flight,Source) VALUES (:FirstCreated,:LastModified,:ModeS,:ModeSCountry,:Registration,:ICAOTypeCode,:type_flight,:source)';
1113 1254
 					try {
1114 1255
 						$sth = $Connection->db->prepare($query);
@@ -1120,7 +1261,9 @@  discard block
 block discarded – undo
1120 1261
 				$i++;
1121 1262
 			}
1122 1263
 			fclose($handle);
1123
-			if ($globalTransaction) $Connection->db->commit();
1264
+			if ($globalTransaction) {
1265
+				$Connection->db->commit();
1266
+			}
1124 1267
 		}
1125 1268
 		return '';
1126 1269
         }
@@ -1141,7 +1284,9 @@  discard block
 block discarded – undo
1141 1284
 		if (($handle = fopen($tmp_dir.'owners.tsv', 'r')) !== FALSE)
1142 1285
 		{
1143 1286
 			$i = 0;
1144
-			if ($globalTransaction) $Connection->db->beginTransaction();
1287
+			if ($globalTransaction) {
1288
+				$Connection->db->beginTransaction();
1289
+			}
1145 1290
 			while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
1146 1291
 			{
1147 1292
 				if ($i > 0) {
@@ -1157,7 +1302,9 @@  discard block
 block discarded – undo
1157 1302
 				$i++;
1158 1303
 			}
1159 1304
 			fclose($handle);
1160
-			if ($globalTransaction) $Connection->db->commit();
1305
+			if ($globalTransaction) {
1306
+				$Connection->db->commit();
1307
+			}
1161 1308
 		}
1162 1309
 		return '';
1163 1310
         }
@@ -1182,7 +1329,9 @@  discard block
 block discarded – undo
1182 1329
 			$i = 0;
1183 1330
 			//$Connection->db->setAttribute(PDO::ATTR_AUTOCOMMIT, FALSE);
1184 1331
 			//$Connection->db->beginTransaction();
1185
-			if ($globalTransaction) $Connection->db->beginTransaction();
1332
+			if ($globalTransaction) {
1333
+				$Connection->db->beginTransaction();
1334
+			}
1186 1335
 			while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
1187 1336
 			{
1188 1337
 				if ($i > 0) {
@@ -1197,7 +1346,9 @@  discard block
 block discarded – undo
1197 1346
 				$i++;
1198 1347
 			}
1199 1348
 			fclose($handle);
1200
-			if ($globalTransaction) $Connection->db->commit();
1349
+			if ($globalTransaction) {
1350
+				$Connection->db->commit();
1351
+			}
1201 1352
 		}
1202 1353
 		return '';
1203 1354
         }
@@ -1222,7 +1373,9 @@  discard block
 block discarded – undo
1222 1373
 			$i = 0;
1223 1374
 			//$Connection->db->setAttribute(PDO::ATTR_AUTOCOMMIT, FALSE);
1224 1375
 			//$Connection->db->beginTransaction();
1225
-			if ($globalTransaction) $Connection->db->beginTransaction();
1376
+			if ($globalTransaction) {
1377
+				$Connection->db->beginTransaction();
1378
+			}
1226 1379
 			while (($data = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
1227 1380
 			{
1228 1381
 				if ($i > 0) {
@@ -1237,7 +1390,9 @@  discard block
 block discarded – undo
1237 1390
 				$i++;
1238 1391
 			}
1239 1392
 			fclose($handle);
1240
-			if ($globalTransaction) $Connection->db->commit();
1393
+			if ($globalTransaction) {
1394
+				$Connection->db->commit();
1395
+			}
1241 1396
 		}
1242 1397
 		return '';
1243 1398
         }
@@ -1256,7 +1411,9 @@  discard block
 block discarded – undo
1256 1411
 		$Connection = new Connection();
1257 1412
 		if (($handle = fopen($tmp_dir.'ban_eu.csv', 'r')) !== FALSE)
1258 1413
 		{
1259
-			if ($globalTransaction) $Connection->db->beginTransaction();
1414
+			if ($globalTransaction) {
1415
+				$Connection->db->beginTransaction();
1416
+			}
1260 1417
 			while (($data = fgetcsv($handle, 1000)) !== FALSE)
1261 1418
 			{
1262 1419
 				$query = 'UPDATE airlines SET ban_eu = 1 WHERE icao = :icao AND forsource IS NULL';
@@ -1271,7 +1428,9 @@  discard block
 block discarded – undo
1271 1428
 				}
1272 1429
 			}
1273 1430
 			fclose($handle);
1274
-			if ($globalTransaction) $Connection->db->commit();
1431
+			if ($globalTransaction) {
1432
+				$Connection->db->commit();
1433
+			}
1275 1434
 		}
1276 1435
 		return '';
1277 1436
         }
@@ -1422,7 +1581,9 @@  discard block
 block discarded – undo
1422 1581
 		if (($handle = fopen($filename, 'r')) !== FALSE)
1423 1582
 		{
1424 1583
 			$i = 0;
1425
-			if ($globalTransaction) $Connection->db->beginTransaction();
1584
+			if ($globalTransaction) {
1585
+				$Connection->db->beginTransaction();
1586
+			}
1426 1587
 			while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
1427 1588
 			{
1428 1589
 				$i++;
@@ -1450,7 +1611,9 @@  discard block
 block discarded – undo
1450 1611
 				}
1451 1612
 			}
1452 1613
 			fclose($handle);
1453
-			if ($globalTransaction) $Connection->db->commit();
1614
+			if ($globalTransaction) {
1615
+				$Connection->db->commit();
1616
+			}
1454 1617
 		}
1455 1618
 		return '';
1456 1619
         }
@@ -1473,7 +1636,9 @@  discard block
 block discarded – undo
1473 1636
 		$Connection = new Connection();
1474 1637
 		if (($handle = fopen($filename, 'r')) !== FALSE)
1475 1638
 		{
1476
-			if ($globalTransaction) $Connection->db->beginTransaction();
1639
+			if ($globalTransaction) {
1640
+				$Connection->db->beginTransaction();
1641
+			}
1477 1642
 			while (($row = fgetcsv($handle, 1000, $delimiter)) !== FALSE)
1478 1643
 			{
1479 1644
 				if(count($row) > 1) {
@@ -1487,7 +1652,9 @@  discard block
 block discarded – undo
1487 1652
 				}
1488 1653
 			}
1489 1654
 			fclose($handle);
1490
-			if ($globalTransaction) $Connection->db->commit();
1655
+			if ($globalTransaction) {
1656
+				$Connection->db->commit();
1657
+			}
1491 1658
 		}
1492 1659
 		return '';
1493 1660
         }
@@ -1507,8 +1674,9 @@  discard block
 block discarded – undo
1507 1674
 	        }
1508 1675
 
1509 1676
 
1510
-		if ($globalDBdriver == 'mysql') update_db::gunzip('../db/airspace.sql.gz',$tmp_dir.'airspace.sql');
1511
-		else {
1677
+		if ($globalDBdriver == 'mysql') {
1678
+			update_db::gunzip('../db/airspace.sql.gz',$tmp_dir.'airspace.sql');
1679
+		} else {
1512 1680
 			update_db::gunzip('../db/pgsql/airspace.sql.gz',$tmp_dir.'airspace.sql');
1513 1681
 			$query = "CREATE EXTENSION postgis";
1514 1682
 			$Connection = new Connection(null,null,$_SESSION['database_root'],$_SESSION['database_rootpass']);
@@ -1527,20 +1695,30 @@  discard block
 block discarded – undo
1527 1695
 		global $tmp_dir, $globalDebug;
1528 1696
 		include_once('class.create_db.php');
1529 1697
 		require_once(dirname(__FILE__).'/../require/class.NOTAM.php');
1530
-		if ($globalDebug) echo "NOTAM from FlightAirMap website : Download...";
1698
+		if ($globalDebug) {
1699
+			echo "NOTAM from FlightAirMap website : Download...";
1700
+		}
1531 1701
 		update_db::download('http://data.flightairmap.fr/data/notam.txt.gz',$tmp_dir.'notam.txt.gz');
1532 1702
 		$error = '';
1533 1703
 		if (file_exists($tmp_dir.'notam.txt.gz')) {
1534
-			if ($globalDebug) echo "Gunzip...";
1704
+			if ($globalDebug) {
1705
+				echo "Gunzip...";
1706
+			}
1535 1707
 			update_db::gunzip($tmp_dir.'notam.txt.gz');
1536
-			if ($globalDebug) echo "Add to DB...";
1708
+			if ($globalDebug) {
1709
+				echo "Add to DB...";
1710
+			}
1537 1711
 			//$error = create_db::import_file($tmp_dir.'notam.sql');
1538 1712
 			$NOTAM = new NOTAM();
1539 1713
 			$NOTAM->updateNOTAMfromTextFile($tmp_dir.'notam.txt');
1540
-		} else $error = "File ".$tmp_dir.'notam.txt.gz'." doesn't exist. Download failed.";
1714
+		} else {
1715
+			$error = "File ".$tmp_dir.'notam.txt.gz'." doesn't exist. Download failed.";
1716
+		}
1541 1717
 		if ($error != '') {
1542 1718
 			return $error;
1543
-		} elseif ($globalDebug) echo "Done\n";
1719
+		} elseif ($globalDebug) {
1720
+			echo "Done\n";
1721
+		}
1544 1722
 		return '';
1545 1723
 	}
1546 1724
 
@@ -1594,67 +1772,111 @@  discard block
 block discarded – undo
1594 1772
 		//if ($globalDebug) echo "IVAO : Download...";
1595 1773
 		//update_db::download('http://fr.mirror.ivao.aero/software/ivae_feb2013.zip',$tmp_dir.'ivae_feb2013.zip');
1596 1774
 		if (file_exists($tmp_dir.'ivae_feb2013.zip')) {
1597
-			if ($globalDebug) echo "Unzip...";
1775
+			if ($globalDebug) {
1776
+				echo "Unzip...";
1777
+			}
1598 1778
 			update_db::unzip($tmp_dir.'ivae_feb2013.zip');
1599
-			if ($globalDebug) echo "Add to DB...";
1779
+			if ($globalDebug) {
1780
+				echo "Add to DB...";
1781
+			}
1600 1782
 			update_db::ivao_airlines($tmp_dir.'data/airlines.dat');
1601
-			if ($globalDebug) echo "Copy airlines logos to airlines images directory...";
1783
+			if ($globalDebug) {
1784
+				echo "Copy airlines logos to airlines images directory...";
1785
+			}
1602 1786
 			if (is_writable(dirname(__FILE__).'/../images/airlines')) {
1603
-				if (!$Common->xcopy($tmp_dir.'logos/',dirname(__FILE__).'/../images/airlines/')) $error = "Failed to copy airlines logo.";
1604
-			} else $error = "The directory ".dirname(__FILE__).'/../images/airlines'." must be writable";
1605
-		} else $error = "File ".$tmp_dir.'ivao.zip'." doesn't exist. Download failed.";
1787
+				if (!$Common->xcopy($tmp_dir.'logos/',dirname(__FILE__).'/../images/airlines/')) {
1788
+					$error = "Failed to copy airlines logo.";
1789
+				}
1790
+			} else {
1791
+				$error = "The directory ".dirname(__FILE__).'/../images/airlines'." must be writable";
1792
+			}
1793
+		} else {
1794
+			$error = "File ".$tmp_dir.'ivao.zip'." doesn't exist. Download failed.";
1795
+		}
1606 1796
 		if ($error != '') {
1607 1797
 			return $error;
1608
-		} elseif ($globalDebug) echo "Done\n";
1798
+		} elseif ($globalDebug) {
1799
+			echo "Done\n";
1800
+		}
1609 1801
 		return '';
1610 1802
 	}
1611 1803
 
1612 1804
 	public static function update_routes() {
1613 1805
 		global $tmp_dir, $globalDebug;
1614 1806
 		$error = '';
1615
-		if ($globalDebug) echo "Routes : Download...";
1807
+		if ($globalDebug) {
1808
+			echo "Routes : Download...";
1809
+		}
1616 1810
 		update_db::download('http://www.virtualradarserver.co.uk/Files/StandingData.sqb.gz',$tmp_dir.'StandingData.sqb.gz');
1617 1811
 		if (file_exists($tmp_dir.'StandingData.sqb.gz')) {
1618
-			if ($globalDebug) echo "Gunzip...";
1812
+			if ($globalDebug) {
1813
+				echo "Gunzip...";
1814
+			}
1619 1815
 			update_db::gunzip($tmp_dir.'StandingData.sqb.gz');
1620
-			if ($globalDebug) echo "Add to DB...";
1816
+			if ($globalDebug) {
1817
+				echo "Add to DB...";
1818
+			}
1621 1819
 			$error = update_db::retrieve_route_sqlite_to_dest($tmp_dir.'StandingData.sqb');
1622
-		} else $error = "File ".$tmp_dir.'StandingData.sqb.gz'." doesn't exist. Download failed.";
1820
+		} else {
1821
+			$error = "File ".$tmp_dir.'StandingData.sqb.gz'." doesn't exist. Download failed.";
1822
+		}
1623 1823
 		if ($error != '') {
1624 1824
 			return $error;
1625
-		} elseif ($globalDebug) echo "Done\n";
1825
+		} elseif ($globalDebug) {
1826
+			echo "Done\n";
1827
+		}
1626 1828
 		return '';
1627 1829
 	}
1628 1830
 	public static function update_oneworld() {
1629 1831
 		global $tmp_dir, $globalDebug;
1630 1832
 		$error = '';
1631
-		if ($globalDebug) echo "Schedules Oneworld : Download...";
1833
+		if ($globalDebug) {
1834
+			echo "Schedules Oneworld : Download...";
1835
+		}
1632 1836
 		update_db::download('http://data.flightairmap.fr/data/schedules/oneworld.csv.gz',$tmp_dir.'oneworld.csv.gz');
1633 1837
 		if (file_exists($tmp_dir.'oneworld.csv.gz')) {
1634
-			if ($globalDebug) echo "Gunzip...";
1838
+			if ($globalDebug) {
1839
+				echo "Gunzip...";
1840
+			}
1635 1841
 			update_db::gunzip($tmp_dir.'oneworld.csv.gz');
1636
-			if ($globalDebug) echo "Add to DB...";
1842
+			if ($globalDebug) {
1843
+				echo "Add to DB...";
1844
+			}
1637 1845
 			$error = update_db::retrieve_route_oneworld($tmp_dir.'oneworld.csv');
1638
-		} else $error = "File ".$tmp_dir.'oneworld.csv.gz'." doesn't exist. Download failed.";
1846
+		} else {
1847
+			$error = "File ".$tmp_dir.'oneworld.csv.gz'." doesn't exist. Download failed.";
1848
+		}
1639 1849
 		if ($error != '') {
1640 1850
 			return $error;
1641
-		} elseif ($globalDebug) echo "Done\n";
1851
+		} elseif ($globalDebug) {
1852
+			echo "Done\n";
1853
+		}
1642 1854
 		return '';
1643 1855
 	}
1644 1856
 	public static function update_skyteam() {
1645 1857
 		global $tmp_dir, $globalDebug;
1646 1858
 		$error = '';
1647
-		if ($globalDebug) echo "Schedules Skyteam : Download...";
1859
+		if ($globalDebug) {
1860
+			echo "Schedules Skyteam : Download...";
1861
+		}
1648 1862
 		update_db::download('http://data.flightairmap.fr/data/schedules/skyteam.csv.gz',$tmp_dir.'skyteam.csv.gz');
1649 1863
 		if (file_exists($tmp_dir.'skyteam.csv.gz')) {
1650
-			if ($globalDebug) echo "Gunzip...";
1864
+			if ($globalDebug) {
1865
+				echo "Gunzip...";
1866
+			}
1651 1867
 			update_db::gunzip($tmp_dir.'skyteam.csv.gz');
1652
-			if ($globalDebug) echo "Add to DB...";
1868
+			if ($globalDebug) {
1869
+				echo "Add to DB...";
1870
+			}
1653 1871
 			$error = update_db::retrieve_route_skyteam($tmp_dir.'skyteam.csv');
1654
-		} else $error = "File ".$tmp_dir.'skyteam.csv.gz'." doesn't exist. Download failed.";
1872
+		} else {
1873
+			$error = "File ".$tmp_dir.'skyteam.csv.gz'." doesn't exist. Download failed.";
1874
+		}
1655 1875
 		if ($error != '') {
1656 1876
 			return $error;
1657
-		} elseif ($globalDebug) echo "Done\n";
1877
+		} elseif ($globalDebug) {
1878
+			echo "Done\n";
1879
+		}
1658 1880
 		return '';
1659 1881
 	}
1660 1882
 	public static function update_ModeS() {
@@ -1671,355 +1893,619 @@  discard block
 block discarded – undo
1671 1893
 			exit;
1672 1894
 		} elseif ($globalDebug) echo "Done\n";
1673 1895
 */
1674
-		if ($globalDebug) echo "Modes : Download...";
1675
-//		update_db::download('http://planebase.biz/sqb.php?f=basestationall.zip',$tmp_dir.'basestation_latest.zip','http://planebase.biz/bstnsqb');
1896
+		if ($globalDebug) {
1897
+			echo "Modes : Download...";
1898
+		}
1899
+		//		update_db::download('http://planebase.biz/sqb.php?f=basestationall.zip',$tmp_dir.'basestation_latest.zip','http://planebase.biz/bstnsqb');
1676 1900
 		update_db::download('http://data.flightairmap.fr/data/BaseStation.sqb.gz',$tmp_dir.'BaseStation.sqb.gz');
1677 1901
 
1678 1902
 //		if (file_exists($tmp_dir.'basestation_latest.zip')) {
1679 1903
 		if (file_exists($tmp_dir.'BaseStation.sqb.gz')) {
1680
-			if ($globalDebug) echo "Unzip...";
1681
-//			update_db::unzip($tmp_dir.'basestation_latest.zip');
1904
+			if ($globalDebug) {
1905
+				echo "Unzip...";
1906
+			}
1907
+			//			update_db::unzip($tmp_dir.'basestation_latest.zip');
1682 1908
 			update_db::gunzip($tmp_dir.'BaseStation.sqb.gz');
1683
-			if ($globalDebug) echo "Add to DB...";
1909
+			if ($globalDebug) {
1910
+				echo "Add to DB...";
1911
+			}
1684 1912
 			$error = update_db::retrieve_modes_sqlite_to_dest($tmp_dir.'BaseStation.sqb');
1685 1913
 //			$error = update_db::retrieve_modes_sqlite_to_dest($tmp_dir.'basestation.sqb');
1686
-		} else $error = "File ".$tmp_dir.'basestation_latest.zip'." doesn't exist. Download failed.";
1914
+		} else {
1915
+			$error = "File ".$tmp_dir.'basestation_latest.zip'." doesn't exist. Download failed.";
1916
+		}
1687 1917
 		if ($error != '') {
1688 1918
 			return $error;
1689
-		} elseif ($globalDebug) echo "Done\n";
1919
+		} elseif ($globalDebug) {
1920
+			echo "Done\n";
1921
+		}
1690 1922
 		return '';
1691 1923
 	}
1692 1924
 
1693 1925
 	public static function update_ModeS_faa() {
1694 1926
 		global $tmp_dir, $globalDebug;
1695
-		if ($globalDebug) echo "Modes FAA: Download...";
1927
+		if ($globalDebug) {
1928
+			echo "Modes FAA: Download...";
1929
+		}
1696 1930
 		update_db::download('http://registry.faa.gov/database/ReleasableAircraft.zip',$tmp_dir.'ReleasableAircraft.zip');
1697 1931
 		if (file_exists($tmp_dir.'ReleasableAircraft.zip')) {
1698
-			if ($globalDebug) echo "Unzip...";
1932
+			if ($globalDebug) {
1933
+				echo "Unzip...";
1934
+			}
1699 1935
 			update_db::unzip($tmp_dir.'ReleasableAircraft.zip');
1700
-			if ($globalDebug) echo "Add to DB...";
1936
+			if ($globalDebug) {
1937
+				echo "Add to DB...";
1938
+			}
1701 1939
 			$error = update_db::modes_faa();
1702
-		} else $error = "File ".$tmp_dir.'ReleasableAircraft.zip'." doesn't exist. Download failed.";
1940
+		} else {
1941
+			$error = "File ".$tmp_dir.'ReleasableAircraft.zip'." doesn't exist. Download failed.";
1942
+		}
1703 1943
 		if ($error != '') {
1704 1944
 			return $error;
1705
-		} elseif ($globalDebug) echo "Done\n";
1945
+		} elseif ($globalDebug) {
1946
+			echo "Done\n";
1947
+		}
1706 1948
 		return '';
1707 1949
 	}
1708 1950
 
1709 1951
 	public static function update_ModeS_flarm() {
1710 1952
 		global $tmp_dir, $globalDebug;
1711
-		if ($globalDebug) echo "Modes Flarmnet: Download...";
1953
+		if ($globalDebug) {
1954
+			echo "Modes Flarmnet: Download...";
1955
+		}
1712 1956
 		update_db::download('http://flarmnet.org/files/data.fln',$tmp_dir.'data.fln');
1713 1957
 		if (file_exists($tmp_dir.'data.fln')) {
1714
-			if ($globalDebug) echo "Add to DB...";
1958
+			if ($globalDebug) {
1959
+				echo "Add to DB...";
1960
+			}
1715 1961
 			$error = update_db::retrieve_modes_flarmnet($tmp_dir.'data.fln');
1716
-		} else $error = "File ".$tmp_dir.'data.fln'." doesn't exist. Download failed.";
1962
+		} else {
1963
+			$error = "File ".$tmp_dir.'data.fln'." doesn't exist. Download failed.";
1964
+		}
1717 1965
 		if ($error != '') {
1718 1966
 			return $error;
1719
-		} elseif ($globalDebug) echo "Done\n";
1967
+		} elseif ($globalDebug) {
1968
+			echo "Done\n";
1969
+		}
1720 1970
 		return '';
1721 1971
 	}
1722 1972
 
1723 1973
 	public static function update_ModeS_ogn() {
1724 1974
 		global $tmp_dir, $globalDebug;
1725
-		if ($globalDebug) echo "Modes OGN: Download...";
1975
+		if ($globalDebug) {
1976
+			echo "Modes OGN: Download...";
1977
+		}
1726 1978
 		update_db::download('http://ddb.glidernet.org/download/',$tmp_dir.'ogn.csv');
1727 1979
 		if (file_exists($tmp_dir.'ogn.csv')) {
1728
-			if ($globalDebug) echo "Add to DB...";
1980
+			if ($globalDebug) {
1981
+				echo "Add to DB...";
1982
+			}
1729 1983
 			$error = update_db::retrieve_modes_ogn($tmp_dir.'ogn.csv');
1730
-		} else $error = "File ".$tmp_dir.'ogn.csv'." doesn't exist. Download failed.";
1984
+		} else {
1985
+			$error = "File ".$tmp_dir.'ogn.csv'." doesn't exist. Download failed.";
1986
+		}
1731 1987
 		if ($error != '') {
1732 1988
 			return $error;
1733
-		} elseif ($globalDebug) echo "Done\n";
1989
+		} elseif ($globalDebug) {
1990
+			echo "Done\n";
1991
+		}
1734 1992
 		return '';
1735 1993
 	}
1736 1994
 
1737 1995
 	public static function update_owner() {
1738 1996
 		global $tmp_dir, $globalDebug, $globalMasterSource;
1739 1997
 		
1740
-		if ($globalDebug) echo "Owner France: Download...";
1998
+		if ($globalDebug) {
1999
+			echo "Owner France: Download...";
2000
+		}
1741 2001
 		update_db::download('http://antonakis.co.uk/registers/France.txt',$tmp_dir.'owner_f.csv');
1742 2002
 		if (file_exists($tmp_dir.'owner_f.csv')) {
1743
-			if ($globalDebug) echo "Add to DB...";
2003
+			if ($globalDebug) {
2004
+				echo "Add to DB...";
2005
+			}
1744 2006
 			$error = update_db::retrieve_owner($tmp_dir.'owner_f.csv','F');
1745
-		} else $error = "File ".$tmp_dir.'owner_f.csv'." doesn't exist. Download failed.";
2007
+		} else {
2008
+			$error = "File ".$tmp_dir.'owner_f.csv'." doesn't exist. Download failed.";
2009
+		}
1746 2010
 		if ($error != '') {
1747 2011
 			return $error;
1748
-		} elseif ($globalDebug) echo "Done\n";
2012
+		} elseif ($globalDebug) {
2013
+			echo "Done\n";
2014
+		}
1749 2015
 		
1750
-		if ($globalDebug) echo "Owner Ireland: Download...";
2016
+		if ($globalDebug) {
2017
+			echo "Owner Ireland: Download...";
2018
+		}
1751 2019
 		update_db::download('http://antonakis.co.uk/registers/Ireland.txt',$tmp_dir.'owner_ei.csv');
1752 2020
 		if (file_exists($tmp_dir.'owner_ei.csv')) {
1753
-			if ($globalDebug) echo "Add to DB...";
2021
+			if ($globalDebug) {
2022
+				echo "Add to DB...";
2023
+			}
1754 2024
 			$error = update_db::retrieve_owner($tmp_dir.'owner_ei.csv','EI');
1755
-		} else $error = "File ".$tmp_dir.'owner_ei.csv'." doesn't exist. Download failed.";
2025
+		} else {
2026
+			$error = "File ".$tmp_dir.'owner_ei.csv'." doesn't exist. Download failed.";
2027
+		}
1756 2028
 		if ($error != '') {
1757 2029
 			return $error;
1758
-		} elseif ($globalDebug) echo "Done\n";
1759
-		if ($globalDebug) echo "Owner Switzerland: Download...";
2030
+		} elseif ($globalDebug) {
2031
+			echo "Done\n";
2032
+		}
2033
+		if ($globalDebug) {
2034
+			echo "Owner Switzerland: Download...";
2035
+		}
1760 2036
 		update_db::download('http://antonakis.co.uk/registers/Switzerland.txt',$tmp_dir.'owner_hb.csv');
1761 2037
 		if (file_exists($tmp_dir.'owner_hb.csv')) {
1762
-			if ($globalDebug) echo "Add to DB...";
2038
+			if ($globalDebug) {
2039
+				echo "Add to DB...";
2040
+			}
1763 2041
 			$error = update_db::retrieve_owner($tmp_dir.'owner_hb.csv','HB');
1764
-		} else $error = "File ".$tmp_dir.'owner_hb.csv'." doesn't exist. Download failed.";
2042
+		} else {
2043
+			$error = "File ".$tmp_dir.'owner_hb.csv'." doesn't exist. Download failed.";
2044
+		}
1765 2045
 		if ($error != '') {
1766 2046
 			return $error;
1767
-		} elseif ($globalDebug) echo "Done\n";
1768
-		if ($globalDebug) echo "Owner Czech Republic: Download...";
2047
+		} elseif ($globalDebug) {
2048
+			echo "Done\n";
2049
+		}
2050
+		if ($globalDebug) {
2051
+			echo "Owner Czech Republic: Download...";
2052
+		}
1769 2053
 		update_db::download('http://antonakis.co.uk/registers/CzechRepublic.txt',$tmp_dir.'owner_ok.csv');
1770 2054
 		if (file_exists($tmp_dir.'owner_ok.csv')) {
1771
-			if ($globalDebug) echo "Add to DB...";
2055
+			if ($globalDebug) {
2056
+				echo "Add to DB...";
2057
+			}
1772 2058
 			$error = update_db::retrieve_owner($tmp_dir.'owner_ok.csv','OK');
1773
-		} else $error = "File ".$tmp_dir.'owner_ok.csv'." doesn't exist. Download failed.";
2059
+		} else {
2060
+			$error = "File ".$tmp_dir.'owner_ok.csv'." doesn't exist. Download failed.";
2061
+		}
1774 2062
 		if ($error != '') {
1775 2063
 			return $error;
1776
-		} elseif ($globalDebug) echo "Done\n";
1777
-		if ($globalDebug) echo "Owner Australia: Download...";
2064
+		} elseif ($globalDebug) {
2065
+			echo "Done\n";
2066
+		}
2067
+		if ($globalDebug) {
2068
+			echo "Owner Australia: Download...";
2069
+		}
1778 2070
 		update_db::download('http://antonakis.co.uk/registers/Australia.txt',$tmp_dir.'owner_vh.csv');
1779 2071
 		if (file_exists($tmp_dir.'owner_vh.csv')) {
1780
-			if ($globalDebug) echo "Add to DB...";
2072
+			if ($globalDebug) {
2073
+				echo "Add to DB...";
2074
+			}
1781 2075
 			$error = update_db::retrieve_owner($tmp_dir.'owner_vh.csv','VH');
1782
-		} else $error = "File ".$tmp_dir.'owner_vh.csv'." doesn't exist. Download failed.";
2076
+		} else {
2077
+			$error = "File ".$tmp_dir.'owner_vh.csv'." doesn't exist. Download failed.";
2078
+		}
1783 2079
 		if ($error != '') {
1784 2080
 			return $error;
1785
-		} elseif ($globalDebug) echo "Done\n";
1786
-		if ($globalDebug) echo "Owner Austria: Download...";
2081
+		} elseif ($globalDebug) {
2082
+			echo "Done\n";
2083
+		}
2084
+		if ($globalDebug) {
2085
+			echo "Owner Austria: Download...";
2086
+		}
1787 2087
 		update_db::download('http://antonakis.co.uk/registers/Austria.txt',$tmp_dir.'owner_oe.csv');
1788 2088
 		if (file_exists($tmp_dir.'owner_oe.csv')) {
1789
-			if ($globalDebug) echo "Add to DB...";
2089
+			if ($globalDebug) {
2090
+				echo "Add to DB...";
2091
+			}
1790 2092
 			$error = update_db::retrieve_owner($tmp_dir.'owner_oe.csv','OE');
1791
-		} else $error = "File ".$tmp_dir.'owner_oe.csv'." doesn't exist. Download failed.";
2093
+		} else {
2094
+			$error = "File ".$tmp_dir.'owner_oe.csv'." doesn't exist. Download failed.";
2095
+		}
1792 2096
 		if ($error != '') {
1793 2097
 			return $error;
1794
-		} elseif ($globalDebug) echo "Done\n";
1795
-		if ($globalDebug) echo "Owner Chile: Download...";
2098
+		} elseif ($globalDebug) {
2099
+			echo "Done\n";
2100
+		}
2101
+		if ($globalDebug) {
2102
+			echo "Owner Chile: Download...";
2103
+		}
1796 2104
 		update_db::download('http://antonakis.co.uk/registers/Chile.txt',$tmp_dir.'owner_cc.csv');
1797 2105
 		if (file_exists($tmp_dir.'owner_cc.csv')) {
1798
-			if ($globalDebug) echo "Add to DB...";
2106
+			if ($globalDebug) {
2107
+				echo "Add to DB...";
2108
+			}
1799 2109
 			$error = update_db::retrieve_owner($tmp_dir.'owner_cc.csv','CC');
1800
-		} else $error = "File ".$tmp_dir.'owner_cc.csv'." doesn't exist. Download failed.";
2110
+		} else {
2111
+			$error = "File ".$tmp_dir.'owner_cc.csv'." doesn't exist. Download failed.";
2112
+		}
1801 2113
 		if ($error != '') {
1802 2114
 			return $error;
1803
-		} elseif ($globalDebug) echo "Done\n";
1804
-		if ($globalDebug) echo "Owner Colombia: Download...";
2115
+		} elseif ($globalDebug) {
2116
+			echo "Done\n";
2117
+		}
2118
+		if ($globalDebug) {
2119
+			echo "Owner Colombia: Download...";
2120
+		}
1805 2121
 		update_db::download('http://antonakis.co.uk/registers/Colombia.txt',$tmp_dir.'owner_hj.csv');
1806 2122
 		if (file_exists($tmp_dir.'owner_hj.csv')) {
1807
-			if ($globalDebug) echo "Add to DB...";
2123
+			if ($globalDebug) {
2124
+				echo "Add to DB...";
2125
+			}
1808 2126
 			$error = update_db::retrieve_owner($tmp_dir.'owner_hj.csv','HJ');
1809
-		} else $error = "File ".$tmp_dir.'owner_hj.csv'." doesn't exist. Download failed.";
2127
+		} else {
2128
+			$error = "File ".$tmp_dir.'owner_hj.csv'." doesn't exist. Download failed.";
2129
+		}
1810 2130
 		if ($error != '') {
1811 2131
 			return $error;
1812
-		} elseif ($globalDebug) echo "Done\n";
1813
-		if ($globalDebug) echo "Owner Bosnia Herzegobina: Download...";
2132
+		} elseif ($globalDebug) {
2133
+			echo "Done\n";
2134
+		}
2135
+		if ($globalDebug) {
2136
+			echo "Owner Bosnia Herzegobina: Download...";
2137
+		}
1814 2138
 		update_db::download('http://antonakis.co.uk/registers/BosniaHerzegovina.txt',$tmp_dir.'owner_e7.csv');
1815 2139
 		if (file_exists($tmp_dir.'owner_e7.csv')) {
1816
-			if ($globalDebug) echo "Add to DB...";
2140
+			if ($globalDebug) {
2141
+				echo "Add to DB...";
2142
+			}
1817 2143
 			$error = update_db::retrieve_owner($tmp_dir.'owner_e7.csv','E7');
1818
-		} else $error = "File ".$tmp_dir.'owner_e7.csv'." doesn't exist. Download failed.";
2144
+		} else {
2145
+			$error = "File ".$tmp_dir.'owner_e7.csv'." doesn't exist. Download failed.";
2146
+		}
1819 2147
 		if ($error != '') {
1820 2148
 			return $error;
1821
-		} elseif ($globalDebug) echo "Done\n";
1822
-		if ($globalDebug) echo "Owner Brazil: Download...";
2149
+		} elseif ($globalDebug) {
2150
+			echo "Done\n";
2151
+		}
2152
+		if ($globalDebug) {
2153
+			echo "Owner Brazil: Download...";
2154
+		}
1823 2155
 		update_db::download('http://antonakis.co.uk/registers/Brazil.txt',$tmp_dir.'owner_pp.csv');
1824 2156
 		if (file_exists($tmp_dir.'owner_pp.csv')) {
1825
-			if ($globalDebug) echo "Add to DB...";
2157
+			if ($globalDebug) {
2158
+				echo "Add to DB...";
2159
+			}
1826 2160
 			$error = update_db::retrieve_owner($tmp_dir.'owner_pp.csv','PP');
1827
-		} else $error = "File ".$tmp_dir.'owner_pp.csv'." doesn't exist. Download failed.";
2161
+		} else {
2162
+			$error = "File ".$tmp_dir.'owner_pp.csv'." doesn't exist. Download failed.";
2163
+		}
1828 2164
 		if ($error != '') {
1829 2165
 			return $error;
1830
-		} elseif ($globalDebug) echo "Done\n";
1831
-		if ($globalDebug) echo "Owner Cayman Islands: Download...";
2166
+		} elseif ($globalDebug) {
2167
+			echo "Done\n";
2168
+		}
2169
+		if ($globalDebug) {
2170
+			echo "Owner Cayman Islands: Download...";
2171
+		}
1832 2172
 		update_db::download('http://antonakis.co.uk/registers/CaymanIslands.txt',$tmp_dir.'owner_vp.csv');
1833 2173
 		if (file_exists($tmp_dir.'owner_vp.csv')) {
1834
-			if ($globalDebug) echo "Add to DB...";
2174
+			if ($globalDebug) {
2175
+				echo "Add to DB...";
2176
+			}
1835 2177
 			$error = update_db::retrieve_owner($tmp_dir.'owner_vp.csv','VP');
1836
-		} else $error = "File ".$tmp_dir.'owner_vp.csv'." doesn't exist. Download failed.";
2178
+		} else {
2179
+			$error = "File ".$tmp_dir.'owner_vp.csv'." doesn't exist. Download failed.";
2180
+		}
1837 2181
 		if ($error != '') {
1838 2182
 			return $error;
1839
-		} elseif ($globalDebug) echo "Done\n";
1840
-		if ($globalDebug) echo "Owner Croatia: Download...";
2183
+		} elseif ($globalDebug) {
2184
+			echo "Done\n";
2185
+		}
2186
+		if ($globalDebug) {
2187
+			echo "Owner Croatia: Download...";
2188
+		}
1841 2189
 		update_db::download('http://antonakis.co.uk/registers/Croatia.txt',$tmp_dir.'owner_9a.csv');
1842 2190
 		if (file_exists($tmp_dir.'owner_9a.csv')) {
1843
-			if ($globalDebug) echo "Add to DB...";
2191
+			if ($globalDebug) {
2192
+				echo "Add to DB...";
2193
+			}
1844 2194
 			$error = update_db::retrieve_owner($tmp_dir.'owner_9a.csv','9A');
1845
-		} else $error = "File ".$tmp_dir.'owner_9a.csv'." doesn't exist. Download failed.";
2195
+		} else {
2196
+			$error = "File ".$tmp_dir.'owner_9a.csv'." doesn't exist. Download failed.";
2197
+		}
1846 2198
 		if ($error != '') {
1847 2199
 			return $error;
1848
-		} elseif ($globalDebug) echo "Done\n";
1849
-		if ($globalDebug) echo "Owner Luxembourg: Download...";
2200
+		} elseif ($globalDebug) {
2201
+			echo "Done\n";
2202
+		}
2203
+		if ($globalDebug) {
2204
+			echo "Owner Luxembourg: Download...";
2205
+		}
1850 2206
 		update_db::download('http://antonakis.co.uk/registers/Luxembourg.txt',$tmp_dir.'owner_lx.csv');
1851 2207
 		if (file_exists($tmp_dir.'owner_lx.csv')) {
1852
-			if ($globalDebug) echo "Add to DB...";
2208
+			if ($globalDebug) {
2209
+				echo "Add to DB...";
2210
+			}
1853 2211
 			$error = update_db::retrieve_owner($tmp_dir.'owner_lx.csv','LX');
1854
-		} else $error = "File ".$tmp_dir.'owner_lx.csv'." doesn't exist. Download failed.";
2212
+		} else {
2213
+			$error = "File ".$tmp_dir.'owner_lx.csv'." doesn't exist. Download failed.";
2214
+		}
1855 2215
 		if ($error != '') {
1856 2216
 			return $error;
1857
-		} elseif ($globalDebug) echo "Done\n";
1858
-		if ($globalDebug) echo "Owner Maldives: Download...";
2217
+		} elseif ($globalDebug) {
2218
+			echo "Done\n";
2219
+		}
2220
+		if ($globalDebug) {
2221
+			echo "Owner Maldives: Download...";
2222
+		}
1859 2223
 		update_db::download('http://antonakis.co.uk/registers/Maldives.txt',$tmp_dir.'owner_8q.csv');
1860 2224
 		if (file_exists($tmp_dir.'owner_8q.csv')) {
1861
-			if ($globalDebug) echo "Add to DB...";
2225
+			if ($globalDebug) {
2226
+				echo "Add to DB...";
2227
+			}
1862 2228
 			$error = update_db::retrieve_owner($tmp_dir.'owner_8q.csv','8Q');
1863
-		} else $error = "File ".$tmp_dir.'owner_8q.csv'." doesn't exist. Download failed.";
2229
+		} else {
2230
+			$error = "File ".$tmp_dir.'owner_8q.csv'." doesn't exist. Download failed.";
2231
+		}
1864 2232
 		if ($error != '') {
1865 2233
 			return $error;
1866
-		} elseif ($globalDebug) echo "Done\n";
1867
-		if ($globalDebug) echo "Owner New Zealand: Download...";
2234
+		} elseif ($globalDebug) {
2235
+			echo "Done\n";
2236
+		}
2237
+		if ($globalDebug) {
2238
+			echo "Owner New Zealand: Download...";
2239
+		}
1868 2240
 		update_db::download('http://antonakis.co.uk/registers/NewZealand.txt',$tmp_dir.'owner_zk.csv');
1869 2241
 		if (file_exists($tmp_dir.'owner_zk.csv')) {
1870
-			if ($globalDebug) echo "Add to DB...";
2242
+			if ($globalDebug) {
2243
+				echo "Add to DB...";
2244
+			}
1871 2245
 			$error = update_db::retrieve_owner($tmp_dir.'owner_zk.csv','ZK');
1872
-		} else $error = "File ".$tmp_dir.'owner_zk.csv'." doesn't exist. Download failed.";
2246
+		} else {
2247
+			$error = "File ".$tmp_dir.'owner_zk.csv'." doesn't exist. Download failed.";
2248
+		}
1873 2249
 		if ($error != '') {
1874 2250
 			return $error;
1875
-		} elseif ($globalDebug) echo "Done\n";
1876
-		if ($globalDebug) echo "Owner Papua New Guinea: Download...";
2251
+		} elseif ($globalDebug) {
2252
+			echo "Done\n";
2253
+		}
2254
+		if ($globalDebug) {
2255
+			echo "Owner Papua New Guinea: Download...";
2256
+		}
1877 2257
 		update_db::download('http://antonakis.co.uk/registers/PapuaNewGuinea.txt',$tmp_dir.'owner_p2.csv');
1878 2258
 		if (file_exists($tmp_dir.'owner_p2.csv')) {
1879
-			if ($globalDebug) echo "Add to DB...";
2259
+			if ($globalDebug) {
2260
+				echo "Add to DB...";
2261
+			}
1880 2262
 			$error = update_db::retrieve_owner($tmp_dir.'owner_p2.csv','P2');
1881
-		} else $error = "File ".$tmp_dir.'owner_p2.csv'." doesn't exist. Download failed.";
2263
+		} else {
2264
+			$error = "File ".$tmp_dir.'owner_p2.csv'." doesn't exist. Download failed.";
2265
+		}
1882 2266
 		if ($error != '') {
1883 2267
 			return $error;
1884
-		} elseif ($globalDebug) echo "Done\n";
1885
-		if ($globalDebug) echo "Owner Slovakia: Download...";
2268
+		} elseif ($globalDebug) {
2269
+			echo "Done\n";
2270
+		}
2271
+		if ($globalDebug) {
2272
+			echo "Owner Slovakia: Download...";
2273
+		}
1886 2274
 		update_db::download('http://antonakis.co.uk/registers/Slovakia.txt',$tmp_dir.'owner_om.csv');
1887 2275
 		if (file_exists($tmp_dir.'owner_om.csv')) {
1888
-			if ($globalDebug) echo "Add to DB...";
2276
+			if ($globalDebug) {
2277
+				echo "Add to DB...";
2278
+			}
1889 2279
 			$error = update_db::retrieve_owner($tmp_dir.'owner_om.csv','OM');
1890
-		} else $error = "File ".$tmp_dir.'owner_om.csv'." doesn't exist. Download failed.";
2280
+		} else {
2281
+			$error = "File ".$tmp_dir.'owner_om.csv'." doesn't exist. Download failed.";
2282
+		}
1891 2283
 		if ($error != '') {
1892 2284
 			return $error;
1893
-		} elseif ($globalDebug) echo "Done\n";
1894
-		if ($globalDebug) echo "Owner Ecuador: Download...";
2285
+		} elseif ($globalDebug) {
2286
+			echo "Done\n";
2287
+		}
2288
+		if ($globalDebug) {
2289
+			echo "Owner Ecuador: Download...";
2290
+		}
1895 2291
 		update_db::download('http://antonakis.co.uk/registers/Ecuador.txt',$tmp_dir.'owner_hc.csv');
1896 2292
 		if (file_exists($tmp_dir.'owner_hc.csv')) {
1897
-			if ($globalDebug) echo "Add to DB...";
2293
+			if ($globalDebug) {
2294
+				echo "Add to DB...";
2295
+			}
1898 2296
 			$error = update_db::retrieve_owner($tmp_dir.'owner_hc.csv','HC');
1899
-		} else $error = "File ".$tmp_dir.'owner_hc.csv'." doesn't exist. Download failed.";
2297
+		} else {
2298
+			$error = "File ".$tmp_dir.'owner_hc.csv'." doesn't exist. Download failed.";
2299
+		}
1900 2300
 		if ($error != '') {
1901 2301
 			return $error;
1902
-		} elseif ($globalDebug) echo "Done\n";
1903
-		if ($globalDebug) echo "Owner Iceland: Download...";
2302
+		} elseif ($globalDebug) {
2303
+			echo "Done\n";
2304
+		}
2305
+		if ($globalDebug) {
2306
+			echo "Owner Iceland: Download...";
2307
+		}
1904 2308
 		update_db::download('http://antonakis.co.uk/registers/Iceland.txt',$tmp_dir.'owner_tf.csv');
1905 2309
 		if (file_exists($tmp_dir.'owner_tf.csv')) {
1906
-			if ($globalDebug) echo "Add to DB...";
2310
+			if ($globalDebug) {
2311
+				echo "Add to DB...";
2312
+			}
1907 2313
 			$error = update_db::retrieve_owner($tmp_dir.'owner_tf.csv','TF');
1908
-		} else $error = "File ".$tmp_dir.'owner_tf.csv'." doesn't exist. Download failed.";
2314
+		} else {
2315
+			$error = "File ".$tmp_dir.'owner_tf.csv'." doesn't exist. Download failed.";
2316
+		}
1909 2317
 		if ($error != '') {
1910 2318
 			return $error;
1911
-		} elseif ($globalDebug) echo "Done\n";
1912
-		if ($globalDebug) echo "Owner Isle of Man: Download...";
2319
+		} elseif ($globalDebug) {
2320
+			echo "Done\n";
2321
+		}
2322
+		if ($globalDebug) {
2323
+			echo "Owner Isle of Man: Download...";
2324
+		}
1913 2325
 		update_db::download('http://antonakis.co.uk/registers/IsleOfMan.txt',$tmp_dir.'owner_m.csv');
1914 2326
 		if (file_exists($tmp_dir.'owner_m.csv')) {
1915
-			if ($globalDebug) echo "Add to DB...";
2327
+			if ($globalDebug) {
2328
+				echo "Add to DB...";
2329
+			}
1916 2330
 			$error = update_db::retrieve_owner($tmp_dir.'owner_m.csv','M');
1917
-		} else $error = "File ".$tmp_dir.'owner_m.csv'." doesn't exist. Download failed.";
2331
+		} else {
2332
+			$error = "File ".$tmp_dir.'owner_m.csv'." doesn't exist. Download failed.";
2333
+		}
1918 2334
 		if ($error != '') {
1919 2335
 			return $error;
1920
-		} elseif ($globalDebug) echo "Done\n";
2336
+		} elseif ($globalDebug) {
2337
+			echo "Done\n";
2338
+		}
1921 2339
 		if ($globalMasterSource) {
1922
-			if ($globalDebug) echo "ModeS Netherlands: Download...";
2340
+			if ($globalDebug) {
2341
+				echo "ModeS Netherlands: Download...";
2342
+			}
1923 2343
 			update_db::download('http://antonakis.co.uk/registers/Netherlands.txt',$tmp_dir.'owner_ph.csv');
1924 2344
 			if (file_exists($tmp_dir.'owner_ph.csv')) {
1925
-				if ($globalDebug) echo "Add to DB...";
2345
+				if ($globalDebug) {
2346
+					echo "Add to DB...";
2347
+				}
1926 2348
 				$error = update_db::retrieve_owner($tmp_dir.'owner_ph.csv','PH');
1927
-			} else $error = "File ".$tmp_dir.'owner_ph.csv'." doesn't exist. Download failed.";
2349
+			} else {
2350
+				$error = "File ".$tmp_dir.'owner_ph.csv'." doesn't exist. Download failed.";
2351
+			}
1928 2352
 			if ($error != '') {
1929 2353
 				return $error;
1930
-			} elseif ($globalDebug) echo "Done\n";
1931
-			if ($globalDebug) echo "ModeS Denmark: Download...";
2354
+			} elseif ($globalDebug) {
2355
+				echo "Done\n";
2356
+			}
2357
+			if ($globalDebug) {
2358
+				echo "ModeS Denmark: Download...";
2359
+			}
1932 2360
 			update_db::download('http://antonakis.co.uk/registers/Denmark.txt',$tmp_dir.'owner_oy.csv');
1933 2361
 			if (file_exists($tmp_dir.'owner_oy.csv')) {
1934
-				if ($globalDebug) echo "Add to DB...";
2362
+				if ($globalDebug) {
2363
+					echo "Add to DB...";
2364
+				}
1935 2365
 				$error = update_db::retrieve_owner($tmp_dir.'owner_oy.csv','OY');
1936
-			} else $error = "File ".$tmp_dir.'owner_oy.csv'." doesn't exist. Download failed.";
2366
+			} else {
2367
+				$error = "File ".$tmp_dir.'owner_oy.csv'." doesn't exist. Download failed.";
2368
+			}
1937 2369
 			if ($error != '') {
1938 2370
 				return $error;
1939
-			} elseif ($globalDebug) echo "Done\n";
1940
-		} elseif ($globalDebug) echo "Done\n";
2371
+			} elseif ($globalDebug) {
2372
+				echo "Done\n";
2373
+			}
2374
+		} elseif ($globalDebug) {
2375
+			echo "Done\n";
2376
+		}
1941 2377
 		return '';
1942 2378
 	}
1943 2379
 
1944 2380
 	public static function update_translation() {
1945 2381
 		global $tmp_dir, $globalDebug;
1946 2382
 		$error = '';
1947
-		if ($globalDebug) echo "Translation : Download...";
2383
+		if ($globalDebug) {
2384
+			echo "Translation : Download...";
2385
+		}
1948 2386
 		update_db::download('http://www.acarsd.org/download/translation.php',$tmp_dir.'translation.zip');
1949 2387
 		if (file_exists($tmp_dir.'translation.zip')) {
1950
-			if ($globalDebug) echo "Unzip...";
2388
+			if ($globalDebug) {
2389
+				echo "Unzip...";
2390
+			}
1951 2391
 			update_db::unzip($tmp_dir.'translation.zip');
1952
-			if ($globalDebug) echo "Add to DB...";
2392
+			if ($globalDebug) {
2393
+				echo "Add to DB...";
2394
+			}
1953 2395
 			$error = update_db::translation();
1954
-		} else $error = "File ".$tmp_dir.'translation.zip'." doesn't exist. Download failed.";
2396
+		} else {
2397
+			$error = "File ".$tmp_dir.'translation.zip'." doesn't exist. Download failed.";
2398
+		}
1955 2399
 		if ($error != '') {
1956 2400
 			return $error;
1957
-		} elseif ($globalDebug) echo "Done\n";
2401
+		} elseif ($globalDebug) {
2402
+			echo "Done\n";
2403
+		}
1958 2404
 		return '';
1959 2405
 	}
1960 2406
 
1961 2407
 	public static function update_translation_fam() {
1962 2408
 		global $tmp_dir, $globalDebug;
1963
-		if ($globalDebug) echo "Translation from FlightAirMap website : Download...";
2409
+		if ($globalDebug) {
2410
+			echo "Translation from FlightAirMap website : Download...";
2411
+		}
1964 2412
 		update_db::download('http://data.flightairmap.fr/data/translation.tsv.gz',$tmp_dir.'translation.tsv.gz');
1965 2413
 		if (file_exists($tmp_dir.'translation.tsv.gz')) {
1966
-			if ($globalDebug) echo "Gunzip...";
2414
+			if ($globalDebug) {
2415
+				echo "Gunzip...";
2416
+			}
1967 2417
 			update_db::gunzip($tmp_dir.'translation.tsv.gz');
1968
-			if ($globalDebug) echo "Add to DB...";
2418
+			if ($globalDebug) {
2419
+				echo "Add to DB...";
2420
+			}
1969 2421
 			$error = update_db::translation_fam();
1970
-		} else $error = "File ".$tmp_dir.'translation.tsv.gz'." doesn't exist. Download failed.";
2422
+		} else {
2423
+			$error = "File ".$tmp_dir.'translation.tsv.gz'." doesn't exist. Download failed.";
2424
+		}
1971 2425
 		if ($error != '') {
1972 2426
 			return $error;
1973
-		} elseif ($globalDebug) echo "Done\n";
2427
+		} elseif ($globalDebug) {
2428
+			echo "Done\n";
2429
+		}
1974 2430
 		return '';
1975 2431
 	}
1976 2432
 	public static function update_ModeS_fam() {
1977 2433
 		global $tmp_dir, $globalDebug;
1978
-		if ($globalDebug) echo "ModeS from FlightAirMap website : Download...";
2434
+		if ($globalDebug) {
2435
+			echo "ModeS from FlightAirMap website : Download...";
2436
+		}
1979 2437
 		update_db::download('http://data.flightairmap.fr/data/modes.tsv.gz',$tmp_dir.'modes.tsv.gz');
1980 2438
 		if (file_exists($tmp_dir.'modes.tsv.gz')) {
1981
-			if ($globalDebug) echo "Gunzip...";
2439
+			if ($globalDebug) {
2440
+				echo "Gunzip...";
2441
+			}
1982 2442
 			update_db::gunzip($tmp_dir.'modes.tsv.gz');
1983
-			if ($globalDebug) echo "Add to DB...";
2443
+			if ($globalDebug) {
2444
+				echo "Add to DB...";
2445
+			}
1984 2446
 			$error = update_db::modes_fam();
1985
-		} else $error = "File ".$tmp_dir.'modes.tsv.gz'." doesn't exist. Download failed.";
2447
+		} else {
2448
+			$error = "File ".$tmp_dir.'modes.tsv.gz'." doesn't exist. Download failed.";
2449
+		}
1986 2450
 		if ($error != '') {
1987 2451
 			return $error;
1988
-		} elseif ($globalDebug) echo "Done\n";
2452
+		} elseif ($globalDebug) {
2453
+			echo "Done\n";
2454
+		}
1989 2455
 		return '';
1990 2456
 	}
1991 2457
 	public static function update_owner_fam() {
1992 2458
 		global $tmp_dir, $globalDebug, $globalOwner;
1993
-		if ($globalDebug) echo "owner from FlightAirMap website : Download...";
2459
+		if ($globalDebug) {
2460
+			echo "owner from FlightAirMap website : Download...";
2461
+		}
1994 2462
 		if ($globalOwner === TRUE) {
1995 2463
 			update_db::download('http://data.flightairmap.fr/data/owners_all.tsv.gz',$tmp_dir.'owners.tsv.gz');
1996 2464
 		} else {
1997 2465
 			update_db::download('http://data.flightairmap.fr/data/owners.tsv.gz',$tmp_dir.'owners.tsv.gz');
1998 2466
 		}
1999 2467
 		if (file_exists($tmp_dir.'owners.tsv.gz')) {
2000
-			if ($globalDebug) echo "Gunzip...";
2468
+			if ($globalDebug) {
2469
+				echo "Gunzip...";
2470
+			}
2001 2471
 			update_db::gunzip($tmp_dir.'owners.tsv.gz');
2002
-			if ($globalDebug) echo "Add to DB...";
2472
+			if ($globalDebug) {
2473
+				echo "Add to DB...";
2474
+			}
2003 2475
 			$error = update_db::owner_fam();
2004
-		} else $error = "File ".$tmp_dir.'owners.tsv.gz'." doesn't exist. Download failed.";
2476
+		} else {
2477
+			$error = "File ".$tmp_dir.'owners.tsv.gz'." doesn't exist. Download failed.";
2478
+		}
2005 2479
 		if ($error != '') {
2006 2480
 			return $error;
2007
-		} elseif ($globalDebug) echo "Done\n";
2481
+		} elseif ($globalDebug) {
2482
+			echo "Done\n";
2483
+		}
2008 2484
 		return '';
2009 2485
 	}
2010 2486
 	public static function update_routes_fam() {
2011 2487
 		global $tmp_dir, $globalDebug;
2012
-		if ($globalDebug) echo "Routes from FlightAirMap website : Download...";
2488
+		if ($globalDebug) {
2489
+			echo "Routes from FlightAirMap website : Download...";
2490
+		}
2013 2491
 		update_db::download('http://data.flightairmap.fr/data/routes.tsv.gz',$tmp_dir.'routes.tsv.gz');
2014 2492
 		if (file_exists($tmp_dir.'routes.tsv.gz')) {
2015
-			if ($globalDebug) echo "Gunzip...";
2493
+			if ($globalDebug) {
2494
+				echo "Gunzip...";
2495
+			}
2016 2496
 			update_db::gunzip($tmp_dir.'routes.tsv.gz');
2017
-			if ($globalDebug) echo "Add to DB...";
2497
+			if ($globalDebug) {
2498
+				echo "Add to DB...";
2499
+			}
2018 2500
 			$error = update_db::routes_fam();
2019
-		} else $error = "File ".$tmp_dir.'routes.tsv.gz'." doesn't exist. Download failed.";
2501
+		} else {
2502
+			$error = "File ".$tmp_dir.'routes.tsv.gz'." doesn't exist. Download failed.";
2503
+		}
2020 2504
 		if ($error != '') {
2021 2505
 			return $error;
2022
-		} elseif ($globalDebug) echo "Done\n";
2506
+		} elseif ($globalDebug) {
2507
+			echo "Done\n";
2508
+		}
2023 2509
 		return '';
2024 2510
 	}
2025 2511
 	public static function update_marine_identity_fam() {
@@ -2029,14 +2515,22 @@  discard block
 block discarded – undo
2029 2515
 			$marine_identity_md5_file = explode(' ',file_get_contents($tmp_dir.'marine_identity.tsv.gz.md5'));
2030 2516
 			$marine_identity_md5 = $marine_identity_md5_file[0];
2031 2517
 			if (!update_db::check_marine_identity_version($marine_identity_md5)) {
2032
-				if ($globalDebug) echo "Marine identity from FlightAirMap website : Download...";
2518
+				if ($globalDebug) {
2519
+					echo "Marine identity from FlightAirMap website : Download...";
2520
+				}
2033 2521
 				update_db::download('http://data.flightairmap.fr/data/marine_identity.tsv.gz',$tmp_dir.'marine_identity.tsv.gz');
2034 2522
 				if (file_exists($tmp_dir.'marine_identity.tsv.gz')) {
2035
-					if ($globalDebug) echo "Gunzip...";
2523
+					if ($globalDebug) {
2524
+						echo "Gunzip...";
2525
+					}
2036 2526
 					update_db::gunzip($tmp_dir.'marine_identity.tsv.gz');
2037
-					if ($globalDebug) echo "Add to DB...";
2527
+					if ($globalDebug) {
2528
+						echo "Add to DB...";
2529
+					}
2038 2530
 					$error = update_db::marine_identity_fam();
2039
-				} else $error = "File ".$tmp_dir.'marine_identity.tsv.gz'." doesn't exist. Download failed.";
2531
+				} else {
2532
+					$error = "File ".$tmp_dir.'marine_identity.tsv.gz'." doesn't exist. Download failed.";
2533
+				}
2040 2534
 				if ($error != '') {
2041 2535
 					return $error;
2042 2536
 				} elseif ($globalDebug) {
@@ -2049,17 +2543,25 @@  discard block
 block discarded – undo
2049 2543
 	}
2050 2544
 	public static function update_banned_fam() {
2051 2545
 		global $tmp_dir, $globalDebug;
2052
-		if ($globalDebug) echo "Banned airlines in Europe from FlightAirMap website : Download...";
2546
+		if ($globalDebug) {
2547
+			echo "Banned airlines in Europe from FlightAirMap website : Download...";
2548
+		}
2053 2549
 		update_db::download('http://data.flightairmap.fr/data/ban-eu.csv',$tmp_dir.'ban_eu.csv');
2054 2550
 		if (file_exists($tmp_dir.'ban_eu.csv')) {
2055 2551
 			//if ($globalDebug) echo "Gunzip...";
2056 2552
 			//update_db::gunzip($tmp_dir.'ban_ue.csv');
2057
-			if ($globalDebug) echo "Add to DB...";
2553
+			if ($globalDebug) {
2554
+				echo "Add to DB...";
2555
+			}
2058 2556
 			$error = update_db::banned_fam();
2059
-		} else $error = "File ".$tmp_dir.'ban_eu.csv'." doesn't exist. Download failed.";
2557
+		} else {
2558
+			$error = "File ".$tmp_dir.'ban_eu.csv'." doesn't exist. Download failed.";
2559
+		}
2060 2560
 		if ($error != '') {
2061 2561
 			return $error;
2062
-		} elseif ($globalDebug) echo "Done\n";
2562
+		} elseif ($globalDebug) {
2563
+			echo "Done\n";
2564
+		}
2063 2565
 		return '';
2064 2566
 	}
2065 2567
 
@@ -2067,7 +2569,9 @@  discard block
 block discarded – undo
2067 2569
 		global $tmp_dir, $globalDebug, $globalDBdriver;
2068 2570
 		include_once('class.create_db.php');
2069 2571
 		$error = '';
2070
-		if ($globalDebug) echo "Airspace from FlightAirMap website : Download...";
2572
+		if ($globalDebug) {
2573
+			echo "Airspace from FlightAirMap website : Download...";
2574
+		}
2071 2575
 		if ($globalDBdriver == 'mysql') {
2072 2576
 			update_db::download('http://data.flightairmap.fr/data/airspace_mysql.sql.gz.md5',$tmp_dir.'airspace.sql.gz.md5');
2073 2577
 		} else {
@@ -2083,9 +2587,13 @@  discard block
 block discarded – undo
2083 2587
 					update_db::download('http://data.flightairmap.fr/data/airspace_pgsql.sql.gz',$tmp_dir.'airspace.sql.gz');
2084 2588
 				}
2085 2589
 				if (file_exists($tmp_dir.'airspace.sql.gz')) {
2086
-					if ($globalDebug) echo "Gunzip...";
2590
+					if ($globalDebug) {
2591
+						echo "Gunzip...";
2592
+					}
2087 2593
 					update_db::gunzip($tmp_dir.'airspace.sql.gz');
2088
-					if ($globalDebug) echo "Add to DB...";
2594
+					if ($globalDebug) {
2595
+						echo "Add to DB...";
2596
+					}
2089 2597
 					$Connection = new Connection();
2090 2598
 					if ($Connection->tableExists('airspace')) {
2091 2599
 						$query = 'DROP TABLE airspace';
@@ -2098,31 +2606,47 @@  discard block
 block discarded – undo
2098 2606
 		    			}
2099 2607
 					$error = create_db::import_file($tmp_dir.'airspace.sql');
2100 2608
 					update_db::insert_airspace_version($airspace_md5);
2101
-				} else $error = "File ".$tmp_dir.'airpsace.sql.gz'." doesn't exist. Download failed.";
2609
+				} else {
2610
+					$error = "File ".$tmp_dir.'airpsace.sql.gz'." doesn't exist. Download failed.";
2611
+				}
2102 2612
 			}
2103
-		} else $error = "File ".$tmp_dir.'airpsace.sql.gz.md5'." doesn't exist. Download failed.";
2613
+		} else {
2614
+			$error = "File ".$tmp_dir.'airpsace.sql.gz.md5'." doesn't exist. Download failed.";
2615
+		}
2104 2616
 		if ($error != '') {
2105 2617
 			return $error;
2106
-		} elseif ($globalDebug) echo "Done\n";
2618
+		} elseif ($globalDebug) {
2619
+			echo "Done\n";
2620
+		}
2107 2621
 		return '';
2108 2622
 	}
2109 2623
 
2110 2624
 	public static function update_tle() {
2111 2625
 		global $tmp_dir, $globalDebug;
2112
-		if ($globalDebug) echo "Download TLE : Download...";
2626
+		if ($globalDebug) {
2627
+			echo "Download TLE : Download...";
2628
+		}
2113 2629
 		$alltle = array('stations.txt','gps-ops.txt','glo-ops.txt','galileo.txt','weather.txt','noaa.txt','goes.txt','resource.txt','dmc.txt','tdrss.txt','geo.txt','intelsat.txt','gorizont.txt',
2114 2630
 		'raduga.txt','molniya.txt','iridium.txt','orbcomm.txt','globalstar.txt','amateur.txt','x-comm.txt','other-comm.txt','sbas.txt','nnss.txt','musson.txt','science.txt','geodetic.txt',
2115 2631
 		'engineering.txt','education.txt','military.txt','radar.txt','cubesat.txt','other.txt','tle-new.txt');
2116 2632
 		foreach ($alltle as $filename) {
2117
-			if ($globalDebug) echo "downloading ".$filename.'...';
2633
+			if ($globalDebug) {
2634
+				echo "downloading ".$filename.'...';
2635
+			}
2118 2636
 			update_db::download('http://celestrak.com/NORAD/elements/'.$filename,$tmp_dir.$filename);
2119 2637
 			if (file_exists($tmp_dir.$filename)) {
2120
-				if ($globalDebug) echo "Add to DB ".$filename."...";
2638
+				if ($globalDebug) {
2639
+					echo "Add to DB ".$filename."...";
2640
+				}
2121 2641
 				$error = update_db::tle($tmp_dir.$filename,str_replace('.txt','',$filename));
2122
-			} else $error = "File ".$tmp_dir.$filename." doesn't exist. Download failed.";
2642
+			} else {
2643
+				$error = "File ".$tmp_dir.$filename." doesn't exist. Download failed.";
2644
+			}
2123 2645
 			if ($error != '') {
2124 2646
 				echo $error."\n";
2125
-			} elseif ($globalDebug) echo "Done\n";
2647
+			} elseif ($globalDebug) {
2648
+				echo "Done\n";
2649
+			}
2126 2650
 		}
2127 2651
 		return '';
2128 2652
 	}
@@ -2130,10 +2654,14 @@  discard block
 block discarded – undo
2130 2654
 	public static function update_models() {
2131 2655
 		global $tmp_dir, $globalDebug;
2132 2656
 		$error = '';
2133
-		if ($globalDebug) echo "Models from FlightAirMap website : Download...";
2657
+		if ($globalDebug) {
2658
+			echo "Models from FlightAirMap website : Download...";
2659
+		}
2134 2660
 		update_db::download('http://data.flightairmap.fr/data/models/models.md5sum',$tmp_dir.'models.md5sum');
2135 2661
 		if (file_exists($tmp_dir.'models.md5sum')) {
2136
-			if ($globalDebug) echo "Check files...\n";
2662
+			if ($globalDebug) {
2663
+				echo "Check files...\n";
2664
+			}
2137 2665
 			$newmodelsdb = array();
2138 2666
 			if (($handle = fopen($tmp_dir.'models.md5sum','r')) !== FALSE) {
2139 2667
 				while (($row = fgetcsv($handle,1000," ")) !== FALSE) {
@@ -2152,25 +2680,35 @@  discard block
 block discarded – undo
2152 2680
 			}
2153 2681
 			$diff = array_diff($newmodelsdb,$modelsdb);
2154 2682
 			foreach ($diff as $key => $value) {
2155
-				if ($globalDebug) echo 'Downloading model '.$key.' ...'."\n";
2683
+				if ($globalDebug) {
2684
+					echo 'Downloading model '.$key.' ...'."\n";
2685
+				}
2156 2686
 				update_db::download('http://data.flightairmap.fr/data/models/'.$key,dirname(__FILE__).'/../models/'.$key);
2157 2687
 				
2158 2688
 			}
2159 2689
 			update_db::download('http://data.flightairmap.fr/data/models/models.md5sum',dirname(__FILE__).'/../models/models.md5sum');
2160
-		} else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed.";
2690
+		} else {
2691
+			$error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed.";
2692
+		}
2161 2693
 		if ($error != '') {
2162 2694
 			return $error;
2163
-		} elseif ($globalDebug) echo "Done\n";
2695
+		} elseif ($globalDebug) {
2696
+			echo "Done\n";
2697
+		}
2164 2698
 		return '';
2165 2699
 	}
2166 2700
 
2167 2701
 	public static function update_space_models() {
2168 2702
 		global $tmp_dir, $globalDebug;
2169 2703
 		$error = '';
2170
-		if ($globalDebug) echo "Space models from FlightAirMap website : Download...";
2704
+		if ($globalDebug) {
2705
+			echo "Space models from FlightAirMap website : Download...";
2706
+		}
2171 2707
 		update_db::download('http://data.flightairmap.fr/data/models/space/space_models.md5sum',$tmp_dir.'space_models.md5sum');
2172 2708
 		if (file_exists($tmp_dir.'space_models.md5sum')) {
2173
-			if ($globalDebug) echo "Check files...\n";
2709
+			if ($globalDebug) {
2710
+				echo "Check files...\n";
2711
+			}
2174 2712
 			$newmodelsdb = array();
2175 2713
 			if (($handle = fopen($tmp_dir.'space_models.md5sum','r')) !== FALSE) {
2176 2714
 				while (($row = fgetcsv($handle,1000," ")) !== FALSE) {
@@ -2189,25 +2727,35 @@  discard block
 block discarded – undo
2189 2727
 			}
2190 2728
 			$diff = array_diff($newmodelsdb,$modelsdb);
2191 2729
 			foreach ($diff as $key => $value) {
2192
-				if ($globalDebug) echo 'Downloading space model '.$key.' ...'."\n";
2730
+				if ($globalDebug) {
2731
+					echo 'Downloading space model '.$key.' ...'."\n";
2732
+				}
2193 2733
 				update_db::download('http://data.flightairmap.fr/data/models/space/'.$key,dirname(__FILE__).'/../models/space/'.$key);
2194 2734
 				
2195 2735
 			}
2196 2736
 			update_db::download('http://data.flightairmap.fr/data/models/space/space_models.md5sum',dirname(__FILE__).'/../models/space/space_models.md5sum');
2197
-		} else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed.";
2737
+		} else {
2738
+			$error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed.";
2739
+		}
2198 2740
 		if ($error != '') {
2199 2741
 			return $error;
2200
-		} elseif ($globalDebug) echo "Done\n";
2742
+		} elseif ($globalDebug) {
2743
+			echo "Done\n";
2744
+		}
2201 2745
 		return '';
2202 2746
 	}
2203 2747
 
2204 2748
 	public static function update_vehicules_models() {
2205 2749
 		global $tmp_dir, $globalDebug;
2206 2750
 		$error = '';
2207
-		if ($globalDebug) echo "Vehicules models from FlightAirMap website : Download...";
2751
+		if ($globalDebug) {
2752
+			echo "Vehicules models from FlightAirMap website : Download...";
2753
+		}
2208 2754
 		update_db::download('http://data.flightairmap.fr/data/models/vehicules/vehicules_models.md5sum',$tmp_dir.'vehicules_models.md5sum');
2209 2755
 		if (file_exists($tmp_dir.'vehicules_models.md5sum')) {
2210
-			if ($globalDebug) echo "Check files...\n";
2756
+			if ($globalDebug) {
2757
+				echo "Check files...\n";
2758
+			}
2211 2759
 			$newmodelsdb = array();
2212 2760
 			if (($handle = fopen($tmp_dir.'vehicules_models.md5sum','r')) !== FALSE) {
2213 2761
 				while (($row = fgetcsv($handle,1000," ")) !== FALSE) {
@@ -2226,15 +2774,21 @@  discard block
 block discarded – undo
2226 2774
 			}
2227 2775
 			$diff = array_diff($newmodelsdb,$modelsdb);
2228 2776
 			foreach ($diff as $key => $value) {
2229
-				if ($globalDebug) echo 'Downloading vehicules model '.$key.' ...'."\n";
2777
+				if ($globalDebug) {
2778
+					echo 'Downloading vehicules model '.$key.' ...'."\n";
2779
+				}
2230 2780
 				update_db::download('http://data.flightairmap.fr/data/models/vehicules/'.$key,dirname(__FILE__).'/../models/vehicules/'.$key);
2231 2781
 				
2232 2782
 			}
2233 2783
 			update_db::download('http://data.flightairmap.fr/data/models/vehicules/vehicules_models.md5sum',dirname(__FILE__).'/../models/vehicules/vehicules_models.md5sum');
2234
-		} else $error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed.";
2784
+		} else {
2785
+			$error = "File ".$tmp_dir.'models.md5sum'." doesn't exist. Download failed.";
2786
+		}
2235 2787
 		if ($error != '') {
2236 2788
 			return $error;
2237
-		} elseif ($globalDebug) echo "Done\n";
2789
+		} elseif ($globalDebug) {
2790
+			echo "Done\n";
2791
+		}
2238 2792
 		return '';
2239 2793
 	}
2240 2794
 
@@ -2277,7 +2831,9 @@  discard block
 block discarded – undo
2277 2831
                 }
2278 2832
 
2279 2833
 		$error = '';
2280
-		if ($globalDebug) echo "Notam : Download...";
2834
+		if ($globalDebug) {
2835
+			echo "Notam : Download...";
2836
+		}
2281 2837
 		update_db::download($globalNOTAMSource,$tmp_dir.'notam.rss');
2282 2838
 		if (file_exists($tmp_dir.'notam.rss')) {
2283 2839
 			$notams = json_decode(json_encode(simplexml_load_file($tmp_dir.'notam.rss')),true);
@@ -2292,14 +2848,30 @@  discard block
 block discarded – undo
2292 2848
 				$data['fir'] = $q[0];
2293 2849
 				$data['code'] = $q[1];
2294 2850
 				$ifrvfr = $q[2];
2295
-				if ($ifrvfr == 'IV') $data['rules'] = 'IFR/VFR';
2296
-				if ($ifrvfr == 'I') $data['rules'] = 'IFR';
2297
-				if ($ifrvfr == 'V') $data['rules'] = 'VFR';
2298
-				if ($q[4] == 'A') $data['scope'] = 'Airport warning';
2299
-				if ($q[4] == 'E') $data['scope'] = 'Enroute warning';
2300
-				if ($q[4] == 'W') $data['scope'] = 'Navigation warning';
2301
-				if ($q[4] == 'AE') $data['scope'] = 'Airport/Enroute warning';
2302
-				if ($q[4] == 'AW') $data['scope'] = 'Airport/Navigation warning';
2851
+				if ($ifrvfr == 'IV') {
2852
+					$data['rules'] = 'IFR/VFR';
2853
+				}
2854
+				if ($ifrvfr == 'I') {
2855
+					$data['rules'] = 'IFR';
2856
+				}
2857
+				if ($ifrvfr == 'V') {
2858
+					$data['rules'] = 'VFR';
2859
+				}
2860
+				if ($q[4] == 'A') {
2861
+					$data['scope'] = 'Airport warning';
2862
+				}
2863
+				if ($q[4] == 'E') {
2864
+					$data['scope'] = 'Enroute warning';
2865
+				}
2866
+				if ($q[4] == 'W') {
2867
+					$data['scope'] = 'Navigation warning';
2868
+				}
2869
+				if ($q[4] == 'AE') {
2870
+					$data['scope'] = 'Airport/Enroute warning';
2871
+				}
2872
+				if ($q[4] == 'AW') {
2873
+					$data['scope'] = 'Airport/Navigation warning';
2874
+				}
2303 2875
 				//$data['scope'] = $q[4];
2304 2876
 				$data['lower_limit'] = $q[5];
2305 2877
 				$data['upper_limit'] = $q[6];
@@ -2307,8 +2879,12 @@  discard block
 block discarded – undo
2307 2879
 				sscanf($latlonrad,'%4c%c%5c%c%3d',$las,$lac,$lns,$lnc,$radius);
2308 2880
 				$latitude = $Common->convertDec($las,'latitude');
2309 2881
 				$longitude = $Common->convertDec($lns,'longitude');
2310
-				if ($lac == 'S') $latitude = '-'.$latitude;
2311
-				if ($lnc == 'W') $longitude = '-'.$longitude;
2882
+				if ($lac == 'S') {
2883
+					$latitude = '-'.$latitude;
2884
+				}
2885
+				if ($lnc == 'W') {
2886
+					$longitude = '-'.$longitude;
2887
+				}
2312 2888
 				$data['center_latitude'] = $latitude;
2313 2889
 				$data['center_longitude'] = $longitude;
2314 2890
 				$data['radius'] = intval($radius);
@@ -2338,10 +2914,14 @@  discard block
 block discarded – undo
2338 2914
 				$NOTAM->addNOTAM($data['ref'],$data['title'],'',$data['fir'],$data['code'],'',$data['scope'],$data['lower_limit'],$data['upper_limit'],$data['center_latitude'],$data['center_longitude'],$data['radius'],$data['date_begin'],$data['date_end'],$data['permanent'],$data['text'],$data['full_notam']);
2339 2915
 				unset($data);
2340 2916
 			} 
2341
-		} else $error = "File ".$tmp_dir.'notam.rss'." doesn't exist. Download failed.";
2917
+		} else {
2918
+			$error = "File ".$tmp_dir.'notam.rss'." doesn't exist. Download failed.";
2919
+		}
2342 2920
 		if ($error != '') {
2343 2921
 			return $error;
2344
-		} elseif ($globalDebug) echo "Done\n";
2922
+		} elseif ($globalDebug) {
2923
+			echo "Done\n";
2924
+		}
2345 2925
 		return '';
2346 2926
 	}
2347 2927
 	
@@ -2366,7 +2946,9 @@  discard block
 block discarded – undo
2366 2946
 		$airspace_lst = $Common->getData('https://raw.githubusercontent.com/XCSoar/xcsoar-data-repository/master/data/airspace.json');
2367 2947
 		$airspace_json = json_decode($airspace_lst,true);
2368 2948
 		foreach ($airspace_json['records'] as $airspace) {
2369
-			if ($globalDebug) echo $airspace['name']."...\n";
2949
+			if ($globalDebug) {
2950
+				echo $airspace['name']."...\n";
2951
+			}
2370 2952
 			update_db::download($airspace['uri'],$tmp_dir.$airspace['name']);
2371 2953
 			if (file_exists($tmp_dir.$airspace['name'])) {
2372 2954
 				file_put_contents($tmp_dir.$airspace['name'], utf8_encode(file_get_contents($tmp_dir.$airspace['name'])));
@@ -2410,8 +2992,11 @@  discard block
 block discarded – undo
2410 2992
                         return "error : ".$e->getMessage();
2411 2993
                 }
2412 2994
                 $row = $sth->fetch(PDO::FETCH_ASSOC);
2413
-                if ($row['nb'] > 0) return false;
2414
-                else return true;
2995
+                if ($row['nb'] > 0) {
2996
+                	return false;
2997
+                } else {
2998
+                	return true;
2999
+                }
2415 3000
 	}
2416 3001
 
2417 3002
 	public static function insert_last_update() {
@@ -2436,8 +3021,11 @@  discard block
 block discarded – undo
2436 3021
                         return "error : ".$e->getMessage();
2437 3022
                 }
2438 3023
                 $row = $sth->fetch(PDO::FETCH_ASSOC);
2439
-                if ($row['nb'] > 0) return true;
2440
-                else return false;
3024
+                if ($row['nb'] > 0) {
3025
+                	return true;
3026
+                } else {
3027
+                	return false;
3028
+                }
2441 3029
 	}
2442 3030
 
2443 3031
 	public static function check_marine_identity_version($version) {
@@ -2450,8 +3038,11 @@  discard block
 block discarded – undo
2450 3038
                         return "error : ".$e->getMessage();
2451 3039
                 }
2452 3040
                 $row = $sth->fetch(PDO::FETCH_ASSOC);
2453
-                if ($row['nb'] > 0) return true;
2454
-                else return false;
3041
+                if ($row['nb'] > 0) {
3042
+                	return true;
3043
+                } else {
3044
+                	return false;
3045
+                }
2455 3046
 	}
2456 3047
 
2457 3048
 
@@ -2494,8 +3085,11 @@  discard block
 block discarded – undo
2494 3085
                         return "error : ".$e->getMessage();
2495 3086
                 }
2496 3087
                 $row = $sth->fetch(PDO::FETCH_ASSOC);
2497
-                if ($row['nb'] > 0) return false;
2498
-                else return true;
3088
+                if ($row['nb'] > 0) {
3089
+                	return false;
3090
+                } else {
3091
+                	return true;
3092
+                }
2499 3093
 	}
2500 3094
 
2501 3095
 	public static function insert_last_notam_update() {
@@ -2524,8 +3118,11 @@  discard block
 block discarded – undo
2524 3118
                         return "error : ".$e->getMessage();
2525 3119
                 }
2526 3120
                 $row = $sth->fetch(PDO::FETCH_ASSOC);
2527
-                if ($row['nb'] > 0) return false;
2528
-                else return true;
3121
+                if ($row['nb'] > 0) {
3122
+                	return false;
3123
+                } else {
3124
+                	return true;
3125
+                }
2529 3126
 	}
2530 3127
 
2531 3128
 	public static function insert_last_airspace_update() {
@@ -2555,8 +3152,11 @@  discard block
 block discarded – undo
2555 3152
                         return "error : ".$e->getMessage();
2556 3153
                 }
2557 3154
                 $row = $sth->fetch(PDO::FETCH_ASSOC);
2558
-                if ($row['nb'] > 0) return false;
2559
-                else return true;
3155
+                if ($row['nb'] > 0) {
3156
+                	return false;
3157
+                } else {
3158
+                	return true;
3159
+                }
2560 3160
 	}
2561 3161
 
2562 3162
 	public static function insert_last_owner_update() {
@@ -2585,8 +3185,11 @@  discard block
 block discarded – undo
2585 3185
                         return "error : ".$e->getMessage();
2586 3186
                 }
2587 3187
                 $row = $sth->fetch(PDO::FETCH_ASSOC);
2588
-                if ($row['nb'] > 0) return false;
2589
-                else return true;
3188
+                if ($row['nb'] > 0) {
3189
+                	return false;
3190
+                } else {
3191
+                	return true;
3192
+                }
2590 3193
 	}
2591 3194
 
2592 3195
 	public static function insert_last_schedules_update() {
@@ -2615,8 +3218,11 @@  discard block
 block discarded – undo
2615 3218
                         return "error : ".$e->getMessage();
2616 3219
                 }
2617 3220
                 $row = $sth->fetch(PDO::FETCH_ASSOC);
2618
-                if ($row['nb'] > 0) return false;
2619
-                else return true;
3221
+                if ($row['nb'] > 0) {
3222
+                	return false;
3223
+                } else {
3224
+                	return true;
3225
+                }
2620 3226
 	}
2621 3227
 
2622 3228
 	public static function insert_last_tle_update() {
@@ -2645,8 +3251,11 @@  discard block
 block discarded – undo
2645 3251
                         return "error : ".$e->getMessage();
2646 3252
                 }
2647 3253
                 $row = $sth->fetch(PDO::FETCH_ASSOC);
2648
-                if ($row['nb'] > 0) return false;
2649
-                else return true;
3254
+                if ($row['nb'] > 0) {
3255
+                	return false;
3256
+                } else {
3257
+                	return true;
3258
+                }
2650 3259
 	}
2651 3260
 
2652 3261
 	public static function insert_last_marine_identity_update() {
Please login to merge, or discard this patch.