@@ -7,7 +7,7 @@ discard block |
||
| 7 | 7 | $Stats = new Stats(); |
| 8 | 8 | |
| 9 | 9 | if (!isset($filter_name)) $filter_name = ''; |
| 10 | -$airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
|
| 10 | +$airline_icao = (string) filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
| 11 | 11 | if ($airline_icao == '' && isset($globalFilter)) { |
| 12 | 12 | if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
| 13 | 13 | } |
@@ -22,8 +22,8 @@ discard block |
||
| 22 | 22 | $title = _("Statistics"); |
| 23 | 23 | } |
| 24 | 24 | |
| 25 | -$year = filter_input(INPUT_GET,'year',FILTER_SANITIZE_NUMBER_INT); |
|
| 26 | -$month = filter_input(INPUT_GET,'month',FILTER_SANITIZE_NUMBER_INT); |
|
| 25 | +$year = filter_input(INPUT_GET, 'year', FILTER_SANITIZE_NUMBER_INT); |
|
| 26 | +$month = filter_input(INPUT_GET, 'month', FILTER_SANITIZE_NUMBER_INT); |
|
| 27 | 27 | |
| 28 | 28 | require_once('header.php'); |
| 29 | 29 | |
@@ -44,36 +44,36 @@ discard block |
||
| 44 | 44 | date_default_timezone_set('UTC'); |
| 45 | 45 | $lastupdate = strtotime($last_update[0]['value']); |
| 46 | 46 | if (isset($globalTimezone) && $globalTimezone != '') date_default_timezone_set($globalTimezone); |
| 47 | - print '<i>Last update: '.date('Y-m-d G:i:s',$lastupdate).'</i>'; |
|
| 47 | + print '<i>Last update: '.date('Y-m-d G:i:s', $lastupdate).'</i>'; |
|
| 48 | 48 | } |
| 49 | 49 | ?> |
| 50 | 50 | </div> |
| 51 | 51 | <?php include('statistics-sub-menu.php'); ?> |
| 52 | 52 | <p class="global-stats"> |
| 53 | - <span><span class="badge"><?php print number_format($Stats->countOverallFlights($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Flights"); ?></span> |
|
| 54 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 55 | - <span><span class="badge"><?php print number_format($Stats->countOverallArrival($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Arrivals seen"); ?></span> |
|
| 56 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 53 | + <span><span class="badge"><?php print number_format($Stats->countOverallFlights($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Flights"); ?></span> |
|
| 54 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 55 | + <span><span class="badge"><?php print number_format($Stats->countOverallArrival($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Arrivals seen"); ?></span> |
|
| 56 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 57 | 57 | <?php |
| 58 | 58 | if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
| 59 | 59 | ?> |
| 60 | - <span><span class="badge"><?php print number_format($Stats->countOverallPilots($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Pilots"); ?></span> |
|
| 61 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 60 | + <span><span class="badge"><?php print number_format($Stats->countOverallPilots($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Pilots"); ?></span> |
|
| 61 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 62 | 62 | <?php |
| 63 | 63 | } else { |
| 64 | 64 | ?> |
| 65 | - <span><span class="badge"><?php print number_format($Stats->countOverallOwners($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Owners"); ?></span> |
|
| 66 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 65 | + <span><span class="badge"><?php print number_format($Stats->countOverallOwners($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Owners"); ?></span> |
|
| 66 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 67 | 67 | <?php |
| 68 | 68 | } |
| 69 | 69 | ?> |
| 70 | - <span><span class="badge"><?php print number_format($Stats->countOverallAircrafts($airline_icao,$filter_name,$year,$month)); ?></span> <?php echo _("Aircrafts types"); ?></span> |
|
| 71 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 70 | + <span><span class="badge"><?php print number_format($Stats->countOverallAircrafts($airline_icao, $filter_name, $year, $month)); ?></span> <?php echo _("Aircrafts types"); ?></span> |
|
| 71 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 72 | 72 | <?php |
| 73 | 73 | if ($airline_icao == '') { |
| 74 | 74 | ?> |
| 75 | - <span><span class="badge"><?php print number_format($Stats->countOverallAirlines($filter_name,$year,$month)); ?></span> <?php echo _("Airlines"); ?></span> |
|
| 76 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 75 | + <span><span class="badge"><?php print number_format($Stats->countOverallAirlines($filter_name, $year, $month)); ?></span> <?php echo _("Airlines"); ?></span> |
|
| 76 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 77 | 77 | <?php |
| 78 | 78 | } |
| 79 | 79 | ?> |
@@ -81,20 +81,20 @@ discard block |
||
| 81 | 81 | if (!(isset($globalIVAO) && $globalIVAO) && !(isset($globalVATSIM) && $globalVATSIM) && !(isset($globalphpVMS) && $globalphpVMS)) { |
| 82 | 82 | if ($airline_icao == '' || $airline_icao == 'all') { |
| 83 | 83 | ?> |
| 84 | - <span><span class="badge"><?php print number_format($Stats->countOverallMilitaryFlights($filter_name,$year,$month)); ?></span> <?php echo _("Military"); ?></span> |
|
| 85 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 84 | + <span><span class="badge"><?php print number_format($Stats->countOverallMilitaryFlights($filter_name, $year, $month)); ?></span> <?php echo _("Military"); ?></span> |
|
| 85 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 86 | 86 | <?php |
| 87 | 87 | } |
| 88 | 88 | } |
| 89 | 89 | ?> |
| 90 | 90 | </p> |
| 91 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 91 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 92 | 92 | <div class="specific-stats"> |
| 93 | 93 | <div class="row column"> |
| 94 | 94 | <div class="col-md-6"> |
| 95 | 95 | <h2><?php echo _("Top 10 Most Common Aircraft Type"); ?></h2> |
| 96 | 96 | <?php |
| 97 | - $aircraft_array = $Stats->countAllAircraftTypes(true,$airline_icao,$filter_name,$year,$month); |
|
| 97 | + $aircraft_array = $Stats->countAllAircraftTypes(true, $airline_icao, $filter_name, $year, $month); |
|
| 98 | 98 | if (count($aircraft_array) == 0) print _("No data available"); |
| 99 | 99 | else { |
| 100 | 100 | |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | var data = google.visualization.arrayToDataTable([ |
| 107 | 107 | ["'._("Aircraft").'", "'._("# of times").'"], '; |
| 108 | 108 | $aircraft_data = ''; |
| 109 | - foreach($aircraft_array as $aircraft_item) |
|
| 109 | + foreach ($aircraft_array as $aircraft_item) |
|
| 110 | 110 | { |
| 111 | 111 | $aircraft_data .= '[ "'.$aircraft_item['aircraft_manufacturer'].' '.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')",'.$aircraft_item['aircraft_icao_count'].'],'; |
| 112 | 112 | } |
@@ -143,11 +143,11 @@ discard block |
||
| 143 | 143 | ?> |
| 144 | 144 | </div> |
| 145 | 145 | </div> |
| 146 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 146 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 147 | 147 | <?php |
| 148 | 148 | // echo $airline_icao; |
| 149 | 149 | if ($airline_icao == '' || $airline_icao == 'all') { |
| 150 | - $airline_array = $Stats->countAllAirlines(true,$filter_name,$year,$month); |
|
| 150 | + $airline_array = $Stats->countAllAirlines(true, $filter_name, $year, $month); |
|
| 151 | 151 | if (count($airline_array) > 0) { |
| 152 | 152 | print '<div class="col-md-6">'; |
| 153 | 153 | print '<h2>'._("Top 10 Most Common Airline").'</h2>'; |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | var data = google.visualization.arrayToDataTable([ |
| 160 | 160 | ["'._("Airline").'", "'._("# of times").'"], '; |
| 161 | 161 | $airline_data = ''; |
| 162 | - foreach($airline_array as $airline_item) |
|
| 162 | + foreach ($airline_array as $airline_item) |
|
| 163 | 163 | { |
| 164 | 164 | $airline_data .= '[ "'.$airline_item['airline_name'].' ('.$airline_item['airline_icao'].')",'.$airline_item['airline_count'].'],'; |
| 165 | 165 | } |
@@ -193,13 +193,13 @@ discard block |
||
| 193 | 193 | } |
| 194 | 194 | ?> |
| 195 | 195 | </div> |
| 196 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 196 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 197 | 197 | <?php |
| 198 | 198 | } |
| 199 | 199 | ?> |
| 200 | 200 | <div class="row column"> |
| 201 | 201 | <?php |
| 202 | - $flightover_array = $Stats->countAllFlightOverCountries(false,$airline_icao,$filter_name,$year,$month); |
|
| 202 | + $flightover_array = $Stats->countAllFlightOverCountries(false, $airline_icao, $filter_name, $year, $month); |
|
| 203 | 203 | if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
| 204 | 204 | if (empty($flightover_array)) { |
| 205 | 205 | print '<div class="col-md-12">'; |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | ?> |
| 210 | 210 | <h2><?php echo _("Top 10 Most Common Pilots"); ?></h2> |
| 211 | 211 | <?php |
| 212 | - $pilot_array = $Stats->countAllPilots(true,$airline_icao,$filter_name,$year,$month); |
|
| 212 | + $pilot_array = $Stats->countAllPilots(true, $airline_icao, $filter_name, $year, $month); |
|
| 213 | 213 | if (count($pilot_array) == 0) print _("No data available"); |
| 214 | 214 | else { |
| 215 | 215 | print '<div id="chart7" class="chart" width="100%"></div> |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | var data = google.visualization.arrayToDataTable([ |
| 221 | 221 | ["'._("Pilots").'", "'._("# of times").'"], '; |
| 222 | 222 | $pilot_data = ''; |
| 223 | - foreach($pilot_array as $pilot_item) |
|
| 223 | + foreach ($pilot_array as $pilot_item) |
|
| 224 | 224 | { |
| 225 | 225 | $pilot_data .= '[ "'.$pilot_item['pilot_name'].' ('.$pilot_item['pilot_id'].')",'.$pilot_item['pilot_count'].'],'; |
| 226 | 226 | } |
@@ -250,14 +250,14 @@ discard block |
||
| 250 | 250 | ?> |
| 251 | 251 | </div> |
| 252 | 252 | |
| 253 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 253 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 254 | 254 | <?php |
| 255 | 255 | } else { |
| 256 | 256 | ?> |
| 257 | 257 | <div class="col-md-6"> |
| 258 | 258 | <h2><?php echo _("Top 10 Most Common Owners"); ?></h2> |
| 259 | 259 | <?php |
| 260 | - $owner_array = $Stats->countAllOwners(true,$airline_icao,$filter_name,$year,$month); |
|
| 260 | + $owner_array = $Stats->countAllOwners(true, $airline_icao, $filter_name, $year, $month); |
|
| 261 | 261 | if (count($owner_array) == 0) print _("No data available"); |
| 262 | 262 | else { |
| 263 | 263 | print '<div id="chart7" class="chart" width="100%"></div> |
@@ -268,7 +268,7 @@ discard block |
||
| 268 | 268 | var data = google.visualization.arrayToDataTable([ |
| 269 | 269 | ["'._("Owner").'", "'._("# of times").'"], '; |
| 270 | 270 | $owner_data = ''; |
| 271 | - foreach($owner_array as $owner_item) |
|
| 271 | + foreach ($owner_array as $owner_item) |
|
| 272 | 272 | { |
| 273 | 273 | $owner_data .= '[ "'.$owner_item['owner_name'].'",'.$owner_item['owner_count'].'],'; |
| 274 | 274 | } |
@@ -296,7 +296,7 @@ discard block |
||
| 296 | 296 | </div> |
| 297 | 297 | </div> |
| 298 | 298 | |
| 299 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 299 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 300 | 300 | <?php |
| 301 | 301 | } |
| 302 | 302 | if (!empty($flightover_array)) { |
@@ -315,7 +315,7 @@ discard block |
||
| 315 | 315 | var data = google.visualization.arrayToDataTable([ |
| 316 | 316 | ["'._("Country").'", "'._("# of times").'"], '; |
| 317 | 317 | $flightover_data = ''; |
| 318 | - foreach($flightover_array as $flightover_item) |
|
| 318 | + foreach ($flightover_array as $flightover_item) |
|
| 319 | 319 | { |
| 320 | 320 | $flightover_data .= '[ "'.$flightover_item['flight_country'].' ('.$flightover_item['flight_country_iso2'].')",'.$flightover_item['flight_count'].'],'; |
| 321 | 321 | } |
@@ -348,14 +348,14 @@ discard block |
||
| 348 | 348 | } |
| 349 | 349 | ?> |
| 350 | 350 | </div> |
| 351 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 351 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 352 | 352 | |
| 353 | 353 | |
| 354 | 354 | </div> |
| 355 | 355 | <div class="row column"> |
| 356 | 356 | <div class="col-md-6"> |
| 357 | 357 | <?php |
| 358 | - $airport_airport_array = $Stats->countAllDepartureAirports(true,$airline_icao,$filter_name,$year,$month); |
|
| 358 | + $airport_airport_array = $Stats->countAllDepartureAirports(true, $airline_icao, $filter_name, $year, $month); |
|
| 359 | 359 | if (count($airport_airport_array) > 0) { |
| 360 | 360 | print '<h2>'._("Top 10 Most Common Departure Airports").'</h2>'; |
| 361 | 361 | print '<div id="chart3" class="chart" width="100%"></div> |
@@ -370,7 +370,7 @@ discard block |
||
| 370 | 370 | var data = google.visualization.arrayToDataTable([ |
| 371 | 371 | ["'._("Airport").'", "'._("# of times").'"],'; |
| 372 | 372 | $airport_data = ''; |
| 373 | - foreach($airport_airport_array as $airport_item) |
|
| 373 | + foreach ($airport_airport_array as $airport_item) |
|
| 374 | 374 | { |
| 375 | 375 | $name = $airport_item['airport_departure_city'].', '.$airport_item['airport_departure_country'].' ('.$airport_item['airport_departure_icao'].')'; |
| 376 | 376 | $name = str_replace("'", "", $name); |
@@ -399,11 +399,11 @@ discard block |
||
| 399 | 399 | } |
| 400 | 400 | ?> |
| 401 | 401 | </div> |
| 402 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 402 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 403 | 403 | |
| 404 | 404 | <div class="col-md-6"> |
| 405 | 405 | <?php |
| 406 | - $airport_airport_array2 = $Stats->countAllArrivalAirports(true,$airline_icao,$filter_name,$year,$month); |
|
| 406 | + $airport_airport_array2 = $Stats->countAllArrivalAirports(true, $airline_icao, $filter_name, $year, $month); |
|
| 407 | 407 | if (count($airport_airport_array2) > 0) { |
| 408 | 408 | print '<h2>'._("Top 10 Most Common Arrival Airports").'</h2>'; |
| 409 | 409 | print '<div id="chart4" class="chart" width="100%"></div> |
@@ -418,10 +418,10 @@ discard block |
||
| 418 | 418 | var data = google.visualization.arrayToDataTable([ |
| 419 | 419 | ["'._("Airport").'", "'._("# of times").'"],'; |
| 420 | 420 | $airport_data2 = ''; |
| 421 | - foreach($airport_airport_array2 as $airport_item2) |
|
| 421 | + foreach ($airport_airport_array2 as $airport_item2) |
|
| 422 | 422 | { |
| 423 | 423 | $name2 = $airport_item2['airport_arrival_city'].', '.$airport_item2['airport_arrival_country'].' ('.$airport_item2['airport_arrival_icao'].')'; |
| 424 | - $name2 = str_replace(array("'",'"'), '', $name2); |
|
| 424 | + $name2 = str_replace(array("'", '"'), '', $name2); |
|
| 425 | 425 | $airport_data2 .= '[ "'.$name2.'",'.$airport_item2['airport_arrival_icao_count'].'],'; |
| 426 | 426 | } |
| 427 | 427 | $airport_data2 = substr($airport_data2, 0, -1); |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | ?> |
| 448 | 448 | </div> |
| 449 | 449 | </div> |
| 450 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 450 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 451 | 451 | <?php |
| 452 | 452 | if ($year == '' && $month == '') { |
| 453 | 453 | ?> |
@@ -455,7 +455,7 @@ discard block |
||
| 455 | 455 | <div class="col-md-6"> |
| 456 | 456 | <h2><?php echo _("Busiest Months of the last 12 Months"); ?></h2> |
| 457 | 457 | <?php |
| 458 | - $year_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
|
| 458 | + $year_array = $Stats->countAllMonthsLastYear(true, $airline_icao, $filter_name); |
|
| 459 | 459 | if (count($year_array) == 0) print _("No data available"); |
| 460 | 460 | else { |
| 461 | 461 | print '<div id="chart8" class="chart" width="100%"></div> |
@@ -466,9 +466,9 @@ discard block |
||
| 466 | 466 | var data = google.visualization.arrayToDataTable([ |
| 467 | 467 | ["'._("Month").'", "'._("# of Flights").'"], '; |
| 468 | 468 | $year_data = ''; |
| 469 | - foreach($year_array as $year_item) |
|
| 469 | + foreach ($year_array as $year_item) |
|
| 470 | 470 | { |
| 471 | - $year_data .= '[ "'.date('F, Y',strtotime($year_item['year_name'].'-'.$year_item['month_name'].'-01')).'",'.$year_item['date_count'].'],'; |
|
| 471 | + $year_data .= '[ "'.date('F, Y', strtotime($year_item['year_name'].'-'.$year_item['month_name'].'-01')).'",'.$year_item['date_count'].'],'; |
|
| 472 | 472 | } |
| 473 | 473 | $year_data = substr($year_data, 0, -1); |
| 474 | 474 | print $year_data; |
@@ -496,11 +496,11 @@ discard block |
||
| 496 | 496 | <a href="<?php print $globalURL; ?>/statistics/year<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 497 | 497 | </div> |
| 498 | 498 | </div> |
| 499 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 499 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 500 | 500 | <div class="col-md-6"> |
| 501 | 501 | <h2><?php echo _("Busiest Day in the last Month"); ?></h2> |
| 502 | 502 | <?php |
| 503 | - $month_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
|
| 503 | + $month_array = $Stats->countAllDatesLastMonth($airline_icao, $filter_name); |
|
| 504 | 504 | if (count($month_array) == 0) print _("No data available"); |
| 505 | 505 | else { |
| 506 | 506 | print '<div id="chart9" class="chart" width="100%"></div> |
@@ -511,9 +511,9 @@ discard block |
||
| 511 | 511 | var data = google.visualization.arrayToDataTable([ |
| 512 | 512 | ["'._("Day").'", "'._("# of Flights").'"], '; |
| 513 | 513 | $month_data = ''; |
| 514 | - foreach($month_array as $month_item) |
|
| 514 | + foreach ($month_array as $month_item) |
|
| 515 | 515 | { |
| 516 | - $month_data .= '[ "'.date('F j, Y',strtotime($month_item['date_name'])).'",'.$month_item['date_count'].'],'; |
|
| 516 | + $month_data .= '[ "'.date('F j, Y', strtotime($month_item['date_name'])).'",'.$month_item['date_count'].'],'; |
|
| 517 | 517 | } |
| 518 | 518 | $month_data = substr($month_data, 0, -1); |
| 519 | 519 | print $month_data; |
@@ -541,12 +541,12 @@ discard block |
||
| 541 | 541 | <a href="<?php print $globalURL; ?>/statistics/month<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 542 | 542 | </div> |
| 543 | 543 | </div> |
| 544 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 544 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 545 | 545 | |
| 546 | 546 | <div class="col-md-6"> |
| 547 | 547 | <h2><?php echo _("Busiest Day in the last 7 Days"); ?></h2> |
| 548 | 548 | <?php |
| 549 | - $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name); |
|
| 549 | + $date_array = $Stats->countAllDatesLast7Days($airline_icao, $filter_name); |
|
| 550 | 550 | if (empty($date_array)) print _("No data available"); |
| 551 | 551 | else { |
| 552 | 552 | print '<div id="chart5" class="chart" width="100%"></div> |
@@ -558,7 +558,7 @@ discard block |
||
| 558 | 558 | ["'._("Date").'", "'._("# of Flights").'"], '; |
| 559 | 559 | $date_data = ''; |
| 560 | 560 | |
| 561 | - foreach($date_array as $date_item) |
|
| 561 | + foreach ($date_array as $date_item) |
|
| 562 | 562 | { |
| 563 | 563 | $date_data .= '[ "'.date("F j, Y", strtotime($date_item['date_name'])).'",'.$date_item['date_count'].'],'; |
| 564 | 564 | } |
@@ -588,11 +588,11 @@ discard block |
||
| 588 | 588 | <a href="<?php print $globalURL; ?>/statistics/date<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 589 | 589 | </div> |
| 590 | 590 | </div> |
| 591 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 591 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 592 | 592 | <div class="col-md-6"> |
| 593 | 593 | <h2><?php echo _("Busiest Time of the Day"); ?></h2> |
| 594 | 594 | <?php |
| 595 | - $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name); |
|
| 595 | + $hour_array = $Stats->countAllHours('hour', true, $airline_icao, $filter_name); |
|
| 596 | 596 | if (empty($hour_array)) print _("No data available"); |
| 597 | 597 | else { |
| 598 | 598 | |
@@ -604,7 +604,7 @@ discard block |
||
| 604 | 604 | var data = google.visualization.arrayToDataTable([ |
| 605 | 605 | ["'._("Hour").'", "'._("# of Flights").'"], '; |
| 606 | 606 | $hour_data = ''; |
| 607 | - foreach($hour_array as $hour_item) |
|
| 607 | + foreach ($hour_array as $hour_item) |
|
| 608 | 608 | { |
| 609 | 609 | $hour_data .= '[ "'.$hour_item['hour_name'].':00",'.$hour_item['hour_count'].'],'; |
| 610 | 610 | } |
@@ -634,7 +634,7 @@ discard block |
||
| 634 | 634 | <a href="<?php print $globalURL; ?>/statistics/time<?php if (isset($airline_icao) && $airline_icao != '' && $airline_icao != 'all') echo '/'.$airline_icao; ?>" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 635 | 635 | </div> |
| 636 | 636 | </div> |
| 637 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 637 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 638 | 638 | </div> |
| 639 | 639 | <?php |
| 640 | 640 | } |
@@ -660,7 +660,7 @@ discard block |
||
| 660 | 660 | var data = google.visualization.arrayToDataTable([ |
| 661 | 661 | ["'._("Year").'", "'._("# of Fatalities").'"], '; |
| 662 | 662 | $year_data = ''; |
| 663 | - foreach($year_array as $year_item) |
|
| 663 | + foreach ($year_array as $year_item) |
|
| 664 | 664 | { |
| 665 | 665 | $year_data .= '[ "'.$year_item['year'].'",'.$year_item['count'].'],'; |
| 666 | 666 | } |
@@ -690,7 +690,7 @@ discard block |
||
| 690 | 690 | <a href="<?php print $globalURL; ?>/statistics/fatalities/year" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 691 | 691 | </div> |
| 692 | 692 | </div> |
| 693 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 693 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 694 | 694 | |
| 695 | 695 | <div class="row column"> |
| 696 | 696 | <div class="col-md-6"> |
@@ -709,9 +709,9 @@ discard block |
||
| 709 | 709 | var data = google.visualization.arrayToDataTable([ |
| 710 | 710 | ["'._("Month").'", "'._("# of Fatalities").'"], '; |
| 711 | 711 | $year_data = ''; |
| 712 | - foreach($year_array as $year_item) |
|
| 712 | + foreach ($year_array as $year_item) |
|
| 713 | 713 | { |
| 714 | - $year_data .= '[ "'.date('F, Y',strtotime($year_item['year'].'-'.$year_item['month'].'-01')).'",'.$year_item['count'].'],'; |
|
| 714 | + $year_data .= '[ "'.date('F, Y', strtotime($year_item['year'].'-'.$year_item['month'].'-01')).'",'.$year_item['count'].'],'; |
|
| 715 | 715 | } |
| 716 | 716 | $year_data = substr($year_data, 0, -1); |
| 717 | 717 | print $year_data; |
@@ -739,7 +739,7 @@ discard block |
||
| 739 | 739 | <a href="<?php print $globalURL; ?>/statistics/fatalities/month" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 740 | 740 | </div> |
| 741 | 741 | </div> |
| 742 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 742 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 743 | 743 | <br/> |
| 744 | 744 | <?php |
| 745 | 745 | } |
@@ -752,9 +752,9 @@ discard block |
||
| 752 | 752 | <?php |
| 753 | 753 | //$polar = $Stats->getStatsSource(date('Y-m-d'),'polar'); |
| 754 | 754 | if ($year == '' && $month == '') { |
| 755 | - $polar = $Stats->getStatsSource('polar',date('Y'),date('m'),date('d')); |
|
| 755 | + $polar = $Stats->getStatsSource('polar', date('Y'), date('m'), date('d')); |
|
| 756 | 756 | } else { |
| 757 | - $polar = $Stats->getStatsSource('polar',$year,$month); |
|
| 757 | + $polar = $Stats->getStatsSource('polar', $year, $month); |
|
| 758 | 758 | } |
| 759 | 759 | if (!empty($polar)) { |
| 760 | 760 | print '<h2>'._("Coverage pattern").'</h2>'; |
@@ -762,7 +762,7 @@ discard block |
||
| 762 | 762 | unset($polar_data); |
| 763 | 763 | $Spotter = new Spotter(); |
| 764 | 764 | $data = json_decode($eachpolar['source_data']); |
| 765 | - foreach($data as $value => $key) { |
|
| 765 | + foreach ($data as $value => $key) { |
|
| 766 | 766 | $direction = $Spotter->parseDirection(($value*22.5)); |
| 767 | 767 | $distance = $key; |
| 768 | 768 | $unit = 'km'; |
@@ -782,7 +782,7 @@ discard block |
||
| 782 | 782 | ?> |
| 783 | 783 | <div class="col-md-6"> |
| 784 | 784 | <h4><?php print $eachpolar['source_name']; ?></h4> |
| 785 | - <div id="polar-<?php print str_replace(' ','_',strtolower($eachpolar['source_name'])); ?>" class="chart" width="100%"></div> |
|
| 785 | + <div id="polar-<?php print str_replace(' ', '_', strtolower($eachpolar['source_name'])); ?>" class="chart" width="100%"></div> |
|
| 786 | 786 | <script> |
| 787 | 787 | (function() { |
| 788 | 788 | var margin = {top: 100, right: 100, bottom: 100, left: 100}, |
@@ -806,7 +806,7 @@ discard block |
||
| 806 | 806 | color: color, |
| 807 | 807 | unit: '<?php echo $unit; ?>' |
| 808 | 808 | }; |
| 809 | - RadarChart("#polar-<?php print str_replace(' ','_',strtolower($eachpolar['source_name'])); ?>", data, radarChartOptions); |
|
| 809 | + RadarChart("#polar-<?php print str_replace(' ', '_', strtolower($eachpolar['source_name'])); ?>", data, radarChartOptions); |
|
| 810 | 810 | })(); |
| 811 | 811 | </script> |
| 812 | 812 | </div> |
@@ -820,22 +820,22 @@ discard block |
||
| 820 | 820 | <?php |
| 821 | 821 | //$msg = $Stats->getStatsSource(date('Y-m-d'),'msg'); |
| 822 | 822 | if ($year == '' && $month == '') { |
| 823 | - $msg = $Stats->getStatsSource('msg',date('Y'),date('m'),date('d')); |
|
| 823 | + $msg = $Stats->getStatsSource('msg', date('Y'), date('m'), date('d')); |
|
| 824 | 824 | } else { |
| 825 | - $msg = $Stats->getStatsSource('msg',$year,$month); |
|
| 825 | + $msg = $Stats->getStatsSource('msg', $year, $month); |
|
| 826 | 826 | } |
| 827 | 827 | if (!empty($msg)) { |
| 828 | 828 | print '<h2>'._("Messages received").'</h2>'; |
| 829 | 829 | foreach ($msg as $eachmsg) { |
| 830 | 830 | //$eachmsg = $msg[0]; |
| 831 | 831 | $data = $eachmsg['source_data']; |
| 832 | - if ($data > 500) $max = (round(($data+100)/100))*100; |
|
| 832 | + if ($data > 500) $max = (round(($data + 100)/100))*100; |
|
| 833 | 833 | else $max = 500; |
| 834 | 834 | ?> |
| 835 | - <div id="msg-<?php print str_replace(' ','_',strtolower($eachmsg['source_name'])); ?>" class="col-md-4"></div> |
|
| 835 | + <div id="msg-<?php print str_replace(' ', '_', strtolower($eachmsg['source_name'])); ?>" class="col-md-4"></div> |
|
| 836 | 836 | <script> |
| 837 | 837 | var g = new JustGage({ |
| 838 | - id: "msg-<?php print str_replace(' ','_',strtolower($eachmsg['source_name'])); ?>", |
|
| 838 | + id: "msg-<?php print str_replace(' ', '_', strtolower($eachmsg['source_name'])); ?>", |
|
| 839 | 839 | value: <?php echo $data; ?>, |
| 840 | 840 | min: 0, |
| 841 | 841 | max: <?php print $max; ?>, |
@@ -857,15 +857,15 @@ discard block |
||
| 857 | 857 | <?php |
| 858 | 858 | //$hist = $Stats->getStatsSource(date('Y-m-d'),'hist'); |
| 859 | 859 | if ($year == '' && $month == '') { |
| 860 | - $hist = $Stats->getStatsSource('hist',date('Y'),date('m'),date('d')); |
|
| 860 | + $hist = $Stats->getStatsSource('hist', date('Y'), date('m'), date('d')); |
|
| 861 | 861 | } else { |
| 862 | - $hist = $Stats->getStatsSource('hist',$year,$month); |
|
| 862 | + $hist = $Stats->getStatsSource('hist', $year, $month); |
|
| 863 | 863 | } |
| 864 | 864 | foreach ($hist as $hists) { |
| 865 | 865 | $hist_data = ''; |
| 866 | 866 | $source = $hists['source_name']; |
| 867 | 867 | $hist_array = json_decode($hists['source_data']); |
| 868 | - foreach($hist_array as $distance => $nb) |
|
| 868 | + foreach ($hist_array as $distance => $nb) |
|
| 869 | 869 | { |
| 870 | 870 | $unit = 'km'; |
| 871 | 871 | if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) { |
@@ -883,13 +883,13 @@ discard block |
||
| 883 | 883 | $hist_data = substr($hist_data, 0, -1); |
| 884 | 884 | ?> |
| 885 | 885 | <div class="col-md-6"> |
| 886 | - <h2><?php echo sprintf(_("Flights Distance for %s"),$source); ?></h2> |
|
| 886 | + <h2><?php echo sprintf(_("Flights Distance for %s"), $source); ?></h2> |
|
| 887 | 887 | <?php |
| 888 | - print '<div id="charthist-'.str_replace(' ','_',strtolower($source)).'" class="chart" width="100%"></div> |
|
| 888 | + print '<div id="charthist-'.str_replace(' ', '_', strtolower($source)).'" class="chart" width="100%"></div> |
|
| 889 | 889 | <script> |
| 890 | 890 | google.load("visualization", "1", {packages:["corechart"]}); |
| 891 | - google.setOnLoadCallback(drawCharthist_'.str_replace(' ','_',strtolower($source)).'); |
|
| 892 | - function drawCharthist_'.str_replace(' ','_',strtolower($source)).'() { |
|
| 891 | + google.setOnLoadCallback(drawCharthist_'.str_replace(' ', '_', strtolower($source)).'); |
|
| 892 | + function drawCharthist_'.str_replace(' ', '_', strtolower($source)).'() { |
|
| 893 | 893 | var data = google.visualization.arrayToDataTable([ |
| 894 | 894 | ["'._("Distance").'", "'._("# of Flights").'"], '; |
| 895 | 895 | print $hist_data; |
@@ -904,16 +904,16 @@ discard block |
||
| 904 | 904 | colors: ["#1a3151"] |
| 905 | 905 | }; |
| 906 | 906 | |
| 907 | - var chart = new google.visualization.AreaChart(document.getElementById("charthist-'.str_replace(' ','_',strtolower($source)).'")); |
|
| 907 | + var chart = new google.visualization.AreaChart(document.getElementById("charthist-'.str_replace(' ', '_', strtolower($source)).'")); |
|
| 908 | 908 | chart.draw(data, options); |
| 909 | 909 | } |
| 910 | 910 | $(window).resize(function(){ |
| 911 | - drawCharthist_'.str_replace(' ','_',strtolower($source)).'(); |
|
| 911 | + drawCharthist_'.str_replace(' ', '_', strtolower($source)).'(); |
|
| 912 | 912 | }); |
| 913 | 913 | </script>'; |
| 914 | 914 | ?> |
| 915 | 915 | </div> |
| 916 | - <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
|
| 916 | + <!-- <?php print 'Time elapsed : '.(microtime(true) - $beginpage).'s' ?> --> |
|
| 917 | 917 | <?php |
| 918 | 918 | } |
| 919 | 919 | ?> |