Completed
Push — master ( 363fa2...61adbf )
by Yannick
08:20
created
require/class.Stats.php 1 patch
Braces   +482 added lines, -167 removed lines patch added patch discarded remove patch
@@ -13,7 +13,9 @@  discard block
 block discarded – undo
13 13
 	
14 14
 	public function __construct($dbc = null) {
15 15
 		global $globalFilterName;
16
-		if (isset($globalFilterName)) $this->filter_name = $globalFilterName;
16
+		if (isset($globalFilterName)) {
17
+			$this->filter_name = $globalFilterName;
18
+		}
17 19
 		$Connection = new Connection($dbc);
18 20
 		$this->db = $Connection->db();
19 21
         }
@@ -81,7 +83,9 @@  discard block
 block discarded – undo
81 83
                 }
82 84
         }
83 85
 	public function getAllAirlineNames($filter_name = '') {
84
-		if ($filter_name == '') $filter_name = $this->filter_name;
86
+		if ($filter_name == '') {
87
+			$filter_name = $this->filter_name;
88
+		}
85 89
                 $query = "SELECT * FROM stats_airline WHERE filter_name = :filter_name ORDER BY airline_name ASC";
86 90
                  try {
87 91
                         $sth = $this->db->prepare($query);
@@ -93,7 +97,9 @@  discard block
 block discarded – undo
93 97
                 return $all;
94 98
         }
95 99
 	public function getAllAircraftTypes($stats_airline = '',$filter_name = '') {
96
-		if ($filter_name == '') $filter_name = $this->filter_name;
100
+		if ($filter_name == '') {
101
+			$filter_name = $this->filter_name;
102
+		}
97 103
                 $query = "SELECT * FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_manufacturer ASC";
98 104
                  try {
99 105
                         $sth = $this->db->prepare($query);
@@ -105,7 +111,9 @@  discard block
 block discarded – undo
105 111
                 return $all;
106 112
         }
107 113
 	public function getAllManufacturers($stats_airline = '',$filter_name = '') {
108
-		if ($filter_name == '') $filter_name = $this->filter_name;
114
+		if ($filter_name == '') {
115
+			$filter_name = $this->filter_name;
116
+		}
109 117
                 $query = "SELECT DISTINCT(aircraft_manufacturer) FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND aircraft_manufacturer <> '' ORDER BY aircraft_manufacturer ASC";
110 118
                  try {
111 119
                         $sth = $this->db->prepare($query);
@@ -117,7 +125,9 @@  discard block
 block discarded – undo
117 125
                 return $all;
118 126
         }
119 127
 	public function getAllAirportNames($stats_airline = '',$filter_name = '') {
120
-		if ($filter_name == '') $filter_name = $this->filter_name;
128
+		if ($filter_name == '') {
129
+			$filter_name = $this->filter_name;
130
+		}
121 131
                 $query = "SELECT airport_icao, airport_name,airport_city,airport_country FROM stats_airport WHERE stats_airline = :stats_airline AND filter_name = :filter_name AND stats_type = 'daily' GROUP BY airport_icao,airport_name,airport_city,airport_country ORDER BY airport_city ASC";
122 132
                  try {
123 133
                         $sth = $this->db->prepare($query);
@@ -130,7 +140,9 @@  discard block
 block discarded – undo
130 140
         }
131 141
 
132 142
 	public function getAllOwnerNames($stats_airline = '',$filter_name = '') {
133
-		if ($filter_name == '') $filter_name = $this->filter_name;
143
+		if ($filter_name == '') {
144
+			$filter_name = $this->filter_name;
145
+		}
134 146
                 $query = "SELECT owner_name FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_name ASC";
135 147
                  try {
136 148
                         $sth = $this->db->prepare($query);
@@ -143,7 +155,9 @@  discard block
 block discarded – undo
143 155
         }
144 156
 
145 157
 	public function getAllPilotNames($stats_airline = '',$filter_name = '') {
146
-		if ($filter_name == '') $filter_name = $this->filter_name;
158
+		if ($filter_name == '') {
159
+			$filter_name = $this->filter_name;
160
+		}
147 161
                 $query = "SELECT pilot_id,pilot_name FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_name ASC";
148 162
                  try {
149 163
                         $sth = $this->db->prepare($query);
@@ -158,10 +172,15 @@  discard block
 block discarded – undo
158 172
 
159 173
 	public function countAllAircraftTypes($limit = true, $stats_airline = '', $filter_name = '',$year = '', $month = '') {
160 174
 		global $globalStatsFilters;
161
-		if ($filter_name == '') $filter_name = $this->filter_name;
175
+		if ($filter_name == '') {
176
+			$filter_name = $this->filter_name;
177
+		}
162 178
 		if ($year == '' && $month == '') {
163
-			if ($limit) $query = "SELECT aircraft_icao, cnt AS aircraft_icao_count, aircraft_name, aircraft_manufacturer FROM stats_aircraft WHERE aircraft_name <> '' AND aircraft_icao <> '' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_icao_count DESC LIMIT 10 OFFSET 0";
164
-			else $query = "SELECT aircraft_icao, cnt AS aircraft_icao_count, aircraft_name, aircraft_manufacturer FROM stats_aircraft WHERE aircraft_name <> '' AND aircraft_icao <> '' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_icao_count DESC";
179
+			if ($limit) {
180
+				$query = "SELECT aircraft_icao, cnt AS aircraft_icao_count, aircraft_name, aircraft_manufacturer FROM stats_aircraft WHERE aircraft_name <> '' AND aircraft_icao <> '' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_icao_count DESC LIMIT 10 OFFSET 0";
181
+			} else {
182
+				$query = "SELECT aircraft_icao, cnt AS aircraft_icao_count, aircraft_name, aircraft_manufacturer FROM stats_aircraft WHERE aircraft_name <> '' AND aircraft_icao <> '' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_icao_count DESC";
183
+			}
165 184
 			try {
166 185
 				$sth = $this->db->prepare($query);
167 186
 				$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -169,7 +188,9 @@  discard block
 block discarded – undo
169 188
 				echo "error : ".$e->getMessage();
170 189
 			}
171 190
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
172
-		} else $all = array();
191
+		} else {
192
+			$all = array();
193
+		}
173 194
                 if (empty($all)) {
174 195
             	    $filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
175 196
             	    if ($filter_name != '') {
@@ -183,10 +204,15 @@  discard block
 block discarded – undo
183 204
 	}
184 205
 	public function countAllAirlineCountries($limit = true,$filter_name = '',$year = '',$month = '') {
185 206
 		global $globalStatsFilters;
186
-		if ($filter_name == '') $filter_name = $this->filter_name;
207
+		if ($filter_name == '') {
208
+			$filter_name = $this->filter_name;
209
+		}
187 210
 		if ($year == '' && $month == '') {
188
-			if ($limit) $query = "SELECT airlines.country AS airline_country, SUM(stats_airline.cnt) as airline_country_count FROM stats_airline,airlines WHERE stats_airline.airline_icao=airlines.icao AND filter_name = :filter_name GROUP BY airline_country ORDER BY airline_country_count DESC LIMIT 10 OFFSET 0";
189
-			else $query = "SELECT airlines.country AS airline_country, SUM(stats_airline.cnt) as airline_country_count FROM stats_airline,airlines WHERE stats_airline.airline_icao=airlines.icao AND filter_name = :filter_name GROUP BY airline_country ORDER BY airline_country_count DESC";
211
+			if ($limit) {
212
+				$query = "SELECT airlines.country AS airline_country, SUM(stats_airline.cnt) as airline_country_count FROM stats_airline,airlines WHERE stats_airline.airline_icao=airlines.icao AND filter_name = :filter_name GROUP BY airline_country ORDER BY airline_country_count DESC LIMIT 10 OFFSET 0";
213
+			} else {
214
+				$query = "SELECT airlines.country AS airline_country, SUM(stats_airline.cnt) as airline_country_count FROM stats_airline,airlines WHERE stats_airline.airline_icao=airlines.icao AND filter_name = :filter_name GROUP BY airline_country ORDER BY airline_country_count DESC";
215
+			}
190 216
 			try {
191 217
 				$sth = $this->db->prepare($query);
192 218
 				$sth->execute(array(':filter_name' => $filter_name));
@@ -194,7 +220,9 @@  discard block
 block discarded – undo
194 220
 				echo "error : ".$e->getMessage();
195 221
 			}
196 222
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
197
-		} else $all = array();
223
+		} else {
224
+			$all = array();
225
+		}
198 226
                 if (empty($all)) {
199 227
             		$Spotter = new Spotter($this->db);
200 228
             		$filters = array();
@@ -209,10 +237,15 @@  discard block
 block discarded – undo
209 237
 	}
210 238
 	public function countAllAircraftManufacturers($limit = true,$stats_airline = '', $filter_name = '',$year = '', $month = '') {
211 239
 		global $globalStatsFilters;
212
-		if ($filter_name == '') $filter_name = $this->filter_name;
240
+		if ($filter_name == '') {
241
+			$filter_name = $this->filter_name;
242
+		}
213 243
 		if ($year == '' && $month == '') {
214
-			if ($limit) $query = "SELECT aircraft_manufacturer, SUM(stats_aircraft.cnt) as aircraft_manufacturer_count FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY aircraft_manufacturer ORDER BY aircraft_manufacturer_count DESC LIMIT 10 OFFSET 0";
215
-			else $query = "SELECT aircraft_manufacturer, SUM(stats_aircraft.cnt) as aircraft_manufacturer_count FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY aircraft_manufacturer ORDER BY aircraft_manufacturer_count DESC";
244
+			if ($limit) {
245
+				$query = "SELECT aircraft_manufacturer, SUM(stats_aircraft.cnt) as aircraft_manufacturer_count FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY aircraft_manufacturer ORDER BY aircraft_manufacturer_count DESC LIMIT 10 OFFSET 0";
246
+			} else {
247
+				$query = "SELECT aircraft_manufacturer, SUM(stats_aircraft.cnt) as aircraft_manufacturer_count FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY aircraft_manufacturer ORDER BY aircraft_manufacturer_count DESC";
248
+			}
216 249
 			try {
217 250
 				$sth = $this->db->prepare($query);
218 251
 				$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -220,7 +253,9 @@  discard block
 block discarded – undo
220 253
 				echo "error : ".$e->getMessage();
221 254
 			}
222 255
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
223
-		} else $all = array();
256
+		} else {
257
+			$all = array();
258
+		}
224 259
 		if (empty($all)) {
225 260
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
226 261
 			if ($filter_name != '') {
@@ -235,10 +270,15 @@  discard block
 block discarded – undo
235 270
 
236 271
 	public function countAllArrivalCountries($limit = true, $stats_airline = '', $filter_name = '',$year = '', $month = '') {
237 272
 		global $globalStatsFilters;
238
-		if ($filter_name == '') $filter_name = $this->filter_name;
273
+		if ($filter_name == '') {
274
+			$filter_name = $this->filter_name;
275
+		}
239 276
 		if ($year == '' && $month == '') {
240
-			if ($limit) $query = "SELECT airport_country AS airport_arrival_country, SUM(arrival) as airport_arrival_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_arrival_country ORDER BY airport_arrival_country_count DESC LIMIT 10 OFFSET 0";
241
-			else $query = "SELECT airport_country AS airport_arrival_country, SUM(arrival) as airport_arrival_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_arrival_country ORDER BY airport_arrival_country_count DESC";
277
+			if ($limit) {
278
+				$query = "SELECT airport_country AS airport_arrival_country, SUM(arrival) as airport_arrival_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_arrival_country ORDER BY airport_arrival_country_count DESC LIMIT 10 OFFSET 0";
279
+			} else {
280
+				$query = "SELECT airport_country AS airport_arrival_country, SUM(arrival) as airport_arrival_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_arrival_country ORDER BY airport_arrival_country_count DESC";
281
+			}
242 282
 			try {
243 283
 				$sth = $this->db->prepare($query);
244 284
 				$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -246,7 +286,9 @@  discard block
 block discarded – undo
246 286
 				echo "error : ".$e->getMessage();
247 287
 			}
248 288
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
249
-		} else $all = array();
289
+		} else {
290
+			$all = array();
291
+		}
250 292
                 if (empty($all)) {
251 293
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
252 294
 			if ($filter_name != '') {
@@ -260,9 +302,14 @@  discard block
 block discarded – undo
260 302
 	}
261 303
 	public function countAllDepartureCountries($limit = true, $stats_airline = '', $filter_name = '', $year = '', $month = '') {
262 304
 		global $globalStatsFilters;
263
-		if ($filter_name == '') $filter_name = $this->filter_name;
264
-		if ($limit) $query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC LIMIT 10 OFFSET 0";
265
-		else $query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC";
305
+		if ($filter_name == '') {
306
+			$filter_name = $this->filter_name;
307
+		}
308
+		if ($limit) {
309
+			$query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC LIMIT 10 OFFSET 0";
310
+		} else {
311
+			$query = "SELECT airport_country AS airport_departure_country, SUM(departure) as airport_departure_country_count FROM stats_airport WHERE stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name GROUP BY airport_departure_country ORDER BY airport_departure_country_count DESC";
312
+		}
266 313
                  try {
267 314
                         $sth = $this->db->prepare($query);
268 315
                         $sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -284,17 +331,29 @@  discard block
 block discarded – undo
284 331
 
285 332
 	public function countAllAirlines($limit = true,$filter_name = '',$year = '',$month = '') {
286 333
 		global $globalStatsFilters, $globalVATSIM, $globalIVAO;
287
-		if ($filter_name == '') $filter_name = $this->filter_name;
334
+		if ($filter_name == '') {
335
+			$filter_name = $this->filter_name;
336
+		}
288 337
 		if ($year == '' && $month == '') {
289
-			if ($globalVATSIM) $forsource = 'vatsim';
290
-			if ($globalIVAO) $forsource = 'ivao';
338
+			if ($globalVATSIM) {
339
+				$forsource = 'vatsim';
340
+			}
341
+			if ($globalIVAO) {
342
+				$forsource = 'ivao';
343
+			}
291 344
 			if (isset($forsource)) {
292
-				if ($limit) $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC LIMIT 10 OFFSET 0";
293
-				else $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC";
345
+				if ($limit) {
346
+					$query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC LIMIT 10 OFFSET 0";
347
+				} else {
348
+					$query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource = :forsource ORDER BY airline_count DESC";
349
+				}
294 350
 				$query_values = array(':filter_name' => $filter_name,':forsource' => $forsource);
295 351
 			} else {
296
-				if ($limit) $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC LIMIT 10 OFFSET 0";
297
-				else $query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC";
352
+				if ($limit) {
353
+					$query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC LIMIT 10 OFFSET 0";
354
+				} else {
355
+					$query = "SELECT DISTINCT stats_airline.airline_icao, stats_airline.cnt AS airline_count, stats_airline.airline_name, airlines.country as airline_country FROM stats_airline, airlines WHERE stats_airline.airline_name <> '' AND stats_airline.airline_icao <> '' AND airlines.icao = stats_airline.airline_icao AND filter_name = :filter_name AND airlines.forsource IS NULL ORDER BY airline_count DESC";
356
+				}
298 357
 				$query_values = array(':filter_name' => $filter_name);
299 358
 			}
300 359
 			try {
@@ -304,7 +363,9 @@  discard block
 block discarded – undo
304 363
 				echo "error : ".$e->getMessage();
305 364
 			}
306 365
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
307
-		} else $all = array();
366
+		} else {
367
+			$all = array();
368
+		}
308 369
                 if (empty($all)) {
309 370
 	                $Spotter = new Spotter($this->db);
310 371
             		$filters = array();
@@ -319,10 +380,15 @@  discard block
 block discarded – undo
319 380
 	}
320 381
 	public function countAllAircraftRegistrations($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') {
321 382
 		global $globalStatsFilters;
322
-		if ($filter_name == '') $filter_name = $this->filter_name;
383
+		if ($filter_name == '') {
384
+			$filter_name = $this->filter_name;
385
+		}
323 386
 		if ($year == '' && $month == '') {
324
-			if ($limit) $query = "SELECT s.aircraft_icao, s.cnt AS aircraft_registration_count, a.type AS aircraft_name, s.registration FROM stats_registration s, aircraft a WHERE s.registration <> '' AND a.icao = s.aircraft_icao AND s.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_registration_count DESC LIMIT 10 OFFSET 0";
325
-			else $query = "SELECT s.aircraft_icao, s.cnt AS aircraft_registration_count, a.type AS aircraft_name FROM stats_registration s, aircraft a WHERE s.registration <> '' AND a.icao = s.aircraft_icao AND s.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_registration_count DESC";
387
+			if ($limit) {
388
+				$query = "SELECT s.aircraft_icao, s.cnt AS aircraft_registration_count, a.type AS aircraft_name, s.registration FROM stats_registration s, aircraft a WHERE s.registration <> '' AND a.icao = s.aircraft_icao AND s.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_registration_count DESC LIMIT 10 OFFSET 0";
389
+			} else {
390
+				$query = "SELECT s.aircraft_icao, s.cnt AS aircraft_registration_count, a.type AS aircraft_name FROM stats_registration s, aircraft a WHERE s.registration <> '' AND a.icao = s.aircraft_icao AND s.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY aircraft_registration_count DESC";
391
+			}
326 392
 			try {
327 393
 				$sth = $this->db->prepare($query);
328 394
 				$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -330,7 +396,9 @@  discard block
 block discarded – undo
330 396
 				echo "error : ".$e->getMessage();
331 397
 			}
332 398
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
333
-		} else $all = array();
399
+		} else {
400
+			$all = array();
401
+		}
334 402
                 if (empty($all)) {
335 403
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
336 404
 			if ($filter_name != '') {
@@ -344,10 +412,15 @@  discard block
 block discarded – undo
344 412
 	}
345 413
 	public function countAllCallsigns($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') {
346 414
 		global $globalStatsFilters;
347
-		if ($filter_name == '') $filter_name = $this->filter_name;
415
+		if ($filter_name == '') {
416
+			$filter_name = $this->filter_name;
417
+		}
348 418
 		if ($year == '' && $month == '') {
349
-			if ($limit) $query = "SELECT s.callsign_icao, s.cnt AS callsign_icao_count, a.name AS airline_name, a.icao as airline_icao FROM stats_callsign s, airlines a WHERE s.callsign_icao <> '' AND a.icao = s.airline_icao AND s.airline_icao = :stats_airline AND filter_name = :filter_name ORDER BY callsign_icao_count DESC LIMIT 10 OFFSET 0";
350
-			else $query = "SELECT s.callsign_icao, s.cnt AS callsign_icao_count, a.name AS airline_name, a.icao as airline_icao FROM stats_callsign s, airlines a WHERE s.callsign_icao <> '' AND a.icao = s.airline_icao AND s.airline_icao = :stats_airline AND filter_name = :filter_name ORDER BY callsign_icao_count DESC";
419
+			if ($limit) {
420
+				$query = "SELECT s.callsign_icao, s.cnt AS callsign_icao_count, a.name AS airline_name, a.icao as airline_icao FROM stats_callsign s, airlines a WHERE s.callsign_icao <> '' AND a.icao = s.airline_icao AND s.airline_icao = :stats_airline AND filter_name = :filter_name ORDER BY callsign_icao_count DESC LIMIT 10 OFFSET 0";
421
+			} else {
422
+				$query = "SELECT s.callsign_icao, s.cnt AS callsign_icao_count, a.name AS airline_name, a.icao as airline_icao FROM stats_callsign s, airlines a WHERE s.callsign_icao <> '' AND a.icao = s.airline_icao AND s.airline_icao = :stats_airline AND filter_name = :filter_name ORDER BY callsign_icao_count DESC";
423
+			}
351 424
 			 try {
352 425
 				$sth = $this->db->prepare($query);
353 426
 				$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -355,7 +428,9 @@  discard block
 block discarded – undo
355 428
 				echo "error : ".$e->getMessage();
356 429
 			}
357 430
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
358
-		} else $all = array();
431
+		} else {
432
+			$all = array();
433
+		}
359 434
 		if (empty($all)) {
360 435
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
361 436
 			if ($filter_name != '') {
@@ -369,11 +444,16 @@  discard block
 block discarded – undo
369 444
 	}
370 445
 	public function countAllFlightOverCountries($limit = true, $stats_airline = '',$filter_name = '',$year = '',$month = '') {
371 446
 		$Connection = new Connection();
372
-		if ($filter_name == '') $filter_name = $this->filter_name;
447
+		if ($filter_name == '') {
448
+			$filter_name = $this->filter_name;
449
+		}
373 450
 		if ($Connection->tableExists('countries')) {
374 451
 			if ($year == '' && $month == '') {
375
-				if ($limit) $query = "SELECT countries.iso3 as flight_country_iso3, countries.iso2 as flight_country_iso2, countries.name as flight_country, cnt as flight_count, lat as flight_country_latitude, lon as flight_country_longitude FROM stats_country, countries WHERE stats_country.iso2 = countries.iso2 AND stats_country.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY flight_count DESC LIMIT 20 OFFSET 0";
376
-				else $query = "SELECT countries.iso3 as flight_country_iso3, countries.iso2 as flight_country_iso2, countries.name as flight_country, cnt as flight_count, lat as flight_country_latitude, lon as flight_country_longitude FROM stats_country, countries WHERE stats_country.iso2 = countries.iso2 AND stats_country.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY flight_count DESC";
452
+				if ($limit) {
453
+					$query = "SELECT countries.iso3 as flight_country_iso3, countries.iso2 as flight_country_iso2, countries.name as flight_country, cnt as flight_count, lat as flight_country_latitude, lon as flight_country_longitude FROM stats_country, countries WHERE stats_country.iso2 = countries.iso2 AND stats_country.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY flight_count DESC LIMIT 20 OFFSET 0";
454
+				} else {
455
+					$query = "SELECT countries.iso3 as flight_country_iso3, countries.iso2 as flight_country_iso2, countries.name as flight_country, cnt as flight_count, lat as flight_country_latitude, lon as flight_country_longitude FROM stats_country, countries WHERE stats_country.iso2 = countries.iso2 AND stats_country.stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY flight_count DESC";
456
+				}
377 457
 				 try {
378 458
 					$sth = $this->db->prepare($query);
379 459
 					$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -388,17 +468,24 @@  discard block
 block discarded – undo
388 468
                 }
389 469
                 */
390 470
 				return $all;
391
-			} else return array();
471
+			} else {
472
+				return array();
473
+			}
392 474
 		} else {
393 475
 			return array();
394 476
 		}
395 477
 	}
396 478
 	public function countAllPilots($limit = true,$stats_airline = '',$filter_name = '', $year = '',$month = '') {
397 479
 		global $globalStatsFilters;
398
-		if ($filter_name == '') $filter_name = $this->filter_name;
480
+		if ($filter_name == '') {
481
+			$filter_name = $this->filter_name;
482
+		}
399 483
 		if ($year == '' && $month == '') {
400
-			if ($limit) $query = "SELECT pilot_id, cnt AS pilot_count, pilot_name, format_source FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_count DESC LIMIT 10 OFFSET 0";
401
-			else $query = "SELECT pilot_id, cnt AS pilot_count, pilot_name, format_source FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_count DESC";
484
+			if ($limit) {
485
+				$query = "SELECT pilot_id, cnt AS pilot_count, pilot_name, format_source FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_count DESC LIMIT 10 OFFSET 0";
486
+			} else {
487
+				$query = "SELECT pilot_id, cnt AS pilot_count, pilot_name, format_source FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY pilot_count DESC";
488
+			}
402 489
 			try {
403 490
 				$sth = $this->db->prepare($query);
404 491
 				$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -406,7 +493,9 @@  discard block
 block discarded – undo
406 493
 				echo "error : ".$e->getMessage();
407 494
 			}
408 495
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
409
-		} else $all = array();
496
+		} else {
497
+			$all = array();
498
+		}
410 499
 		if (empty($all)) {
411 500
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
412 501
 			if ($filter_name != '') {
@@ -421,10 +510,15 @@  discard block
 block discarded – undo
421 510
 
422 511
 	public function countAllOwners($limit = true,$stats_airline = '', $filter_name = '',$year = '',$month = '') {
423 512
 		global $globalStatsFilters;
424
-		if ($filter_name == '') $filter_name = $this->filter_name;
513
+		if ($filter_name == '') {
514
+			$filter_name = $this->filter_name;
515
+		}
425 516
 		if ($year == '' && $month == '') {
426
-			if ($limit) $query = "SELECT owner_name, cnt AS owner_count FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_count DESC LIMIT 10 OFFSET 0";
427
-			else $query = "SELECT owner_name, cnt AS owner_count FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_count DESC";
517
+			if ($limit) {
518
+				$query = "SELECT owner_name, cnt AS owner_count FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_count DESC LIMIT 10 OFFSET 0";
519
+			} else {
520
+				$query = "SELECT owner_name, cnt AS owner_count FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY owner_count DESC";
521
+			}
428 522
 			try {
429 523
 				$sth = $this->db->prepare($query);
430 524
 				$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -432,7 +526,9 @@  discard block
 block discarded – undo
432 526
 				echo "error : ".$e->getMessage();
433 527
 			}
434 528
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
435
-		} else $all = array();
529
+		} else {
530
+			$all = array();
531
+		}
436 532
                 if (empty($all)) {
437 533
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
438 534
 			if ($filter_name != '') {
@@ -446,10 +542,15 @@  discard block
 block discarded – undo
446 542
 	}
447 543
 	public function countAllDepartureAirports($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') {
448 544
 		global $globalStatsFilters;
449
-		if ($filter_name == '') $filter_name = $this->filter_name;
545
+		if ($filter_name == '') {
546
+			$filter_name = $this->filter_name;
547
+		}
450 548
 		if ($year == '' && $month == '') {
451
-			if ($limit) $query = "SELECT DISTINCT airport_icao AS airport_departure_icao,airport_city AS airport_departure_city,airport_country AS airport_departure_country,departure AS airport_departure_icao_count FROM stats_airport WHERE departure > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_departure_icao_count DESC LIMIT 10 OFFSET 0";
452
-			else $query = "SELECT DISTINCT airport_icao AS airport_departure_icao,airport_city AS airport_departure_city,airport_country AS airport_departure_country,departure AS airport_departure_icao_count FROM stats_airport WHERE departure > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_departure_icao_count DESC";
549
+			if ($limit) {
550
+				$query = "SELECT DISTINCT airport_icao AS airport_departure_icao,airport_city AS airport_departure_city,airport_country AS airport_departure_country,departure AS airport_departure_icao_count FROM stats_airport WHERE departure > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_departure_icao_count DESC LIMIT 10 OFFSET 0";
551
+			} else {
552
+				$query = "SELECT DISTINCT airport_icao AS airport_departure_icao,airport_city AS airport_departure_city,airport_country AS airport_departure_country,departure AS airport_departure_icao_count FROM stats_airport WHERE departure > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_departure_icao_count DESC";
553
+			}
453 554
 			try {
454 555
 				$sth = $this->db->prepare($query);
455 556
 				$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -457,7 +558,9 @@  discard block
 block discarded – undo
457 558
 				echo "error : ".$e->getMessage();
458 559
 			}
459 560
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
460
-		} else $all = array();
561
+		} else {
562
+			$all = array();
563
+		}
461 564
                 if (empty($all)) {
462 565
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
463 566
             		if ($filter_name != '') {
@@ -478,7 +581,9 @@  discard block
 block discarded – undo
478 581
         			$icao = $value['airport_departure_icao'];
479 582
         			if (isset($all[$icao])) {
480 583
         				$all[$icao]['airport_departure_icao_count'] = $all[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count'];
481
-        			} else $all[$icao] = $value;
584
+        			} else {
585
+        				$all[$icao] = $value;
586
+        			}
482 587
         		}
483 588
         		$count = array();
484 589
         		foreach ($all as $key => $row) {
@@ -490,10 +595,15 @@  discard block
 block discarded – undo
490 595
 	}
491 596
 	public function countAllArrivalAirports($limit = true,$stats_airline = '',$filter_name = '',$year = '',$month = '') {
492 597
 		global $globalStatsFilters;
493
-		if ($filter_name == '') $filter_name = $this->filter_name;
598
+		if ($filter_name == '') {
599
+			$filter_name = $this->filter_name;
600
+		}
494 601
 		if ($year == '' && $month == '') {
495
-			if ($limit) $query = "SELECT DISTINCT airport_icao AS airport_arrival_icao,airport_city AS airport_arrival_city,airport_country AS airport_arrival_country,arrival AS airport_arrival_icao_count FROM stats_airport WHERE arrival > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_arrival_icao_count DESC LIMIT 10 OFFSET 0";
496
-			else $query = "SELECT DISTINCT airport_icao AS airport_arrival_icao,airport_city AS airport_arrival_city,airport_country AS airport_arrival_country,arrival AS airport_arrival_icao_count FROM stats_airport WHERE arrival > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_arrival_icao_count DESC";
602
+			if ($limit) {
603
+				$query = "SELECT DISTINCT airport_icao AS airport_arrival_icao,airport_city AS airport_arrival_city,airport_country AS airport_arrival_country,arrival AS airport_arrival_icao_count FROM stats_airport WHERE arrival > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_arrival_icao_count DESC LIMIT 10 OFFSET 0";
604
+			} else {
605
+				$query = "SELECT DISTINCT airport_icao AS airport_arrival_icao,airport_city AS airport_arrival_city,airport_country AS airport_arrival_country,arrival AS airport_arrival_icao_count FROM stats_airport WHERE arrival > 0 AND stats_type = 'yearly' AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY airport_arrival_icao_count DESC";
606
+			}
497 607
 			try {
498 608
 				$sth = $this->db->prepare($query);
499 609
 				$sth->execute(array(':stats_airline' => $stats_airline,':filter_name' => $filter_name));
@@ -501,7 +611,9 @@  discard block
 block discarded – undo
501 611
 				echo "error : ".$e->getMessage();
502 612
 			}
503 613
 			$all = $sth->fetchAll(PDO::FETCH_ASSOC);
504
-		} else $all = array();
614
+		} else {
615
+			$all = array();
616
+		}
505 617
 		if (empty($all)) {
506 618
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
507 619
 			if ($filter_name != '') {
@@ -522,7 +634,9 @@  discard block
 block discarded – undo
522 634
         			$icao = $value['airport_arrival_icao'];
523 635
         			if (isset($all[$icao])) {
524 636
         				$all[$icao]['airport_arrival_icao_count'] = $all[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count'];
525
-        			} else $all[$icao] = $value;
637
+        			} else {
638
+        				$all[$icao] = $value;
639
+        			}
526 640
         		}
527 641
         		$count = array();
528 642
         		foreach ($all as $key => $row) {
@@ -535,13 +649,21 @@  discard block
 block discarded – undo
535 649
 	}
536 650
 	public function countAllMonthsLastYear($limit = true,$stats_airline = '',$filter_name = '') {
537 651
 		global $globalDBdriver, $globalStatsFilters;
538
-		if ($filter_name == '') $filter_name = $this->filter_name;
652
+		if ($filter_name == '') {
653
+			$filter_name = $this->filter_name;
654
+		}
539 655
 		if ($globalDBdriver == 'mysql') {
540
-			if ($limit) $query = "SELECT MONTH(stats_date) as month_name, YEAR(stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 12 MONTH) AND stats_airline = :stats_airline AND filter_name = :filter_name";
541
-			else $query = "SELECT MONTH(stats_date) as month_name, YEAR(stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name";
656
+			if ($limit) {
657
+				$query = "SELECT MONTH(stats_date) as month_name, YEAR(stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 12 MONTH) AND stats_airline = :stats_airline AND filter_name = :filter_name";
658
+			} else {
659
+				$query = "SELECT MONTH(stats_date) as month_name, YEAR(stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name";
660
+			}
542 661
 		} else {
543
-			if ($limit) $query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_date >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '12 MONTHS' AND stats_airline = :stats_airline AND filter_name = :filter_name";
544
-			else $query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name";
662
+			if ($limit) {
663
+				$query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_date >= CURRENT_TIMESTAMP AT TIME ZONE 'UTC' - INTERVAL '12 MONTHS' AND stats_airline = :stats_airline AND filter_name = :filter_name";
664
+			} else {
665
+				$query = "SELECT EXTRACT(MONTH FROM stats_date) as month_name, EXTRACT(YEAR FROM stats_date) as year_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name";
666
+			}
545 667
 		}
546 668
 		$query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name);
547 669
                  try {
@@ -565,7 +687,9 @@  discard block
 block discarded – undo
565 687
 	
566 688
 	public function countAllDatesLastMonth($stats_airline = '',$filter_name = '') {
567 689
 		global $globalStatsFilters;
568
-		if ($filter_name == '') $filter_name = $this->filter_name;
690
+		if ($filter_name == '') {
691
+			$filter_name = $this->filter_name;
692
+		}
569 693
 		$query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'month' AND stats_airline = :stats_airline AND filter_name = :filter_name";
570 694
 		$query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name);
571 695
                  try {
@@ -587,7 +711,9 @@  discard block
 block discarded – undo
587 711
 	}
588 712
 	public function countAllDatesLast7Days($stats_airline = '',$filter_name = '') {
589 713
 		global $globalDBdriver, $globalStatsFilters;
590
-		if ($filter_name == '') $filter_name = $this->filter_name;
714
+		if ($filter_name == '') {
715
+			$filter_name = $this->filter_name;
716
+		}
591 717
 		if ($globalDBdriver == 'mysql') {
592 718
 			$query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'month' AND flight_date >= DATE_SUB(UTC_TIMESTAMP(),INTERVAL 7 DAY) AND stats_airline = :stats_airline AND filter_name = :filter_name";
593 719
 		} else {
@@ -613,7 +739,9 @@  discard block
 block discarded – undo
613 739
 	}
614 740
 	public function countAllDates($stats_airline = '',$filter_name = '') {
615 741
 		global $globalStatsFilters;
616
-		if ($filter_name == '') $filter_name = $this->filter_name;
742
+		if ($filter_name == '') {
743
+			$filter_name = $this->filter_name;
744
+		}
617 745
 		$query = "SELECT flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'date' AND stats_airline = :stats_airline AND filter_name = :filter_name";
618 746
 		$query_data = array(':stats_airline' => $stats_airline,':filter_name' => $filter_name);
619 747
                  try {
@@ -635,7 +763,9 @@  discard block
 block discarded – undo
635 763
 	}
636 764
 	public function countAllDatesByAirlines($filter_name = '') {
637 765
 		global $globalStatsFilters;
638
-		if ($filter_name == '') $filter_name = $this->filter_name;
766
+		if ($filter_name == '') {
767
+			$filter_name = $this->filter_name;
768
+		}
639 769
 		$query = "SELECT stats_airline as airline_icao, flight_date as date_name, cnt as date_count FROM stats_flight WHERE stats_type = 'date' AND filter_name = :filter_name";
640 770
 		$query_data = array('filter_name' => $filter_name);
641 771
                  try {
@@ -657,7 +787,9 @@  discard block
 block discarded – undo
657 787
 	}
658 788
 	public function countAllMonths($stats_airline = '',$filter_name = '') {
659 789
 		global $globalStatsFilters, $globalDBdriver;
660
-		if ($filter_name == '') $filter_name = $this->filter_name;
790
+		if ($filter_name == '') {
791
+			$filter_name = $this->filter_name;
792
+		}
661 793
 		if ($globalDBdriver == 'mysql') {
662 794
 			$query = "SELECT YEAR(stats_date) AS year_name,MONTH(stats_date) AS month_name, cnt as date_count FROM stats WHERE stats_type = 'flights_bymonth' AND stats_airline = :stats_airline AND filter_name = :filter_name";
663 795
 		} else {
@@ -726,7 +858,9 @@  discard block
 block discarded – undo
726 858
 	}
727 859
 	public function countAllMilitaryMonths($filter_name = '') {
728 860
 		global $globalStatsFilters;
729
-		if ($filter_name == '') $filter_name = $this->filter_name;
861
+		if ($filter_name == '') {
862
+			$filter_name = $this->filter_name;
863
+		}
730 864
 	    	$query = "SELECT YEAR(stats_date) AS year_name,MONTH(stats_date) AS month_name, cnt as date_count FROM stats WHERE stats_type = 'military_flights_bymonth' AND filter_name = :filter_name";
731 865
                  try {
732 866
                         $sth = $this->db->prepare($query);
@@ -747,9 +881,14 @@  discard block
 block discarded – undo
747 881
 	}
748 882
 	public function countAllHours($orderby = 'hour',$limit = true,$stats_airline = '',$filter_name = '') {
749 883
 		global $globalTimezone, $globalDBdriver, $globalStatsFilters;
750
-		if ($filter_name == '') $filter_name = $this->filter_name;
751
-		if ($limit) $query = "SELECT flight_date as hour_name, cnt as hour_count FROM stats_flight WHERE stats_type = 'hour' AND stats_airline = :stats_airline AND filter_name = :filter_name";
752
-		else $query = "SELECT flight_date as hour_name, cnt as hour_count FROM stats_flight WHERE stats_type = 'hour' AND stats_airline = :stats_airline AND filter_name = :filter_name";
884
+		if ($filter_name == '') {
885
+			$filter_name = $this->filter_name;
886
+		}
887
+		if ($limit) {
888
+			$query = "SELECT flight_date as hour_name, cnt as hour_count FROM stats_flight WHERE stats_type = 'hour' AND stats_airline = :stats_airline AND filter_name = :filter_name";
889
+		} else {
890
+			$query = "SELECT flight_date as hour_name, cnt as hour_count FROM stats_flight WHERE stats_type = 'hour' AND stats_airline = :stats_airline AND filter_name = :filter_name";
891
+		}
753 892
 		if ($orderby == 'hour') {
754 893
 			if ($globalDBdriver == 'mysql') {
755 894
 				//$query .= " ORDER BY flight_date ASC";
@@ -758,7 +897,9 @@  discard block
 block discarded – undo
758 897
 				$query .= " ORDER BY CAST(flight_date AS integer) ASC";
759 898
 			}
760 899
 		}
761
-		if ($orderby == 'count') $query .= " ORDER BY hour_count DESC";
900
+		if ($orderby == 'count') {
901
+			$query .= " ORDER BY hour_count DESC";
902
+		}
762 903
                  try {
763 904
                         $sth = $this->db->prepare($query);
764 905
                         $sth->execute(array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name));
@@ -779,8 +920,12 @@  discard block
 block discarded – undo
779 920
 	
780 921
 	public function countOverallFlights($stats_airline = '', $filter_name = '',$year = '',$month = '') {
781 922
 		global $globalStatsFilters;
782
-		if ($filter_name == '') $filter_name = $this->filter_name;
783
-		if ($year == '') $year = date('Y');
923
+		if ($filter_name == '') {
924
+			$filter_name = $this->filter_name;
925
+		}
926
+		if ($year == '') {
927
+			$year = date('Y');
928
+		}
784 929
 		$all = $this->getSumStats('flights_bymonth',$year,$stats_airline,$filter_name,$month);
785 930
 		if (empty($all)) {
786 931
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
@@ -795,8 +940,12 @@  discard block
 block discarded – undo
795 940
 	}
796 941
 	public function countOverallMilitaryFlights($filter_name = '',$year = '', $month = '') {
797 942
 		global $globalStatsFilters;
798
-		if ($filter_name == '') $filter_name = $this->filter_name;
799
-		if ($year == '') $year = date('Y');
943
+		if ($filter_name == '') {
944
+			$filter_name = $this->filter_name;
945
+		}
946
+		if ($year == '') {
947
+			$year = date('Y');
948
+		}
800 949
 		$all = $this->getSumStats('military_flights_bymonth',$year,'',$filter_name,$month);
801 950
 		if (empty($all)) {
802 951
 		        $filters = array();
@@ -812,8 +961,12 @@  discard block
 block discarded – undo
812 961
 	}
813 962
 	public function countOverallArrival($stats_airline = '',$filter_name = '', $year = '', $month = '') {
814 963
 		global $globalStatsFilters;
815
-		if ($filter_name == '') $filter_name = $this->filter_name;
816
-		if ($year == '') $year = date('Y');
964
+		if ($filter_name == '') {
965
+			$filter_name = $this->filter_name;
966
+		}
967
+		if ($year == '') {
968
+			$year = date('Y');
969
+		}
817 970
 		$all = $this->getSumStats('realarrivals_bymonth',$year,$stats_airline,$filter_name,$month);
818 971
 		if (empty($all)) {
819 972
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
@@ -828,7 +981,9 @@  discard block
 block discarded – undo
828 981
 	}
829 982
 	public function countOverallAircrafts($stats_airline = '',$filter_name = '',$year = '', $month = '') {
830 983
 		global $globalStatsFilters;
831
-		if ($filter_name == '') $filter_name = $this->filter_name;
984
+		if ($filter_name == '') {
985
+			$filter_name = $this->filter_name;
986
+		}
832 987
 		if ($year == '' && $month == '') {
833 988
 			$query = "SELECT COUNT(*) AS nb FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name";
834 989
 			try {
@@ -839,7 +994,9 @@  discard block
 block discarded – undo
839 994
 			}
840 995
 			$result = $sth->fetchAll(PDO::FETCH_ASSOC);
841 996
 			$all = $result[0]['nb'];
842
-		} else $all = $this->getSumStats('aircrafts_bymonth',$year,$stats_airline,$filter_name,$month);
997
+		} else {
998
+			$all = $this->getSumStats('aircrafts_bymonth',$year,$stats_airline,$filter_name,$month);
999
+		}
843 1000
 		if (empty($all)) {
844 1001
 			$filters = array('airlines' => array($stats_airline),'year' => $year,'month' => $month);
845 1002
 			if ($filter_name != '') {
@@ -853,7 +1010,9 @@  discard block
 block discarded – undo
853 1010
 	}
854 1011
 	public function countOverallAirlines($filter_name = '',$year = '',$month = '') {
855 1012
 		global $globalStatsFilters;
856
-		if ($filter_name == '') $filter_name = $this->filter_name;
1013
+		if ($filter_name == '') {
1014
+			$filter_name = $this->filter_name;
1015
+		}
857 1016
 		if ($year == '' && $month == '') {
858 1017
 			$query = "SELECT COUNT(*) AS nb_airline FROM stats_airline WHERE filter_name = :filter_name";
859 1018
 			try {
@@ -864,7 +1023,9 @@  discard block
 block discarded – undo
864 1023
 			}
865 1024
 			$result = $sth->fetchAll(PDO::FETCH_ASSOC);
866 1025
 			$all = $result[0]['nb_airline'];
867
-		} else $all = $this->getSumStats('airlines_bymonth',$year,'',$filter_name,$month);
1026
+		} else {
1027
+			$all = $this->getSumStats('airlines_bymonth',$year,'',$filter_name,$month);
1028
+		}
868 1029
 		if (empty($all)) {
869 1030
             		$filters = array();
870 1031
 			$filters = array('year' => $year,'month' => $month);
@@ -879,7 +1040,9 @@  discard block
 block discarded – undo
879 1040
 	}
880 1041
 	public function countOverallOwners($stats_airline = '',$filter_name = '',$year = '', $month = '') {
881 1042
 		global $globalStatsFilters;
882
-		if ($filter_name == '') $filter_name = $this->filter_name;
1043
+		if ($filter_name == '') {
1044
+			$filter_name = $this->filter_name;
1045
+		}
883 1046
 		if ($year == '' && $month == '') {
884 1047
 			$query = "SELECT count(*) as nb FROM stats_owner WHERE stats_airline = :stats_airline AND filter_name = :filter_name";
885 1048
 			$query_values = array(':stats_airline' => $stats_airline, ':filter_name' => $filter_name);
@@ -907,7 +1070,9 @@  discard block
 block discarded – undo
907 1070
 	}
908 1071
 	public function countOverallPilots($stats_airline = '',$filter_name = '',$year = '',$month = '') {
909 1072
 		global $globalStatsFilters;
910
-		if ($filter_name == '') $filter_name = $this->filter_name;
1073
+		if ($filter_name == '') {
1074
+			$filter_name = $this->filter_name;
1075
+		}
911 1076
 		//if ($year == '') $year = date('Y');
912 1077
 		if ($year == '' && $month == '') {
913 1078
 			$query = "SELECT count(*) as nb FROM stats_pilot WHERE stats_airline = :stats_airline AND filter_name = :filter_name";
@@ -936,7 +1101,9 @@  discard block
 block discarded – undo
936 1101
 	}
937 1102
 
938 1103
 	public function getLast7DaysAirports($airport_icao = '', $stats_airline = '',$filter_name = '') {
939
-		if ($filter_name == '') $filter_name = $this->filter_name;
1104
+		if ($filter_name == '') {
1105
+			$filter_name = $this->filter_name;
1106
+		}
940 1107
 		$query = "SELECT * FROM stats_airport WHERE stats_type = 'daily' AND airport_icao = :airport_icao AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY date";
941 1108
 		$query_values = array(':airport_icao' => $airport_icao,':stats_airline' => $stats_airline, ':filter_name' => $filter_name);
942 1109
                  try {
@@ -949,7 +1116,9 @@  discard block
 block discarded – undo
949 1116
                 return $all;
950 1117
 	}
951 1118
 	public function getStats($type,$stats_airline = '', $filter_name = '') {
952
-		if ($filter_name == '') $filter_name = $this->filter_name;
1119
+		if ($filter_name == '') {
1120
+			$filter_name = $this->filter_name;
1121
+		}
953 1122
                 $query = "SELECT * FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name ORDER BY stats_date";
954 1123
                 $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name);
955 1124
                  try {
@@ -962,7 +1131,9 @@  discard block
 block discarded – undo
962 1131
                 return $all;
963 1132
         }
964 1133
 	public function deleteStatsByType($type,$stats_airline = '', $filter_name = '') {
965
-		if ($filter_name == '') $filter_name = $this->filter_name;
1134
+		if ($filter_name == '') {
1135
+			$filter_name = $this->filter_name;
1136
+		}
966 1137
                 $query = "DELETE FROM stats WHERE stats_type = :type AND stats_airline = :stats_airline AND filter_name = :filter_name";
967 1138
                 $query_values = array(':type' => $type,':stats_airline' => $stats_airline,':filter_name' => $filter_name);
968 1139
                  try {
@@ -975,7 +1146,9 @@  discard block
 block discarded – undo
975 1146
                 return $all;
976 1147
         }
977 1148
 	public function getSumStats($type,$year,$stats_airline = '',$filter_name = '',$month = '') {
978
-		if ($filter_name == '') $filter_name = $this->filter_name;
1149
+		if ($filter_name == '') {
1150
+			$filter_name = $this->filter_name;
1151
+		}
979 1152
     		global $globalArchiveMonths, $globalDBdriver;
980 1153
     		if ($globalDBdriver == 'mysql') {
981 1154
     			if ($month == '') {
@@ -1005,7 +1178,9 @@  discard block
 block discarded – undo
1005 1178
         }
1006 1179
 	public function getStatsTotal($type, $stats_airline = '', $filter_name = '') {
1007 1180
     		global $globalArchiveMonths, $globalDBdriver;
1008
-		if ($filter_name == '') $filter_name = $this->filter_name;
1181
+		if ($filter_name == '') {
1182
+			$filter_name = $this->filter_name;
1183
+		}
1009 1184
     		if ($globalDBdriver == 'mysql') {
1010 1185
 			$query = "SELECT SUM(cnt) as total FROM stats WHERE stats_type = :type AND stats_date < DATE_SUB(UTC_TIMESTAMP(), INTERVAL ".$globalArchiveMonths." MONTH) AND stats_airline = :stats_airline AND filter_name = :filter_name";
1011 1186
 		} else {
@@ -1023,7 +1198,9 @@  discard block
 block discarded – undo
1023 1198
         }
1024 1199
 	public function getStatsAircraftTotal($stats_airline = '', $filter_name = '') {
1025 1200
     		global $globalArchiveMonths, $globalDBdriver;
1026
-		if ($filter_name == '') $filter_name = $this->filter_name;
1201
+		if ($filter_name == '') {
1202
+			$filter_name = $this->filter_name;
1203
+		}
1027 1204
     		if ($globalDBdriver == 'mysql') {
1028 1205
 			$query = "SELECT SUM(cnt) as total FROM stats_aircraft WHERE stats_airline = :stats_airline AND filter_name = :filter_name";
1029 1206
                 } else {
@@ -1040,7 +1217,9 @@  discard block
 block discarded – undo
1040 1217
         }
1041 1218
 	public function getStatsAirlineTotal($filter_name = '') {
1042 1219
     		global $globalArchiveMonths, $globalDBdriver;
1043
-		if ($filter_name == '') $filter_name = $this->filter_name;
1220
+		if ($filter_name == '') {
1221
+			$filter_name = $this->filter_name;
1222
+		}
1044 1223
     		if ($globalDBdriver == 'mysql') {
1045 1224
 			$query = "SELECT SUM(cnt) as total FROM stats_airline WHERE filter_name = :filter_name";
1046 1225
                 } else {
@@ -1057,7 +1236,9 @@  discard block
 block discarded – undo
1057 1236
         }
1058 1237
 	public function getStatsOwnerTotal($filter_name = '') {
1059 1238
     		global $globalArchiveMonths, $globalDBdriver;
1060
-		if ($filter_name == '') $filter_name = $this->filter_name;
1239
+		if ($filter_name == '') {
1240
+			$filter_name = $this->filter_name;
1241
+		}
1061 1242
     		if ($globalDBdriver == 'mysql') {
1062 1243
 			$query = "SELECT SUM(cnt) as total FROM stats_owner WHERE filter_name = :filter_name";
1063 1244
 		} else {
@@ -1074,7 +1255,9 @@  discard block
 block discarded – undo
1074 1255
         }
1075 1256
 	public function getStatsOwner($owner_name,$filter_name = '') {
1076 1257
     		global $globalArchiveMonths, $globalDBdriver;
1077
-		if ($filter_name == '') $filter_name = $this->filter_name;
1258
+		if ($filter_name == '') {
1259
+			$filter_name = $this->filter_name;
1260
+		}
1078 1261
 		$query = "SELECT cnt FROM stats_owner WHERE filter_name = :filter_name AND owner_name = :owner_name";
1079 1262
                  try {
1080 1263
                         $sth = $this->db->prepare($query);
@@ -1083,12 +1266,17 @@  discard block
 block discarded – undo
1083 1266
                         echo "error : ".$e->getMessage();
1084 1267
                 }
1085 1268
                 $all = $sth->fetchAll(PDO::FETCH_ASSOC);
1086
-                if (isset($all[0]['cnt'])) return $all[0]['cnt'];
1087
-                else return 0;
1269
+                if (isset($all[0]['cnt'])) {
1270
+                	return $all[0]['cnt'];
1271
+                } else {
1272
+                	return 0;
1273
+                }
1088 1274
         }
1089 1275
 	public function getStatsPilotTotal($filter_name = '') {
1090 1276
     		global $globalArchiveMonths, $globalDBdriver;
1091
-		if ($filter_name == '') $filter_name = $this->filter_name;
1277
+		if ($filter_name == '') {
1278
+			$filter_name = $this->filter_name;
1279
+		}
1092 1280
     		if ($globalDBdriver == 'mysql') {
1093 1281
             		$query = "SELECT SUM(cnt) as total FROM stats_pilot WHERE filter_name = :filter_name";
1094 1282
             	} else {
@@ -1105,7 +1293,9 @@  discard block
 block discarded – undo
1105 1293
         }
1106 1294
 	public function getStatsPilot($pilot,$filter_name = '') {
1107 1295
     		global $globalArchiveMonths, $globalDBdriver;
1108
-		if ($filter_name == '') $filter_name = $this->filter_name;
1296
+		if ($filter_name == '') {
1297
+			$filter_name = $this->filter_name;
1298
+		}
1109 1299
 		$query = "SELECT cnt FROM stats_pilot WHERE filter_name = :filter_name AND (pilot_name = :pilot OR pilot_id = :pilot)";
1110 1300
                  try {
1111 1301
                         $sth = $this->db->prepare($query);
@@ -1114,13 +1304,18 @@  discard block
 block discarded – undo
1114 1304
                         echo "error : ".$e->getMessage();
1115 1305
                 }
1116 1306
                 $all = $sth->fetchAll(PDO::FETCH_ASSOC);
1117
-                if (isset($all[0]['cnt'])) return $all[0]['cnt'];
1118
-                else return 0;
1307
+                if (isset($all[0]['cnt'])) {
1308
+                	return $all[0]['cnt'];
1309
+                } else {
1310
+                	return 0;
1311
+                }
1119 1312
         }
1120 1313
 
1121 1314
 	public function addStat($type,$cnt,$stats_date,$stats_airline = '',$filter_name = '') {
1122 1315
 		global $globalDBdriver;
1123
-		if ($filter_name == '') $filter_name = $this->filter_name;
1316
+		if ($filter_name == '') {
1317
+			$filter_name = $this->filter_name;
1318
+		}
1124 1319
 		if ($globalDBdriver == 'mysql') {
1125 1320
 			$query = "INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) VALUES (:type,:cnt,:stats_date,:stats_airline,:filter_name) ON DUPLICATE KEY UPDATE cnt = :cnt";
1126 1321
                 } else {
@@ -1136,7 +1331,9 @@  discard block
 block discarded – undo
1136 1331
         }
1137 1332
 	public function updateStat($type,$cnt,$stats_date,$stats_airline = '',$filter_name = '') {
1138 1333
 		global $globalDBdriver;
1139
-		if ($filter_name == '') $filter_name = $this->filter_name;
1334
+		if ($filter_name == '') {
1335
+			$filter_name = $this->filter_name;
1336
+		}
1140 1337
 		if ($globalDBdriver == 'mysql') {
1141 1338
 			$query = "INSERT INTO stats (stats_type,cnt,stats_date,stats_airline,filter_name) VALUES (:type,:cnt,:stats_date,:stats_airline,:filter_name) ON DUPLICATE KEY UPDATE cnt = cnt+:cnt, stats_date = :date";
1142 1339
 		} else {
@@ -1522,10 +1719,14 @@  discard block
 block discarded – undo
1522 1719
     		$Connection = new Connection();
1523 1720
     		date_default_timezone_set('UTC');
1524 1721
     		$last_update = $this->getLastStatsUpdate('last_update_stats');
1525
-			if ($globalDebug) echo 'Update stats !'."\n";
1722
+			if ($globalDebug) {
1723
+				echo 'Update stats !'."\n";
1724
+			}
1526 1725
 			if (isset($last_update[0]['value'])) {
1527 1726
 				$last_update_day = $last_update[0]['value'];
1528
-			} else $last_update_day = '2012-12-12 12:12:12';
1727
+			} else {
1728
+				$last_update_day = '2012-12-12 12:12:12';
1729
+			}
1529 1730
 			$reset = false;
1530 1731
 			//if ($globalStatsResetYear && date('Y',strtotime($last_update_day)) != date('Y')) {
1531 1732
 			if ($globalStatsResetYear) {
@@ -1534,42 +1735,60 @@  discard block
 block discarded – undo
1534 1735
 			}
1535 1736
 			$Spotter = new Spotter($this->db);
1536 1737
 
1537
-			if ($globalDebug) echo 'Count all aircraft types...'."\n";
1738
+			if ($globalDebug) {
1739
+				echo 'Count all aircraft types...'."\n";
1740
+			}
1538 1741
 			$alldata = $Spotter->countAllAircraftTypes(false,0,$last_update_day);
1539 1742
 			foreach ($alldata as $number) {
1540 1743
 				$this->addStatAircraft($number['aircraft_icao'],$number['aircraft_icao_count'],$number['aircraft_name'],$number['aircraft_manufacturer'],'','',$reset);
1541 1744
 			}
1542
-			if ($globalDebug) echo 'Count all airlines...'."\n";
1745
+			if ($globalDebug) {
1746
+				echo 'Count all airlines...'."\n";
1747
+			}
1543 1748
 			$alldata = $Spotter->countAllAirlines(false,0,$last_update_day);
1544 1749
 			foreach ($alldata as $number) {
1545 1750
 				$this->addStatAirline($number['airline_icao'],$number['airline_count'],$number['airline_name'],'',$reset);
1546 1751
 			}
1547
-			if ($globalDebug) echo 'Count all registrations...'."\n";
1752
+			if ($globalDebug) {
1753
+				echo 'Count all registrations...'."\n";
1754
+			}
1548 1755
 			$alldata = $Spotter->countAllAircraftRegistrations(false,0,$last_update_day);
1549 1756
 			foreach ($alldata as $number) {
1550 1757
 				$this->addStatAircraftRegistration($number['registration'],$number['aircraft_registration_count'],$number['aircraft_icao'],'','',$reset);
1551 1758
 			}
1552
-			if ($globalDebug) echo 'Count all callsigns...'."\n";
1759
+			if ($globalDebug) {
1760
+				echo 'Count all callsigns...'."\n";
1761
+			}
1553 1762
 			$alldata = $Spotter->countAllCallsigns(false,0,$last_update_day);
1554 1763
 			foreach ($alldata as $number) {
1555 1764
 				$this->addStatCallsign($number['callsign_icao'],$number['callsign_icao_count'],$number['airline_icao'],'',$reset);
1556 1765
 			}
1557
-			if ($globalDebug) echo 'Count all owners...'."\n";
1766
+			if ($globalDebug) {
1767
+				echo 'Count all owners...'."\n";
1768
+			}
1558 1769
 			$alldata = $Spotter->countAllOwners(false,0,$last_update_day);
1559 1770
 			foreach ($alldata as $number) {
1560 1771
 				$this->addStatOwner($number['owner_name'],$number['owner_count'],'','',$reset);
1561 1772
 			}
1562
-			if ($globalDebug) echo 'Count all pilots...'."\n";
1773
+			if ($globalDebug) {
1774
+				echo 'Count all pilots...'."\n";
1775
+			}
1563 1776
 			$alldata = $Spotter->countAllPilots(false,0,$last_update_day);
1564 1777
 			foreach ($alldata as $number) {
1565 1778
 				$this->addStatPilot($number['pilot_id'],$number['pilot_count'],$number['pilot_name'],'','',$number['format_source'],$reset);
1566 1779
 			}
1567 1780
 			
1568
-			if ($globalDebug) echo 'Count all departure airports...'."\n";
1781
+			if ($globalDebug) {
1782
+				echo 'Count all departure airports...'."\n";
1783
+			}
1569 1784
 			$pall = $Spotter->countAllDepartureAirports(false,0,$last_update_day);
1570
-			if ($globalDebug) echo 'Count all detected departure airports...'."\n";
1785
+			if ($globalDebug) {
1786
+				echo 'Count all detected departure airports...'."\n";
1787
+			}
1571 1788
         		$dall = $Spotter->countAllDetectedDepartureAirports(false,0,$last_update_day);
1572
-			if ($globalDebug) echo 'Order departure airports...'."\n";
1789
+			if ($globalDebug) {
1790
+				echo 'Order departure airports...'."\n";
1791
+			}
1573 1792
 	        	$alldata = array();
1574 1793
 	        	
1575 1794
     			foreach ($pall as $value) {
@@ -1580,7 +1799,9 @@  discard block
 block discarded – undo
1580 1799
     				$icao = $value['airport_departure_icao'];
1581 1800
         			if (isset($alldata[$icao])) {
1582 1801
     					$alldata[$icao]['airport_departure_icao_count'] = $alldata[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count'];
1583
-        			} else $alldata[$icao] = $value;
1802
+        			} else {
1803
+        				$alldata[$icao] = $value;
1804
+        			}
1584 1805
 			}
1585 1806
     			$count = array();
1586 1807
     			foreach ($alldata as $key => $row) {
@@ -1590,11 +1811,17 @@  discard block
 block discarded – undo
1590 1811
 			foreach ($alldata as $number) {
1591 1812
 				echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],'','',$reset);
1592 1813
 			}
1593
-			if ($globalDebug) echo 'Count all arrival airports...'."\n";
1814
+			if ($globalDebug) {
1815
+				echo 'Count all arrival airports...'."\n";
1816
+			}
1594 1817
 			$pall = $Spotter->countAllArrivalAirports(false,0,$last_update_day);
1595
-			if ($globalDebug) echo 'Count all detected arrival airports...'."\n";
1818
+			if ($globalDebug) {
1819
+				echo 'Count all detected arrival airports...'."\n";
1820
+			}
1596 1821
         		$dall = $Spotter->countAllDetectedArrivalAirports(false,0,$last_update_day);
1597
-			if ($globalDebug) echo 'Order arrival airports...'."\n";
1822
+			if ($globalDebug) {
1823
+				echo 'Order arrival airports...'."\n";
1824
+			}
1598 1825
 	        	$alldata = array();
1599 1826
     			foreach ($pall as $value) {
1600 1827
 	        		$icao = $value['airport_arrival_icao'];
@@ -1604,7 +1831,9 @@  discard block
 block discarded – undo
1604 1831
     				$icao = $value['airport_arrival_icao'];
1605 1832
         			if (isset($alldata[$icao])) {
1606 1833
         				$alldata[$icao]['airport_arrival_icao_count'] = $alldata[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count'];
1607
-	        		} else $alldata[$icao] = $value;
1834
+	        		} else {
1835
+	        			$alldata[$icao] = $value;
1836
+	        		}
1608 1837
     			}
1609 1838
         		$count = array();
1610 1839
         		foreach ($alldata as $key => $row) {
@@ -1615,7 +1844,9 @@  discard block
 block discarded – undo
1615 1844
 				echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],'','',$reset);
1616 1845
 			}
1617 1846
 			if ($Connection->tableExists('countries')) {
1618
-				if ($globalDebug) echo 'Count all flights by countries...'."\n";
1847
+				if ($globalDebug) {
1848
+					echo 'Count all flights by countries...'."\n";
1849
+				}
1619 1850
 				$SpotterArchive = new SpotterArchive();
1620 1851
 				$alldata = $SpotterArchive->countAllFlightOverCountries(false,0,$last_update_day);
1621 1852
 				foreach ($alldata as $number) {
@@ -1623,7 +1854,9 @@  discard block
 block discarded – undo
1623 1854
 				}
1624 1855
 			}
1625 1856
 			
1626
-			if ($globalDebug) echo 'Count fatalities stats...'."\n";
1857
+			if ($globalDebug) {
1858
+				echo 'Count fatalities stats...'."\n";
1859
+			}
1627 1860
 			$Accident = new Accident();
1628 1861
 			$this->deleteStatsByType('fatalities_byyear');
1629 1862
 			$alldata = $Accident->countFatalitiesByYear();
@@ -1640,46 +1873,66 @@  discard block
 block discarded – undo
1640 1873
 			// Add by month using getstat if month finish...
1641 1874
 
1642 1875
 			//if (date('m',strtotime($last_update_day)) != date('m')) {
1643
-			if ($globalDebug) echo 'Count all flights by months...'."\n";
1876
+			if ($globalDebug) {
1877
+				echo 'Count all flights by months...'."\n";
1878
+			}
1644 1879
 			$Spotter = new Spotter($this->db);
1645 1880
 			$alldata = $Spotter->countAllMonths();
1646 1881
 			$lastyear = false;
1647 1882
 			foreach ($alldata as $number) {
1648
-				if ($number['year_name'] != date('Y')) $lastyear = true;
1883
+				if ($number['year_name'] != date('Y')) {
1884
+					$lastyear = true;
1885
+				}
1649 1886
 				$this->addStat('flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])));
1650 1887
 			}
1651
-			if ($globalDebug) echo 'Count all military flights by months...'."\n";
1888
+			if ($globalDebug) {
1889
+				echo 'Count all military flights by months...'."\n";
1890
+			}
1652 1891
 			$alldata = $Spotter->countAllMilitaryMonths();
1653 1892
 			foreach ($alldata as $number) {
1654 1893
 				$this->addStat('military_flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])));
1655 1894
 			}
1656
-			if ($globalDebug) echo 'Count all owners by months...'."\n";
1895
+			if ($globalDebug) {
1896
+				echo 'Count all owners by months...'."\n";
1897
+			}
1657 1898
 			$alldata = $Spotter->countAllMonthsOwners();
1658 1899
 			foreach ($alldata as $number) {
1659 1900
 				$this->addStat('owners_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])));
1660 1901
 			}
1661
-			if ($globalDebug) echo 'Count all pilots by months...'."\n";
1902
+			if ($globalDebug) {
1903
+				echo 'Count all pilots by months...'."\n";
1904
+			}
1662 1905
 			$alldata = $Spotter->countAllMonthsPilots();
1663 1906
 			foreach ($alldata as $number) {
1664 1907
 				$this->addStat('pilots_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])));
1665 1908
 			}
1666
-			if ($globalDebug) echo 'Count all airlines by months...'."\n";
1909
+			if ($globalDebug) {
1910
+				echo 'Count all airlines by months...'."\n";
1911
+			}
1667 1912
 			$alldata = $Spotter->countAllMonthsAirlines();
1668 1913
 			foreach ($alldata as $number) {
1669 1914
 				$this->addStat('airlines_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])));
1670 1915
 			}
1671
-			if ($globalDebug) echo 'Count all aircrafts by months...'."\n";
1916
+			if ($globalDebug) {
1917
+				echo 'Count all aircrafts by months...'."\n";
1918
+			}
1672 1919
 			$alldata = $Spotter->countAllMonthsAircrafts();
1673 1920
 			foreach ($alldata as $number) {
1674 1921
 				$this->addStat('aircrafts_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])));
1675 1922
 			}
1676
-			if ($globalDebug) echo 'Count all real arrivals by months...'."\n";
1923
+			if ($globalDebug) {
1924
+				echo 'Count all real arrivals by months...'."\n";
1925
+			}
1677 1926
 			$alldata = $Spotter->countAllMonthsRealArrivals();
1678 1927
 			foreach ($alldata as $number) {
1679 1928
 				$this->addStat('realarrivals_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])));
1680 1929
 			}
1681
-			if ($globalDebug) echo 'Airports data...'."\n";
1682
-			if ($globalDebug) echo '...Departure'."\n";
1930
+			if ($globalDebug) {
1931
+				echo 'Airports data...'."\n";
1932
+			}
1933
+			if ($globalDebug) {
1934
+				echo '...Departure'."\n";
1935
+			}
1683 1936
 			$this->deleteStatAirport('daily');
1684 1937
 //			$pall = $Spotter->getLast7DaysAirportsDeparture();
1685 1938
   //      		$dall = $Spotter->getLast7DaysDetectedAirportsDeparture();
@@ -1800,44 +2053,62 @@  discard block
 block discarded – undo
1800 2053
 			// Count by airlines
1801 2054
 			echo '--- Stats by airlines ---'."\n";
1802 2055
 			if ($Connection->tableExists('countries')) {
1803
-				if ($globalDebug) echo 'Count all flights by countries by airlines...'."\n";
2056
+				if ($globalDebug) {
2057
+					echo 'Count all flights by countries by airlines...'."\n";
2058
+				}
1804 2059
 				$SpotterArchive = new SpotterArchive();
1805 2060
 				$alldata = $SpotterArchive->countAllFlightOverCountriesByAirlines(false,0,$last_update_day);
1806 2061
 				foreach ($alldata as $number) {
1807 2062
 					$this->addStatCountry($number['flight_country_iso2'],$number['flight_country_iso3'],$number['flight_country'],$number['flight_count'],$number['airline_icao'],'',$reset);
1808 2063
 				}
1809 2064
 			}
1810
-			if ($globalDebug) echo 'Count all aircraft types by airlines...'."\n";
2065
+			if ($globalDebug) {
2066
+				echo 'Count all aircraft types by airlines...'."\n";
2067
+			}
1811 2068
 			$Spotter = new Spotter($this->db);
1812 2069
 			$alldata = $Spotter->countAllAircraftTypesByAirlines(false,0,$last_update_day);
1813 2070
 			foreach ($alldata as $number) {
1814 2071
 				$this->addStatAircraft($number['aircraft_icao'],$number['aircraft_icao_count'],$number['aircraft_name'],$number['aircraft_manufacturer'],$number['airline_icao'],'',$reset);
1815 2072
 			}
1816
-			if ($globalDebug) echo 'Count all aircraft registrations by airlines...'."\n";
2073
+			if ($globalDebug) {
2074
+				echo 'Count all aircraft registrations by airlines...'."\n";
2075
+			}
1817 2076
 			$alldata = $Spotter->countAllAircraftRegistrationsByAirlines(false,0,$last_update_day);
1818 2077
 			foreach ($alldata as $number) {
1819 2078
 				$this->addStatAircraftRegistration($number['registration'],$number['aircraft_registration_count'],$number['aircraft_icao'],$number['airline_icao'],'',$reset);
1820 2079
 			}
1821
-			if ($globalDebug) echo 'Count all callsigns by airlines...'."\n";
2080
+			if ($globalDebug) {
2081
+				echo 'Count all callsigns by airlines...'."\n";
2082
+			}
1822 2083
 			$alldata = $Spotter->countAllCallsignsByAirlines(false,0,$last_update_day);
1823 2084
 			foreach ($alldata as $number) {
1824 2085
 				$this->addStatCallsign($number['callsign_icao'],$number['callsign_icao_count'],$number['airline_icao'],'',$reset);
1825 2086
 			}
1826
-			if ($globalDebug) echo 'Count all owners by airlines...'."\n";
2087
+			if ($globalDebug) {
2088
+				echo 'Count all owners by airlines...'."\n";
2089
+			}
1827 2090
 			$alldata = $Spotter->countAllOwnersByAirlines(false,0,$last_update_day);
1828 2091
 			foreach ($alldata as $number) {
1829 2092
 				$this->addStatOwner($number['owner_name'],$number['owner_count'],$number['airline_icao'],'',$reset);
1830 2093
 			}
1831
-			if ($globalDebug) echo 'Count all pilots by airlines...'."\n";
2094
+			if ($globalDebug) {
2095
+				echo 'Count all pilots by airlines...'."\n";
2096
+			}
1832 2097
 			$alldata = $Spotter->countAllPilotsByAirlines(false,0,$last_update_day);
1833 2098
 			foreach ($alldata as $number) {
1834 2099
 				$this->addStatPilot($number['pilot_id'],$number['pilot_count'],$number['pilot_name'],$number['airline_icao'],'',$number['format_source'],$reset);
1835 2100
 			}
1836
-			if ($globalDebug) echo 'Count all departure airports by airlines...'."\n";
2101
+			if ($globalDebug) {
2102
+				echo 'Count all departure airports by airlines...'."\n";
2103
+			}
1837 2104
 			$pall = $Spotter->countAllDepartureAirportsByAirlines(false,0,$last_update_day);
1838
-			if ($globalDebug) echo 'Count all detected departure airports by airlines...'."\n";
2105
+			if ($globalDebug) {
2106
+				echo 'Count all detected departure airports by airlines...'."\n";
2107
+			}
1839 2108
        			$dall = $Spotter->countAllDetectedDepartureAirportsByAirlines(false,0,$last_update_day);
1840
-			if ($globalDebug) echo 'Order detected departure airports by airlines...'."\n";
2109
+			if ($globalDebug) {
2110
+				echo 'Order detected departure airports by airlines...'."\n";
2111
+			}
1841 2112
 	        	//$alldata = array();
1842 2113
     			foreach ($dall as $value) {
1843 2114
     				$icao = $value['airport_departure_icao'];
@@ -1858,11 +2129,17 @@  discard block
 block discarded – undo
1858 2129
 			foreach ($alldata as $number) {
1859 2130
 				echo $this->addStatDepartureAirports($number['airport_departure_icao'],$number['airport_departure_name'],$number['airport_departure_city'],$number['airport_departure_country'],$number['airport_departure_icao_count'],$number['airline_icao'],'',$reset);
1860 2131
 			}
1861
-			if ($globalDebug) echo 'Count all arrival airports by airlines...'."\n";
2132
+			if ($globalDebug) {
2133
+				echo 'Count all arrival airports by airlines...'."\n";
2134
+			}
1862 2135
 			$pall = $Spotter->countAllArrivalAirportsByAirlines(false,0,$last_update_day);
1863
-			if ($globalDebug) echo 'Count all detected arrival airports by airlines...'."\n";
2136
+			if ($globalDebug) {
2137
+				echo 'Count all detected arrival airports by airlines...'."\n";
2138
+			}
1864 2139
         		$dall = $Spotter->countAllDetectedArrivalAirportsByAirlines(false,0,$last_update_day);
1865
-			if ($globalDebug) echo 'Order arrival airports by airlines...'."\n";
2140
+			if ($globalDebug) {
2141
+				echo 'Order arrival airports by airlines...'."\n";
2142
+			}
1866 2143
 	        	//$alldata = array();
1867 2144
     			foreach ($dall as $value) {
1868 2145
     				$icao = $value['airport_arrival_icao'];
@@ -1881,37 +2158,53 @@  discard block
 block discarded – undo
1881 2158
     			}
1882 2159
     			$alldata = $pall;
1883 2160
                         foreach ($alldata as $number) {
1884
-				if ($number['airline_icao'] != '') echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],$number['airline_icao'],'',$reset);
2161
+				if ($number['airline_icao'] != '') {
2162
+					echo $this->addStatArrivalAirports($number['airport_arrival_icao'],$number['airport_arrival_name'],$number['airport_arrival_city'],$number['airport_arrival_country'],$number['airport_arrival_icao_count'],$number['airline_icao'],'',$reset);
2163
+				}
2164
+			}
2165
+			if ($globalDebug) {
2166
+				echo 'Count all flights by months by airlines...'."\n";
1885 2167
 			}
1886
-			if ($globalDebug) echo 'Count all flights by months by airlines...'."\n";
1887 2168
 			$Spotter = new Spotter($this->db);
1888 2169
 			$alldata = $Spotter->countAllMonthsByAirlines();
1889 2170
 			$lastyear = false;
1890 2171
 			foreach ($alldata as $number) {
1891
-				if ($number['year_name'] != date('Y')) $lastyear = true;
2172
+				if ($number['year_name'] != date('Y')) {
2173
+					$lastyear = true;
2174
+				}
1892 2175
 				$this->addStat('flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']);
1893 2176
 			}
1894
-			if ($globalDebug) echo 'Count all owners by months by airlines...'."\n";
2177
+			if ($globalDebug) {
2178
+				echo 'Count all owners by months by airlines...'."\n";
2179
+			}
1895 2180
 			$alldata = $Spotter->countAllMonthsOwnersByAirlines();
1896 2181
 			foreach ($alldata as $number) {
1897 2182
 				$this->addStat('owners_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']);
1898 2183
 			}
1899
-			if ($globalDebug) echo 'Count all pilots by months by airlines...'."\n";
2184
+			if ($globalDebug) {
2185
+				echo 'Count all pilots by months by airlines...'."\n";
2186
+			}
1900 2187
 			$alldata = $Spotter->countAllMonthsPilotsByAirlines();
1901 2188
 			foreach ($alldata as $number) {
1902 2189
 				$this->addStat('pilots_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']);
1903 2190
 			}
1904
-			if ($globalDebug) echo 'Count all aircrafts by months by airlines...'."\n";
2191
+			if ($globalDebug) {
2192
+				echo 'Count all aircrafts by months by airlines...'."\n";
2193
+			}
1905 2194
 			$alldata = $Spotter->countAllMonthsAircraftsByAirlines();
1906 2195
 			foreach ($alldata as $number) {
1907 2196
 				$this->addStat('aircrafts_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']);
1908 2197
 			}
1909
-			if ($globalDebug) echo 'Count all real arrivals by months by airlines...'."\n";
2198
+			if ($globalDebug) {
2199
+				echo 'Count all real arrivals by months by airlines...'."\n";
2200
+			}
1910 2201
 			$alldata = $Spotter->countAllMonthsRealArrivalsByAirlines();
1911 2202
 			foreach ($alldata as $number) {
1912 2203
 				$this->addStat('realarrivals_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),$number['airline_icao']);
1913 2204
 			}
1914
-			if ($globalDebug) echo '...Departure'."\n";
2205
+			if ($globalDebug) {
2206
+				echo '...Departure'."\n";
2207
+			}
1915 2208
 			$pall = $Spotter->getLast7DaysAirportsDepartureByAirlines();
1916 2209
         		$dall = $Spotter->getLast7DaysDetectedAirportsDepartureByAirlines();
1917 2210
     			foreach ($dall as $value) {
@@ -1934,7 +2227,9 @@  discard block
 block discarded – undo
1934 2227
 			foreach ($alldata as $number) {
1935 2228
 				$this->addStatDepartureAirportsDaily($number['date'],$number['departure_airport_icao'],$number['departure_airport_name'],$number['departure_airport_city'],$number['departure_airport_country'],$number['departure_airport_count'],$number['airline_icao']);
1936 2229
 			}
1937
-			if ($globalDebug) echo '...Arrival'."\n";
2230
+			if ($globalDebug) {
2231
+				echo '...Arrival'."\n";
2232
+			}
1938 2233
 			$pall = $Spotter->getLast7DaysAirportsArrivalByAirlines();
1939 2234
         		$dall = $Spotter->getLast7DaysDetectedAirportsArrivalByAirlines();
1940 2235
     			foreach ($dall as $value) {
@@ -1958,13 +2253,19 @@  discard block
 block discarded – undo
1958 2253
 				$this->addStatArrivalAirportsDaily($number['date'],$number['arrival_airport_icao'],$number['arrival_airport_name'],$number['arrival_airport_city'],$number['arrival_airport_country'],$number['arrival_airport_count'],$number['airline_icao']);
1959 2254
 			}
1960 2255
 
1961
-			if ($globalDebug) echo 'Flights data...'."\n";
1962
-			if ($globalDebug) echo '-> countAllDatesLastMonth...'."\n";
2256
+			if ($globalDebug) {
2257
+				echo 'Flights data...'."\n";
2258
+			}
2259
+			if ($globalDebug) {
2260
+				echo '-> countAllDatesLastMonth...'."\n";
2261
+			}
1963 2262
 			$alldata = $Spotter->countAllDatesLastMonthByAirlines();
1964 2263
 			foreach ($alldata as $number) {
1965 2264
 				$this->addStatFlight('month',$number['date_name'],$number['date_count'], $number['airline_icao']);
1966 2265
 			}
1967
-			if ($globalDebug) echo '-> countAllDates...'."\n";
2266
+			if ($globalDebug) {
2267
+				echo '-> countAllDates...'."\n";
2268
+			}
1968 2269
 			//$previousdata = $this->countAllDatesByAirlines();
1969 2270
 			$alldata = $Common->array_merge_noappend($previousdatabyairlines,$Spotter->countAllDatesByAirlines());
1970 2271
 			$values = array();
@@ -1977,7 +2278,9 @@  discard block
 block discarded – undo
1977 2278
 				$this->addStatFlight('date',$number['date_name'],$number['date_count'],$number['airline_icao']);
1978 2279
 			}
1979 2280
 			
1980
-			if ($globalDebug) echo '-> countAllHours...'."\n";
2281
+			if ($globalDebug) {
2282
+				echo '-> countAllHours...'."\n";
2283
+			}
1981 2284
 			$alldata = $Spotter->countAllHoursByAirlines('hour');
1982 2285
 			foreach ($alldata as $number) {
1983 2286
 				$this->addStatFlight('hour',$number['hour_name'],$number['hour_count'],$number['airline_icao']);
@@ -1985,14 +2288,18 @@  discard block
 block discarded – undo
1985 2288
 			
1986 2289
 
1987 2290
 			// Stats by filters
1988
-			if (!isset($globalStatsFilters) || $globalStatsFilters == '') $globalStatsFilters = array();
2291
+			if (!isset($globalStatsFilters) || $globalStatsFilters == '') {
2292
+				$globalStatsFilters = array();
2293
+			}
1989 2294
 			foreach ($globalStatsFilters as $name => $filter) {
1990 2295
 				//$filter_name = $filter['name'];
1991 2296
 				$filter_name = $name;
1992 2297
 				$reset = false;
1993 2298
 				$last_update = $this->getLastStatsUpdate('last_update_stats_'.$filter_name);
1994 2299
 				if (isset($filter['resetall']) && isset($last_update[0]['value']) && strtotime($filter['resetall']) > strtotime($last_update[0]['value'])) {
1995
-					if ($globalDebug) echo '!!! Delete stats for filter '.$filter_name.' !!!'."\n";
2300
+					if ($globalDebug) {
2301
+						echo '!!! Delete stats for filter '.$filter_name.' !!!'."\n";
2302
+					}
1996 2303
 					$this->deleteOldStats($filter_name);
1997 2304
 					unset($last_update);
1998 2305
 				}
@@ -2011,7 +2318,9 @@  discard block
 block discarded – undo
2011 2318
 				
2012 2319
 
2013 2320
 				// Count by filter
2014
-				if ($globalDebug) echo '--- Stats for filter '.$filter_name.' ---'."\n";
2321
+				if ($globalDebug) {
2322
+					echo '--- Stats for filter '.$filter_name.' ---'."\n";
2323
+				}
2015 2324
 				$Spotter = new Spotter($this->db);
2016 2325
 				$alldata = $Spotter->countAllAircraftTypes(false,0,$last_update_day,$filter);
2017 2326
 				foreach ($alldata as $number) {
@@ -2048,7 +2357,9 @@  discard block
 block discarded – undo
2048 2357
 	    				$icao = $value['airport_departure_icao'];
2049 2358
         				if (isset($alldata[$icao])) {
2050 2359
     						$alldata[$icao]['airport_departure_icao_count'] = $alldata[$icao]['airport_departure_icao_count'] + $value['airport_departure_icao_count'];
2051
-        				} else $alldata[$icao] = $value;
2360
+        				} else {
2361
+        					$alldata[$icao] = $value;
2362
+        				}
2052 2363
 				}
2053 2364
 	    			$count = array();
2054 2365
     				foreach ($alldata as $key => $row) {
@@ -2069,7 +2380,9 @@  discard block
 block discarded – undo
2069 2380
 	    				$icao = $value['airport_arrival_icao'];
2070 2381
         				if (isset($alldata[$icao])) {
2071 2382
         					$alldata[$icao]['airport_arrival_icao_count'] = $alldata[$icao]['airport_arrival_icao_count'] + $value['airport_arrival_icao_count'];
2072
-		        		} else $alldata[$icao] = $value;
2383
+		        		} else {
2384
+		        			$alldata[$icao] = $value;
2385
+		        		}
2073 2386
 	    			}
2074 2387
         			$count = array();
2075 2388
         			foreach ($alldata as $key => $row) {
@@ -2083,7 +2396,9 @@  discard block
 block discarded – undo
2083 2396
 				$alldata = $Spotter->countAllMonths($filter);
2084 2397
 				$lastyear = false;
2085 2398
 				foreach ($alldata as $number) {
2086
-					if ($number['year_name'] != date('Y')) $lastyear = true;
2399
+					if ($number['year_name'] != date('Y')) {
2400
+						$lastyear = true;
2401
+					}
2087 2402
 					$this->addStat('flights_bymonth',$number['date_count'],date('Y-m-d H:i:s',mktime(0,0,0,$number['month_name'],1,$number['year_name'])),'',$filter_name);
2088 2403
 				}
2089 2404
 				$alldata = $Spotter->countAllMonthsOwners($filter);
Please login to merge, or discard this patch.