@@ -23,12 +23,12 @@ |
||
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | - * Get Accidents data from DB |
|
| 27 | - * @param String $limit Limit |
|
| 28 | - * @param String $type Set type accident or incident |
|
| 29 | - * @param String $date get data for a date |
|
| 30 | - * @return Array Return Accidents data in array |
|
| 31 | - */ |
|
| 26 | + * Get Accidents data from DB |
|
| 27 | + * @param String $limit Limit |
|
| 28 | + * @param String $type Set type accident or incident |
|
| 29 | + * @param String $date get data for a date |
|
| 30 | + * @return Array Return Accidents data in array |
|
| 31 | + */ |
|
| 32 | 32 | public function getAccidentData($limit = '',$type = '',$date = '') { |
| 33 | 33 | global $globalURL, $globalDBdriver; |
| 34 | 34 | $Image = new Image($this->db); |
@@ -88,8 +88,11 @@ discard block |
||
| 88 | 88 | $data = array(); |
| 89 | 89 | if ($row['registration'] != '') { |
| 90 | 90 | $image_array = $Image->getSpotterImage($row['registration']); |
| 91 | - if (count($image_array) > 0) $data = array_merge($data,array('image' => $image_array[0]['image'],'image_thumbnail' => $image_array[0]['image_thumbnail'],'image_copyright' => $image_array[0]['image_copyright'],'image_source' => $image_array[0]['image_source'],'image_source_website' => $image_array[0]['image_source_website'])); |
|
| 92 | - else $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
| 91 | + if (count($image_array) > 0) { |
|
| 92 | + $data = array_merge($data,array('image' => $image_array[0]['image'],'image_thumbnail' => $image_array[0]['image_thumbnail'],'image_copyright' => $image_array[0]['image_copyright'],'image_source' => $image_array[0]['image_source'],'image_source_website' => $image_array[0]['image_source_website'])); |
|
| 93 | + } else { |
|
| 94 | + $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
| 95 | + } |
|
| 93 | 96 | $aircraft_type = $Spotter->getAllAircraftTypeByRegistration($row['registration']); |
| 94 | 97 | $aircraft_info = $Spotter->getAllAircraftInfo($aircraft_type); |
| 95 | 98 | if (!empty($aircraft_info)) { |
@@ -105,17 +108,30 @@ discard block |
||
| 105 | 108 | $data['aircraft_base'] = $owner_data['base']; |
| 106 | 109 | $data['aircraft_date_first_reg'] = $owner_data['date_first_reg']; |
| 107 | 110 | } |
| 108 | - } else $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
| 109 | - if ($row['registration'] == '') $row['registration'] = 'NA'; |
|
| 110 | - if ($row['ident'] == '') $row['ident'] = 'NA'; |
|
| 111 | + } else { |
|
| 112 | + $data = array_merge($data,array('image' => '','image_thumbnail' => '','image_copyright' => '','image_source' => '','image_source_website' => '')); |
|
| 113 | + } |
|
| 114 | + if ($row['registration'] == '') { |
|
| 115 | + $row['registration'] = 'NA'; |
|
| 116 | + } |
|
| 117 | + if ($row['ident'] == '') { |
|
| 118 | + $row['ident'] = 'NA'; |
|
| 119 | + } |
|
| 111 | 120 | $identicao = $Spotter->getAllAirlineInfo(substr($row['ident'],0,3)); |
| 112 | 121 | if (isset($identicao[0])) { |
| 113 | 122 | if (substr($row['ident'],0,2) == 'AF') { |
| 114 | - if (filter_var(substr($row['ident'],2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) $icao = $row['ident']; |
|
| 115 | - else $icao = 'AFR'.ltrim(substr($row['ident'],2),'0'); |
|
| 116 | - } else $icao = $identicao[0]['icao'].ltrim(substr($row['ident'],2),'0'); |
|
| 123 | + if (filter_var(substr($row['ident'],2),FILTER_VALIDATE_INT,array("flags"=>FILTER_FLAG_ALLOW_OCTAL))) { |
|
| 124 | + $icao = $row['ident']; |
|
| 125 | + } else { |
|
| 126 | + $icao = 'AFR'.ltrim(substr($row['ident'],2),'0'); |
|
| 127 | + } |
|
| 128 | + } else { |
|
| 129 | + $icao = $identicao[0]['icao'].ltrim(substr($row['ident'],2),'0'); |
|
| 130 | + } |
|
| 117 | 131 | $data = array_merge($data,array('airline_icao' => $identicao[0]['icao'],'airline_name' => $identicao[0]['name'])); |
| 118 | - } else $icao = $row['ident']; |
|
| 132 | + } else { |
|
| 133 | + $icao = $row['ident']; |
|
| 134 | + } |
|
| 119 | 135 | $icao = $Translation->checkTranslation($icao,false); |
| 120 | 136 | //$data = array_merge($data,array('registration' => $row['registration'], 'date' => $row['date'], 'ident' => $icao,'url' => $row['url'])); |
| 121 | 137 | if ($row['airline_name'] != '' && !isset($data['airline_name'])) { |
@@ -130,18 +146,23 @@ discard block |
||
| 130 | 146 | //else echo 'No data...'."\n"; |
| 131 | 147 | } |
| 132 | 148 | $data = array_merge($row,$data); |
| 133 | - if ($data['ident'] == null) $data['ident'] = $icao; |
|
| 149 | + if ($data['ident'] == null) { |
|
| 150 | + $data['ident'] = $icao; |
|
| 151 | + } |
|
| 134 | 152 | if ($data['title'] == null) { |
| 135 | 153 | $data['message'] = $row['type'].' of '.$row['registration'].' at '.$row['place'].','.$row['country']; |
| 136 | - } else $data['message'] = strtolower($data['title']); |
|
| 154 | + } else { |
|
| 155 | + $data['message'] = strtolower($data['title']); |
|
| 156 | + } |
|
| 137 | 157 | $result[] = $data; |
| 138 | 158 | $i++; |
| 139 | 159 | } |
| 140 | 160 | if (isset($result)) { |
| 141 | 161 | $result[0]['query_number_rows'] = $i; |
| 142 | 162 | return $result; |
| 163 | + } else { |
|
| 164 | + return array(); |
|
| 143 | 165 | } |
| 144 | - else return array(); |
|
| 145 | 166 | } |
| 146 | 167 | |
| 147 | 168 | /* |
@@ -180,7 +201,9 @@ discard block |
||
| 180 | 201 | */ |
| 181 | 202 | public function import($file) { |
| 182 | 203 | global $globalTransaction, $globalDebug; |
| 183 | - if ($globalDebug) echo 'Import '.$file."\n"; |
|
| 204 | + if ($globalDebug) { |
|
| 205 | + echo 'Import '.$file."\n"; |
|
| 206 | + } |
|
| 184 | 207 | $result = array(); |
| 185 | 208 | if (file_exists($file)) { |
| 186 | 209 | if (($handle = fopen($file,'r')) !== FALSE) { |
@@ -191,8 +214,11 @@ discard block |
||
| 191 | 214 | } |
| 192 | 215 | fclose($handle); |
| 193 | 216 | } |
| 194 | - if (!empty($result)) $this->add($result,true); |
|
| 195 | - elseif ($globalDebug) echo 'Nothing to import'; |
|
| 217 | + if (!empty($result)) { |
|
| 218 | + $this->add($result,true); |
|
| 219 | + } elseif ($globalDebug) { |
|
| 220 | + echo 'Nothing to import'; |
|
| 221 | + } |
|
| 196 | 222 | } |
| 197 | 223 | } |
| 198 | 224 | |
@@ -228,14 +254,23 @@ discard block |
||
| 228 | 254 | } |
| 229 | 255 | } |
| 230 | 256 | fclose($handle); |
| 231 | - } elseif ($globalDebug) echo "Can't open ".dirname(__FILE__).'/../install/tmp/cr-all.md5'; |
|
| 232 | - } elseif ($globalDebug) echo 'Download cr-all.md5 failed. '.dirname(__FILE__).'/../install/tmp/cr-all.md5 not here.'; |
|
| 257 | + } elseif ($globalDebug) { |
|
| 258 | + echo "Can't open ".dirname(__FILE__).'/../install/tmp/cr-all.md5'; |
|
| 259 | + } |
|
| 260 | + } elseif ($globalDebug) { |
|
| 261 | + echo 'Download cr-all.md5 failed. '.dirname(__FILE__).'/../install/tmp/cr-all.md5 not here.'; |
|
| 262 | + } |
|
| 233 | 263 | $result = $Common->arr_diff($all_md5_new,$all_md5); |
| 234 | - if (empty($result) && $globalDebug) echo 'Nothing to update'; |
|
| 264 | + if (empty($result) && $globalDebug) { |
|
| 265 | + echo 'Nothing to update'; |
|
| 266 | + } |
|
| 235 | 267 | foreach ($result as $file => $md5) { |
| 236 | 268 | $Common->download('http://data.flightairmap.fr/data/cr/'.$file,dirname(__FILE__).'/../install/tmp/'.$file); |
| 237 | - if (file_exists(dirname(__FILE__).'/../install/tmp/'.$file)) $this->import(dirname(__FILE__).'/../install/tmp/'.$file); |
|
| 238 | - elseif ($globalDebug) echo 'Download '.$file.' failed'; |
|
| 269 | + if (file_exists(dirname(__FILE__).'/../install/tmp/'.$file)) { |
|
| 270 | + $this->import(dirname(__FILE__).'/../install/tmp/'.$file); |
|
| 271 | + } elseif ($globalDebug) { |
|
| 272 | + echo 'Download '.$file.' failed'; |
|
| 273 | + } |
|
| 239 | 274 | } |
| 240 | 275 | } |
| 241 | 276 | |
@@ -252,13 +287,17 @@ discard block |
||
| 252 | 287 | $Image = new Image(); |
| 253 | 288 | $Spotter = new Spotter(); |
| 254 | 289 | |
| 255 | - if (empty($crash)) return false; |
|
| 290 | + if (empty($crash)) { |
|
| 291 | + return false; |
|
| 292 | + } |
|
| 256 | 293 | if (!$new) { |
| 257 | 294 | $query_delete = 'DELETE FROM accidents WHERE source = :source'; |
| 258 | 295 | $sthd = $Connection->db->prepare($query_delete); |
| 259 | 296 | $sthd->execute(array(':source' => $crash[0]['source'])); |
| 260 | 297 | } |
| 261 | - if ($globalTransaction) $Connection->db->beginTransaction(); |
|
| 298 | + if ($globalTransaction) { |
|
| 299 | + $Connection->db->beginTransaction(); |
|
| 300 | + } |
|
| 262 | 301 | $initial_array = array('ident' => null,'type' => 'accident','url' => null,'registration' => null, 'date' => null, 'place' => null,'country' => null, 'latitude' => null, 'longitude' => null, 'fatalities' => null, 'title' => '','source' => '','aircraft_manufacturer' => null,'aircraft_name' => null,'operator' => null); |
| 263 | 302 | $query_check = 'SELECT COUNT(*) as nb FROM accidents WHERE registration = :registration AND date = :date AND type = :type AND source = :source'; |
| 264 | 303 | $sth_check = $Connection->db->prepare($query_check); |
@@ -273,7 +312,9 @@ discard block |
||
| 273 | 312 | return $value === "" ? NULL : $value; |
| 274 | 313 | }, $cr); |
| 275 | 314 | if ($cr['date'] != '' && $cr['registration'] != null && $cr['registration'] != '' && $cr['registration'] != '?' && $cr['registration'] != '-' && strtolower($cr['registration']) != 'unknown' && $cr['date'] < time() && !preg_match('/\s/',$cr['registration'])) { |
| 276 | - if (strpos($cr['registration'],'-') === FALSE) $cr['registration'] = $Spotter->convertAircraftRegistration($cr['registration']); |
|
| 315 | + if (strpos($cr['registration'],'-') === FALSE) { |
|
| 316 | + $cr['registration'] = $Spotter->convertAircraftRegistration($cr['registration']); |
|
| 317 | + } |
|
| 277 | 318 | $query_check_values = array(':registration' => $cr['registration'],':date' => date('Y-m-d',$cr['date']),':type' => $cr['type'],':source' => $cr['source']); |
| 278 | 319 | $sth_check->execute($query_check_values); |
| 279 | 320 | $result_check = $sth_check->fetch(PDO::FETCH_ASSOC); |
@@ -295,9 +336,13 @@ discard block |
||
| 295 | 336 | $Connection->db->beginTransaction(); |
| 296 | 337 | } |
| 297 | 338 | } |
| 298 | - if ($globalTransaction) $Connection->db->commit(); |
|
| 339 | + if ($globalTransaction) { |
|
| 340 | + $Connection->db->commit(); |
|
| 341 | + } |
|
| 299 | 342 | } catch(PDOException $e) { |
| 300 | - if ($globalTransaction) $Connection->db->rollBack(); |
|
| 343 | + if ($globalTransaction) { |
|
| 344 | + $Connection->db->rollBack(); |
|
| 345 | + } |
|
| 301 | 346 | echo $e->getMessage(); |
| 302 | 347 | } |
| 303 | 348 | $sth_check->closeCursor(); |
@@ -336,8 +381,11 @@ discard block |
||
| 336 | 381 | return "error : ".$e->getMessage(); |
| 337 | 382 | } |
| 338 | 383 | $row = $sth->fetch(PDO::FETCH_ASSOC); |
| 339 | - if ($row['nb'] > 0) return false; |
|
| 340 | - else return true; |
|
| 384 | + if ($row['nb'] > 0) { |
|
| 385 | + return false; |
|
| 386 | + } else { |
|
| 387 | + return true; |
|
| 388 | + } |
|
| 341 | 389 | } |
| 342 | 390 | |
| 343 | 391 | public static function insert_last_accidents_update() { |
@@ -39,11 +39,11 @@ discard block |
||
| 39 | 39 | if (isset($globalTimezone) && $globalTimezone != '') date_default_timezone_set($globalTimezone); |
| 40 | 40 | print '<i>Last update: '.date('Y-m-d G:i:s',$lastupdate).'</i>'; |
| 41 | 41 | } |
| 42 | - ?> |
|
| 42 | + ?> |
|
| 43 | 43 | </div> |
| 44 | 44 | <?php |
| 45 | 45 | // print_r($Stats->getAllAirlineNames()); |
| 46 | - ?> |
|
| 46 | + ?> |
|
| 47 | 47 | <?php include('statistics-sub-menu.php'); ?> |
| 48 | 48 | <p class="global-stats"> |
| 49 | 49 | <span><span class="badge"><?php print number_format($Stats->countOverallFlights($airline_icao,$filter_name)); ?></span> <?php echo _("Flights"); ?></span> |
@@ -51,23 +51,23 @@ discard block |
||
| 51 | 51 | <span><span class="badge"><?php print number_format($Stats->countOverallArrival($airline_icao,$filter_name)); ?></span> <?php echo _("Arrivals seen"); ?></span> |
| 52 | 52 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 53 | 53 | <?php |
| 54 | - if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
| 54 | + if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
| 55 | 55 | ?> |
| 56 | 56 | <span><span class="badge"><?php print number_format($Stats->countOverallPilots($airline_icao,$filter_name)); ?></span> <?php echo _("Pilots"); ?></span> |
| 57 | 57 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 58 | 58 | <?php |
| 59 | - } else { |
|
| 60 | - ?> |
|
| 59 | + } else { |
|
| 60 | + ?> |
|
| 61 | 61 | <span><span class="badge"><?php print number_format($Stats->countOverallOwners($airline_icao,$filter_name)); ?></span> <?php echo _("Owners"); ?></span> |
| 62 | 62 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 63 | 63 | <?php |
| 64 | - } |
|
| 65 | - ?> |
|
| 64 | + } |
|
| 65 | + ?> |
|
| 66 | 66 | <span><span class="badge"><?php print number_format($Stats->countOverallAircrafts($airline_icao,$filter_name)); ?></span> <?php echo _("Aircrafts types"); ?></span> |
| 67 | 67 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 68 | 68 | <?php |
| 69 | - if ($airline_icao == '') { |
|
| 70 | - ?> |
|
| 69 | + if ($airline_icao == '') { |
|
| 70 | + ?> |
|
| 71 | 71 | <span><span class="badge"><?php print number_format($Stats->countOverallAirlines($filter_name)); ?></span> <?php echo _("Airlines"); ?></span> |
| 72 | 72 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 73 | 73 | <?php |
@@ -88,25 +88,25 @@ discard block |
||
| 88 | 88 | <div class="col-md-6"> |
| 89 | 89 | <h2><?php echo _("Top 10 Most Common Aircraft Type"); ?></h2> |
| 90 | 90 | <?php |
| 91 | - $aircraft_array = $Stats->countAllAircraftTypes(true,$airline_icao,$filter_name); |
|
| 92 | - if (count($aircraft_array) == 0) print _("No data available"); |
|
| 93 | - else { |
|
| 91 | + $aircraft_array = $Stats->countAllAircraftTypes(true,$airline_icao,$filter_name); |
|
| 92 | + if (count($aircraft_array) == 0) print _("No data available"); |
|
| 93 | + else { |
|
| 94 | 94 | |
| 95 | - print '<div id="chart1" class="chart" width="100%"></div> |
|
| 95 | + print '<div id="chart1" class="chart" width="100%"></div> |
|
| 96 | 96 | <script> |
| 97 | 97 | google.load("visualization", "1", {packages:["corechart"]}); |
| 98 | 98 | google.setOnLoadCallback(drawChart1); |
| 99 | 99 | function drawChart1() { |
| 100 | 100 | var data = google.visualization.arrayToDataTable([ |
| 101 | 101 | ["'._("Aircraft").'", "'._("# of times").'"], '; |
| 102 | - $aircraft_data = ''; |
|
| 103 | - foreach($aircraft_array as $aircraft_item) |
|
| 104 | - { |
|
| 105 | - $aircraft_data .= '[ "'.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')",'.$aircraft_item['aircraft_icao_count'].'],'; |
|
| 106 | - } |
|
| 107 | - $aircraft_data = substr($aircraft_data, 0, -1); |
|
| 108 | - print $aircraft_data; |
|
| 109 | - print ']); |
|
| 102 | + $aircraft_data = ''; |
|
| 103 | + foreach($aircraft_array as $aircraft_item) |
|
| 104 | + { |
|
| 105 | + $aircraft_data .= '[ "'.$aircraft_item['aircraft_name'].' ('.$aircraft_item['aircraft_icao'].')",'.$aircraft_item['aircraft_icao_count'].'],'; |
|
| 106 | + } |
|
| 107 | + $aircraft_data = substr($aircraft_data, 0, -1); |
|
| 108 | + print $aircraft_data; |
|
| 109 | + print ']); |
|
| 110 | 110 | |
| 111 | 111 | var options = { |
| 112 | 112 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -121,8 +121,8 @@ discard block |
||
| 121 | 121 | drawChart1(); |
| 122 | 122 | }); |
| 123 | 123 | </script>'; |
| 124 | - } |
|
| 125 | - ?> |
|
| 124 | + } |
|
| 125 | + ?> |
|
| 126 | 126 | <div class="more"> |
| 127 | 127 | <a href="<?php print $globalURL; ?>/statistics/aircraft" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 128 | 128 | </div> |
@@ -130,26 +130,26 @@ discard block |
||
| 130 | 130 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 131 | 131 | <?php |
| 132 | 132 | // echo $airline_icao; |
| 133 | - if ($airline_icao == '' || $airline_icao == 'all') { |
|
| 133 | + if ($airline_icao == '' || $airline_icao == 'all') { |
|
| 134 | 134 | $airline_array = $Stats->countAllAirlines(true,$filter_name); |
| 135 | 135 | if (count($airline_array) > 0) { |
| 136 | - print '<div class="col-md-6">'; |
|
| 137 | - print '<h2>'._("Top 10 Most Common Airline").'</h2>'; |
|
| 138 | - print '<div id="chart2" class="chart" width="100%"></div> |
|
| 136 | + print '<div class="col-md-6">'; |
|
| 137 | + print '<h2>'._("Top 10 Most Common Airline").'</h2>'; |
|
| 138 | + print '<div id="chart2" class="chart" width="100%"></div> |
|
| 139 | 139 | <script> |
| 140 | 140 | google.load("visualization", "1", {packages:["corechart"]}); |
| 141 | 141 | google.setOnLoadCallback(drawChart2); |
| 142 | 142 | function drawChart2() { |
| 143 | 143 | var data = google.visualization.arrayToDataTable([ |
| 144 | 144 | ["'._("Airline").'", "'._("# of times").'"], '; |
| 145 | - $airline_data = ''; |
|
| 146 | - foreach($airline_array as $airline_item) |
|
| 147 | - { |
|
| 145 | + $airline_data = ''; |
|
| 146 | + foreach($airline_array as $airline_item) |
|
| 147 | + { |
|
| 148 | 148 | $airline_data .= '[ "'.$airline_item['airline_name'].' ('.$airline_item['airline_icao'].')",'.$airline_item['airline_count'].'],'; |
| 149 | - } |
|
| 150 | - $airline_data = substr($airline_data, 0, -1); |
|
| 151 | - print $airline_data; |
|
| 152 | - print ']); |
|
| 149 | + } |
|
| 150 | + $airline_data = substr($airline_data, 0, -1); |
|
| 151 | + print $airline_data; |
|
| 152 | + print ']); |
|
| 153 | 153 | |
| 154 | 154 | var options = { |
| 155 | 155 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -164,23 +164,23 @@ discard block |
||
| 164 | 164 | drawChart2(); |
| 165 | 165 | }); |
| 166 | 166 | </script>'; |
| 167 | - print '<div class="more"><a href="'.$globalURL.'/statistics/airline" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
|
| 168 | - print '</div>'; |
|
| 167 | + print '<div class="more"><a href="'.$globalURL.'/statistics/airline" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
|
| 168 | + print '</div>'; |
|
| 169 | 169 | } |
| 170 | 170 | ?> |
| 171 | 171 | </div> |
| 172 | 172 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 173 | 173 | <?php |
| 174 | - } |
|
| 174 | + } |
|
| 175 | 175 | ?> |
| 176 | 176 | <div class="row column"> |
| 177 | 177 | <?php |
| 178 | - $flightover_array = $Stats->countAllFlightOverCountries($airline_icao,$filter_name); |
|
| 179 | - if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
| 178 | + $flightover_array = $Stats->countAllFlightOverCountries($airline_icao,$filter_name); |
|
| 179 | + if ((isset($globalIVAO) && $globalIVAO) || (isset($globalVATSIM) && $globalVATSIM) || (isset($globalphpVMS) && $globalphpVMS)) { |
|
| 180 | 180 | if (empty($flightover_array)) { |
| 181 | - print '<div class="col-md-12">'; |
|
| 181 | + print '<div class="col-md-12">'; |
|
| 182 | 182 | } else { |
| 183 | - print '<div class="col-md-6">'; |
|
| 183 | + print '<div class="col-md-6">'; |
|
| 184 | 184 | } |
| 185 | 185 | ?> |
| 186 | 186 | <h2><?php echo _("Top 10 Most Common Pilots"); ?></h2> |
@@ -188,21 +188,21 @@ discard block |
||
| 188 | 188 | $pilot_array = $Stats->countAllPilots(true,$airline_icao,$filter_name); |
| 189 | 189 | if (count($pilot_array) == 0) print _("No data available"); |
| 190 | 190 | else { |
| 191 | - print '<div id="chart7" class="chart" width="100%"></div> |
|
| 191 | + print '<div id="chart7" class="chart" width="100%"></div> |
|
| 192 | 192 | <script> |
| 193 | 193 | google.load("visualization", "1", {packages:["corechart"]}); |
| 194 | 194 | google.setOnLoadCallback(drawChart7); |
| 195 | 195 | function drawChart7() { |
| 196 | 196 | var data = google.visualization.arrayToDataTable([ |
| 197 | 197 | ["'._("Pilots").'", "'._("# of times").'"], '; |
| 198 | - $pilot_data = ''; |
|
| 199 | - foreach($pilot_array as $pilot_item) |
|
| 200 | - { |
|
| 198 | + $pilot_data = ''; |
|
| 199 | + foreach($pilot_array as $pilot_item) |
|
| 200 | + { |
|
| 201 | 201 | $pilot_data .= '[ "'.$pilot_item['pilot_name'].' ('.$pilot_item['pilot_id'].')",'.$pilot_item['pilot_count'].'],'; |
| 202 | - } |
|
| 203 | - $pilot_data = substr($pilot_data, 0, -1); |
|
| 204 | - print $pilot_data; |
|
| 205 | - print ']); |
|
| 202 | + } |
|
| 203 | + $pilot_data = substr($pilot_data, 0, -1); |
|
| 204 | + print $pilot_data; |
|
| 205 | + print ']); |
|
| 206 | 206 | |
| 207 | 207 | var options = { |
| 208 | 208 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -217,7 +217,7 @@ discard block |
||
| 217 | 217 | drawChart7(); |
| 218 | 218 | }); |
| 219 | 219 | </script>'; |
| 220 | - } |
|
| 220 | + } |
|
| 221 | 221 | ?> |
| 222 | 222 | <div class="more"> |
| 223 | 223 | <a href="<?php print $globalURL; ?>/statistics/pilot" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | |
| 227 | 227 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 228 | 228 | <?php |
| 229 | - } else { |
|
| 229 | + } else { |
|
| 230 | 230 | ?> |
| 231 | 231 | <div class="col-md-6"> |
| 232 | 232 | <h2><?php echo _("Top 10 Most Common Owners"); ?></h2> |
@@ -234,21 +234,21 @@ discard block |
||
| 234 | 234 | $owner_array = $Stats->countAllOwners(true,$airline_icao,$filter_name); |
| 235 | 235 | if (count($owner_array) == 0) print _("No data available"); |
| 236 | 236 | else { |
| 237 | - print '<div id="chart7" class="chart" width="100%"></div> |
|
| 237 | + print '<div id="chart7" class="chart" width="100%"></div> |
|
| 238 | 238 | <script> |
| 239 | 239 | google.load("visualization", "1", {packages:["corechart"]}); |
| 240 | 240 | google.setOnLoadCallback(drawChart7); |
| 241 | 241 | function drawChart7() { |
| 242 | 242 | var data = google.visualization.arrayToDataTable([ |
| 243 | 243 | ["'._("Owner").'", "'._("# of times").'"], '; |
| 244 | - $owner_data = ''; |
|
| 245 | - foreach($owner_array as $owner_item) |
|
| 246 | - { |
|
| 244 | + $owner_data = ''; |
|
| 245 | + foreach($owner_array as $owner_item) |
|
| 246 | + { |
|
| 247 | 247 | $owner_data .= '[ "'.$owner_item['owner_name'].'",'.$owner_item['owner_count'].'],'; |
| 248 | - } |
|
| 249 | - $owner_data = substr($owner_data, 0, -1); |
|
| 250 | - print $owner_data; |
|
| 251 | - print ']); |
|
| 248 | + } |
|
| 249 | + $owner_data = substr($owner_data, 0, -1); |
|
| 250 | + print $owner_data; |
|
| 251 | + print ']); |
|
| 252 | 252 | |
| 253 | 253 | var options = { |
| 254 | 254 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -272,8 +272,8 @@ discard block |
||
| 272 | 272 | |
| 273 | 273 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 274 | 274 | <?php |
| 275 | - } |
|
| 276 | - if (!empty($flightover_array)) { |
|
| 275 | + } |
|
| 276 | + if (!empty($flightover_array)) { |
|
| 277 | 277 | ?> |
| 278 | 278 | <div class="col-md-6"> |
| 279 | 279 | <h2><?php echo _("Top 20 Most Common Country a Flight was Over"); ?></h2> |
@@ -281,21 +281,21 @@ discard block |
||
| 281 | 281 | //$flightover_array = $Stats->countAllFlightOverCountries(); |
| 282 | 282 | if (count($flightover_array) == 0) print _("No data available"); |
| 283 | 283 | else { |
| 284 | - print '<div id="chart10" class="chart" width="100%"></div> |
|
| 284 | + print '<div id="chart10" class="chart" width="100%"></div> |
|
| 285 | 285 | <script> |
| 286 | 286 | google.load("visualization", "1", {packages:["corechart"]}); |
| 287 | 287 | google.setOnLoadCallback(drawChart10); |
| 288 | 288 | function drawChart10() { |
| 289 | 289 | var data = google.visualization.arrayToDataTable([ |
| 290 | 290 | ["'._("Country").'", "'._("# of times").'"], '; |
| 291 | - $flightover_data = ''; |
|
| 292 | - foreach($flightover_array as $flightover_item) |
|
| 293 | - { |
|
| 291 | + $flightover_data = ''; |
|
| 292 | + foreach($flightover_array as $flightover_item) |
|
| 293 | + { |
|
| 294 | 294 | $flightover_data .= '[ "'.$flightover_item['flight_country'].' ('.$flightover_item['flight_country_iso2'].')",'.$flightover_item['flight_count'].'],'; |
| 295 | - } |
|
| 296 | - $flightover_data = substr($flightover_data, 0, -1); |
|
| 297 | - print $flightover_data; |
|
| 298 | - print ']); |
|
| 295 | + } |
|
| 296 | + $flightover_data = substr($flightover_data, 0, -1); |
|
| 297 | + print $flightover_data; |
|
| 298 | + print ']); |
|
| 299 | 299 | |
| 300 | 300 | var options = { |
| 301 | 301 | chartArea: {"width": "80%", "height": "60%"}, |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | </div> |
| 320 | 320 | </div> |
| 321 | 321 | <?php |
| 322 | - } |
|
| 322 | + } |
|
| 323 | 323 | ?> |
| 324 | 324 | </div> |
| 325 | 325 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
@@ -329,8 +329,8 @@ discard block |
||
| 329 | 329 | <div class="row column"> |
| 330 | 330 | <div class="col-md-6"> |
| 331 | 331 | <?php |
| 332 | - $airport_airport_array = $Stats->countAllDepartureAirports(true,$airline_icao,$filter_name); |
|
| 333 | - if (count($airport_airport_array) > 0) { |
|
| 332 | + $airport_airport_array = $Stats->countAllDepartureAirports(true,$airline_icao,$filter_name); |
|
| 333 | + if (count($airport_airport_array) > 0) { |
|
| 334 | 334 | print '<h2>'._("Top 10 Most Common Departure Airports").'</h2>'; |
| 335 | 335 | print '<div id="chart3" class="chart" width="100%"></div> |
| 336 | 336 | <script> |
@@ -343,13 +343,13 @@ discard block |
||
| 343 | 343 | |
| 344 | 344 | var data = google.visualization.arrayToDataTable([ |
| 345 | 345 | ["'._("Airport").'", "'._("# of times").'"],'; |
| 346 | - $airport_data = ''; |
|
| 346 | + $airport_data = ''; |
|
| 347 | 347 | foreach($airport_airport_array as $airport_item) |
| 348 | 348 | { |
| 349 | - $name = $airport_item['airport_departure_city'].', '.$airport_item['airport_departure_country'].' ('.$airport_item['airport_departure_icao'].')'; |
|
| 350 | - $name = str_replace("'", "", $name); |
|
| 351 | - $name = str_replace('"', "", $name); |
|
| 352 | - $airport_data .= '[ "'.$name.'",'.$airport_item['airport_departure_icao_count'].'],'; |
|
| 349 | + $name = $airport_item['airport_departure_city'].', '.$airport_item['airport_departure_country'].' ('.$airport_item['airport_departure_icao'].')'; |
|
| 350 | + $name = str_replace("'", "", $name); |
|
| 351 | + $name = str_replace('"', "", $name); |
|
| 352 | + $airport_data .= '[ "'.$name.'",'.$airport_item['airport_departure_icao_count'].'],'; |
|
| 353 | 353 | } |
| 354 | 354 | $airport_data = substr($airport_data, 0, -1); |
| 355 | 355 | print $airport_data; |
@@ -368,15 +368,15 @@ discard block |
||
| 368 | 368 | } |
| 369 | 369 | </script>'; |
| 370 | 370 | print '<div class="more"><a href="'.$globalURL.'/statistics/airport-departure" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
| 371 | - } |
|
| 371 | + } |
|
| 372 | 372 | ?> |
| 373 | 373 | </div> |
| 374 | 374 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 375 | 375 | |
| 376 | 376 | <div class="col-md-6"> |
| 377 | 377 | <?php |
| 378 | - $airport_airport_array2 = $Stats->countAllArrivalAirports(true,$airline_icao,$filter_name); |
|
| 379 | - if (count($airport_airport_array2) > 0) { |
|
| 378 | + $airport_airport_array2 = $Stats->countAllArrivalAirports(true,$airline_icao,$filter_name); |
|
| 379 | + if (count($airport_airport_array2) > 0) { |
|
| 380 | 380 | print '<h2>'._("Top 10 Most Common Arrival Airports").'</h2>'; |
| 381 | 381 | print '<div id="chart4" class="chart" width="100%"></div> |
| 382 | 382 | <script> |
@@ -392,9 +392,9 @@ discard block |
||
| 392 | 392 | $airport_data2 = ''; |
| 393 | 393 | foreach($airport_airport_array2 as $airport_item2) |
| 394 | 394 | { |
| 395 | - $name2 = $airport_item2['airport_arrival_city'].', '.$airport_item2['airport_arrival_country'].' ('.$airport_item2['airport_arrival_icao'].')'; |
|
| 396 | - $name2 = str_replace(array("'",'"'), '', $name2); |
|
| 397 | - $airport_data2 .= '[ "'.$name2.'",'.$airport_item2['airport_arrival_icao_count'].'],'; |
|
| 395 | + $name2 = $airport_item2['airport_arrival_city'].', '.$airport_item2['airport_arrival_country'].' ('.$airport_item2['airport_arrival_icao'].')'; |
|
| 396 | + $name2 = str_replace(array("'",'"'), '', $name2); |
|
| 397 | + $airport_data2 .= '[ "'.$name2.'",'.$airport_item2['airport_arrival_icao_count'].'],'; |
|
| 398 | 398 | } |
| 399 | 399 | $airport_data2 = substr($airport_data2, 0, -1); |
| 400 | 400 | print $airport_data2; |
@@ -413,7 +413,7 @@ discard block |
||
| 413 | 413 | } |
| 414 | 414 | </script>'; |
| 415 | 415 | print '<div class="more"><a href="'.$globalURL.'/statistics/airport-arrival" class="btn btn-default btn" role="button">'._("See full statistic").'»</a></div>'; |
| 416 | - } |
|
| 416 | + } |
|
| 417 | 417 | ?> |
| 418 | 418 | </div> |
| 419 | 419 | </div> |
@@ -423,24 +423,24 @@ discard block |
||
| 423 | 423 | <div class="col-md-6"> |
| 424 | 424 | <h2><?php echo _("Busiest Months of the last 12 Months"); ?></h2> |
| 425 | 425 | <?php |
| 426 | - $year_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
|
| 427 | - if (count($year_array) == 0) print _("No data available"); |
|
| 428 | - else { |
|
| 429 | - print '<div id="chart8" class="chart" width="100%"></div> |
|
| 426 | + $year_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
|
| 427 | + if (count($year_array) == 0) print _("No data available"); |
|
| 428 | + else { |
|
| 429 | + print '<div id="chart8" class="chart" width="100%"></div> |
|
| 430 | 430 | <script> |
| 431 | 431 | google.load("visualization", "1", {packages:["corechart"]}); |
| 432 | 432 | google.setOnLoadCallback(drawChart8); |
| 433 | 433 | function drawChart8() { |
| 434 | 434 | var data = google.visualization.arrayToDataTable([ |
| 435 | 435 | ["'._("Month").'", "'._("# of Flights").'"], '; |
| 436 | - $year_data = ''; |
|
| 437 | - foreach($year_array as $year_item) |
|
| 438 | - { |
|
| 439 | - $year_data .= '[ "'.date('F, Y',strtotime($year_item['year_name'].'-'.$year_item['month_name'].'-01')).'",'.$year_item['date_count'].'],'; |
|
| 440 | - } |
|
| 441 | - $year_data = substr($year_data, 0, -1); |
|
| 442 | - print $year_data; |
|
| 443 | - print ']); |
|
| 436 | + $year_data = ''; |
|
| 437 | + foreach($year_array as $year_item) |
|
| 438 | + { |
|
| 439 | + $year_data .= '[ "'.date('F, Y',strtotime($year_item['year_name'].'-'.$year_item['month_name'].'-01')).'",'.$year_item['date_count'].'],'; |
|
| 440 | + } |
|
| 441 | + $year_data = substr($year_data, 0, -1); |
|
| 442 | + print $year_data; |
|
| 443 | + print ']); |
|
| 444 | 444 | |
| 445 | 445 | var options = { |
| 446 | 446 | legend: {position: "none"}, |
@@ -458,8 +458,8 @@ discard block |
||
| 458 | 458 | drawChart8(); |
| 459 | 459 | }); |
| 460 | 460 | </script>'; |
| 461 | - } |
|
| 462 | - ?> |
|
| 461 | + } |
|
| 462 | + ?> |
|
| 463 | 463 | <div class="more"> |
| 464 | 464 | <a href="<?php print $globalURL; ?>/statistics/year" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 465 | 465 | </div> |
@@ -469,24 +469,24 @@ discard block |
||
| 469 | 469 | <div class="col-md-6"> |
| 470 | 470 | <h2><?php echo _("Busiest Day in the last Month"); ?></h2> |
| 471 | 471 | <?php |
| 472 | - $month_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
|
| 473 | - if (count($month_array) == 0) print _("No data available"); |
|
| 474 | - else { |
|
| 475 | - print '<div id="chart9" class="chart" width="100%"></div> |
|
| 472 | + $month_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
|
| 473 | + if (count($month_array) == 0) print _("No data available"); |
|
| 474 | + else { |
|
| 475 | + print '<div id="chart9" class="chart" width="100%"></div> |
|
| 476 | 476 | <script> |
| 477 | 477 | google.load("visualization", "1", {packages:["corechart"]}); |
| 478 | 478 | google.setOnLoadCallback(drawChart9); |
| 479 | 479 | function drawChart9() { |
| 480 | 480 | var data = google.visualization.arrayToDataTable([ |
| 481 | 481 | ["'._("Day").'", "'._("# of Flights").'"], '; |
| 482 | - $month_data = ''; |
|
| 483 | - foreach($month_array as $month_item) |
|
| 484 | - { |
|
| 485 | - $month_data .= '[ "'.date('F j, Y',strtotime($month_item['date_name'])).'",'.$month_item['date_count'].'],'; |
|
| 486 | - } |
|
| 487 | - $month_data = substr($month_data, 0, -1); |
|
| 488 | - print $month_data; |
|
| 489 | - print ']); |
|
| 482 | + $month_data = ''; |
|
| 483 | + foreach($month_array as $month_item) |
|
| 484 | + { |
|
| 485 | + $month_data .= '[ "'.date('F j, Y',strtotime($month_item['date_name'])).'",'.$month_item['date_count'].'],'; |
|
| 486 | + } |
|
| 487 | + $month_data = substr($month_data, 0, -1); |
|
| 488 | + print $month_data; |
|
| 489 | + print ']); |
|
| 490 | 490 | |
| 491 | 491 | var options = { |
| 492 | 492 | legend: {position: "none"}, |
@@ -504,8 +504,8 @@ discard block |
||
| 504 | 504 | drawChart9(); |
| 505 | 505 | }); |
| 506 | 506 | </script>'; |
| 507 | - } |
|
| 508 | - ?> |
|
| 507 | + } |
|
| 508 | + ?> |
|
| 509 | 509 | <div class="more"> |
| 510 | 510 | <a href="<?php print $globalURL; ?>/statistics/month" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 511 | 511 | </div> |
@@ -515,25 +515,25 @@ discard block |
||
| 515 | 515 | <div class="col-md-6"> |
| 516 | 516 | <h2><?php echo _("Busiest Day in the last 7 Days"); ?></h2> |
| 517 | 517 | <?php |
| 518 | - $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name); |
|
| 519 | - if (empty($date_array)) print _("No data available"); |
|
| 520 | - else { |
|
| 521 | - print '<div id="chart5" class="chart" width="100%"></div> |
|
| 518 | + $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name); |
|
| 519 | + if (empty($date_array)) print _("No data available"); |
|
| 520 | + else { |
|
| 521 | + print '<div id="chart5" class="chart" width="100%"></div> |
|
| 522 | 522 | <script> |
| 523 | 523 | google.load("visualization", "1", {packages:["corechart"]}); |
| 524 | 524 | google.setOnLoadCallback(drawChart5); |
| 525 | 525 | function drawChart5() { |
| 526 | 526 | var data = google.visualization.arrayToDataTable([ |
| 527 | 527 | ["'._("Date").'", "'._("# of Flights").'"], '; |
| 528 | - $date_data = ''; |
|
| 528 | + $date_data = ''; |
|
| 529 | 529 | |
| 530 | - foreach($date_array as $date_item) |
|
| 531 | - { |
|
| 532 | - $date_data .= '[ "'.date("F j, Y", strtotime($date_item['date_name'])).'",'.$date_item['date_count'].'],'; |
|
| 533 | - } |
|
| 534 | - $date_data = substr($date_data, 0, -1); |
|
| 535 | - print $date_data; |
|
| 536 | - print ']); |
|
| 530 | + foreach($date_array as $date_item) |
|
| 531 | + { |
|
| 532 | + $date_data .= '[ "'.date("F j, Y", strtotime($date_item['date_name'])).'",'.$date_item['date_count'].'],'; |
|
| 533 | + } |
|
| 534 | + $date_data = substr($date_data, 0, -1); |
|
| 535 | + print $date_data; |
|
| 536 | + print ']); |
|
| 537 | 537 | |
| 538 | 538 | var options = { |
| 539 | 539 | legend: {position: "none"}, |
@@ -551,8 +551,8 @@ discard block |
||
| 551 | 551 | drawChart5(); |
| 552 | 552 | }); |
| 553 | 553 | </script>'; |
| 554 | - } |
|
| 555 | - ?> |
|
| 554 | + } |
|
| 555 | + ?> |
|
| 556 | 556 | <div class="more"> |
| 557 | 557 | <a href="<?php print $globalURL; ?>/statistics/date" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 558 | 558 | </div> |
@@ -562,25 +562,25 @@ discard block |
||
| 562 | 562 | <div class="col-md-6"> |
| 563 | 563 | <h2><?php echo _("Busiest Time of the Day"); ?></h2> |
| 564 | 564 | <?php |
| 565 | - $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name); |
|
| 566 | - if (empty($hour_array)) print _("No data available"); |
|
| 567 | - else { |
|
| 565 | + $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name); |
|
| 566 | + if (empty($hour_array)) print _("No data available"); |
|
| 567 | + else { |
|
| 568 | 568 | |
| 569 | - print '<div id="chart6" class="chart" width="100%"></div> |
|
| 569 | + print '<div id="chart6" class="chart" width="100%"></div> |
|
| 570 | 570 | <script> |
| 571 | 571 | google.load("visualization", "1", {packages:["corechart"]}); |
| 572 | 572 | google.setOnLoadCallback(drawChart6); |
| 573 | 573 | function drawChart6() { |
| 574 | 574 | var data = google.visualization.arrayToDataTable([ |
| 575 | 575 | ["'._("Hour").'", "'._("# of Flights").'"], '; |
| 576 | - $hour_data = ''; |
|
| 577 | - foreach($hour_array as $hour_item) |
|
| 578 | - { |
|
| 579 | - $hour_data .= '[ "'.$hour_item['hour_name'].':00",'.$hour_item['hour_count'].'],'; |
|
| 580 | - } |
|
| 581 | - $hour_data = substr($hour_data, 0, -1); |
|
| 582 | - print $hour_data; |
|
| 583 | - print ']); |
|
| 576 | + $hour_data = ''; |
|
| 577 | + foreach($hour_array as $hour_item) |
|
| 578 | + { |
|
| 579 | + $hour_data .= '[ "'.$hour_item['hour_name'].':00",'.$hour_item['hour_count'].'],'; |
|
| 580 | + } |
|
| 581 | + $hour_data = substr($hour_data, 0, -1); |
|
| 582 | + print $hour_data; |
|
| 583 | + print ']); |
|
| 584 | 584 | |
| 585 | 585 | var options = { |
| 586 | 586 | legend: {position: "none"}, |
@@ -598,8 +598,8 @@ discard block |
||
| 598 | 598 | drawChart6(); |
| 599 | 599 | }); |
| 600 | 600 | </script>'; |
| 601 | - } |
|
| 602 | - ?> |
|
| 601 | + } |
|
| 602 | + ?> |
|
| 603 | 603 | <div class="more"> |
| 604 | 604 | <a href="<?php print $globalURL; ?>/statistics/time" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 605 | 605 | </div> |
@@ -607,32 +607,32 @@ discard block |
||
| 607 | 607 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 608 | 608 | </div> |
| 609 | 609 | <?php |
| 610 | - if (isset($globalAccidents) && $globalAccidents) { |
|
| 610 | + if (isset($globalAccidents) && $globalAccidents) { |
|
| 611 | 611 | ?> |
| 612 | 612 | <div class="row column"> |
| 613 | 613 | <div class="col-md-6"> |
| 614 | 614 | <h2><?php echo _("Fatalities by Years"); ?></h2> |
| 615 | 615 | <?php |
| 616 | - require_once('require/class.Accident.php'); |
|
| 617 | - $Accident = new Accident(); |
|
| 618 | - $year_array = $Accident->countFatalitiesByYear($filter_name); |
|
| 619 | - if (count($year_array) == 0) print _("No data available"); |
|
| 620 | - else { |
|
| 621 | - print '<div id="chart32" class="chart" width="100%"></div> |
|
| 616 | + require_once('require/class.Accident.php'); |
|
| 617 | + $Accident = new Accident(); |
|
| 618 | + $year_array = $Accident->countFatalitiesByYear($filter_name); |
|
| 619 | + if (count($year_array) == 0) print _("No data available"); |
|
| 620 | + else { |
|
| 621 | + print '<div id="chart32" class="chart" width="100%"></div> |
|
| 622 | 622 | <script> |
| 623 | 623 | google.load("visualization", "1", {packages:["corechart"]}); |
| 624 | 624 | google.setOnLoadCallback(drawChart32); |
| 625 | 625 | function drawChart32() { |
| 626 | 626 | var data = google.visualization.arrayToDataTable([ |
| 627 | 627 | ["'._("Year").'", "'._("# of Fatalities").'"], '; |
| 628 | - $year_data = ''; |
|
| 629 | - foreach($year_array as $year_item) |
|
| 630 | - { |
|
| 631 | - $year_data .= '[ "'.$year_item['year'].'",'.$year_item['count'].'],'; |
|
| 632 | - } |
|
| 633 | - $year_data = substr($year_data, 0, -1); |
|
| 634 | - print $year_data; |
|
| 635 | - print ']); |
|
| 628 | + $year_data = ''; |
|
| 629 | + foreach($year_array as $year_item) |
|
| 630 | + { |
|
| 631 | + $year_data .= '[ "'.$year_item['year'].'",'.$year_item['count'].'],'; |
|
| 632 | + } |
|
| 633 | + $year_data = substr($year_data, 0, -1); |
|
| 634 | + print $year_data; |
|
| 635 | + print ']); |
|
| 636 | 636 | |
| 637 | 637 | var options = { |
| 638 | 638 | legend: {position: "none"}, |
@@ -650,8 +650,8 @@ discard block |
||
| 650 | 650 | drawChart32(); |
| 651 | 651 | }); |
| 652 | 652 | </script>'; |
| 653 | - } |
|
| 654 | - ?> |
|
| 653 | + } |
|
| 654 | + ?> |
|
| 655 | 655 | <div class="more"> |
| 656 | 656 | <a href="<?php print $globalURL; ?>/statistics/fatalities/year" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 657 | 657 | </div> |
@@ -662,26 +662,26 @@ discard block |
||
| 662 | 662 | <div class="col-md-6"> |
| 663 | 663 | <h2><?php echo _("Fatalities last 12 Months"); ?></h2> |
| 664 | 664 | <?php |
| 665 | - require_once('require/class.Accident.php'); |
|
| 666 | - $Accident = new Accident(); |
|
| 667 | - $year_array = $Accident->countFatalitiesLast12Months($filter_name); |
|
| 668 | - if (count($year_array) == 0) print _("No data available"); |
|
| 669 | - else { |
|
| 670 | - print '<div id="chart33" class="chart" width="100%"></div> |
|
| 665 | + require_once('require/class.Accident.php'); |
|
| 666 | + $Accident = new Accident(); |
|
| 667 | + $year_array = $Accident->countFatalitiesLast12Months($filter_name); |
|
| 668 | + if (count($year_array) == 0) print _("No data available"); |
|
| 669 | + else { |
|
| 670 | + print '<div id="chart33" class="chart" width="100%"></div> |
|
| 671 | 671 | <script> |
| 672 | 672 | google.load("visualization", "1", {packages:["corechart"]}); |
| 673 | 673 | google.setOnLoadCallback(drawChart33); |
| 674 | 674 | function drawChart33() { |
| 675 | 675 | var data = google.visualization.arrayToDataTable([ |
| 676 | 676 | ["'._("Month").'", "'._("# of Fatalities").'"], '; |
| 677 | - $year_data = ''; |
|
| 678 | - foreach($year_array as $year_item) |
|
| 679 | - { |
|
| 680 | - $year_data .= '[ "'.date('F, Y',strtotime($year_item['year'].'-'.$year_item['month'].'-01')).'",'.$year_item['count'].'],'; |
|
| 681 | - } |
|
| 682 | - $year_data = substr($year_data, 0, -1); |
|
| 683 | - print $year_data; |
|
| 684 | - print ']); |
|
| 677 | + $year_data = ''; |
|
| 678 | + foreach($year_array as $year_item) |
|
| 679 | + { |
|
| 680 | + $year_data .= '[ "'.date('F, Y',strtotime($year_item['year'].'-'.$year_item['month'].'-01')).'",'.$year_item['count'].'],'; |
|
| 681 | + } |
|
| 682 | + $year_data = substr($year_data, 0, -1); |
|
| 683 | + print $year_data; |
|
| 684 | + print ']); |
|
| 685 | 685 | |
| 686 | 686 | var options = { |
| 687 | 687 | legend: {position: "none"}, |
@@ -699,8 +699,8 @@ discard block |
||
| 699 | 699 | drawChart33(); |
| 700 | 700 | }); |
| 701 | 701 | </script>'; |
| 702 | - } |
|
| 703 | - ?> |
|
| 702 | + } |
|
| 703 | + ?> |
|
| 704 | 704 | <div class="more"> |
| 705 | 705 | <a href="<?php print $globalURL; ?>/statistics/fatalities/month" class="btn btn-default btn" role="button"><?php echo _("See full statistic"); ?>»</a> |
| 706 | 706 | </div> |
@@ -708,25 +708,25 @@ discard block |
||
| 708 | 708 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 709 | 709 | <br/> |
| 710 | 710 | <?php |
| 711 | - } |
|
| 711 | + } |
|
| 712 | 712 | ?> |
| 713 | 713 | |
| 714 | 714 | <?php |
| 715 | - if (($airline_icao == '' || $airline_icao == 'all') && $filter_name == '') { |
|
| 715 | + if (($airline_icao == '' || $airline_icao == 'all') && $filter_name == '') { |
|
| 716 | 716 | ?> |
| 717 | 717 | <div class="row column"> |
| 718 | 718 | <?php |
| 719 | - $polar = $Stats->getStatsSource(date('Y-m-d'),'polar'); |
|
| 720 | - if (!empty($polar)) { |
|
| 721 | - print '<h2>'._("Coverage pattern").'</h2>'; |
|
| 722 | - foreach ($polar as $eachpolar) { |
|
| 723 | - unset($polar_data); |
|
| 724 | - $Spotter = new Spotter(); |
|
| 725 | - $data = json_decode($eachpolar['source_data']); |
|
| 726 | - foreach($data as $value => $key) { |
|
| 727 | - $direction = $Spotter->parseDirection(($value*22.5)); |
|
| 728 | - $distance = $key; |
|
| 729 | - $unit = 'km'; |
|
| 719 | + $polar = $Stats->getStatsSource(date('Y-m-d'),'polar'); |
|
| 720 | + if (!empty($polar)) { |
|
| 721 | + print '<h2>'._("Coverage pattern").'</h2>'; |
|
| 722 | + foreach ($polar as $eachpolar) { |
|
| 723 | + unset($polar_data); |
|
| 724 | + $Spotter = new Spotter(); |
|
| 725 | + $data = json_decode($eachpolar['source_data']); |
|
| 726 | + foreach($data as $value => $key) { |
|
| 727 | + $direction = $Spotter->parseDirection(($value*22.5)); |
|
| 728 | + $distance = $key; |
|
| 729 | + $unit = 'km'; |
|
| 730 | 730 | if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) { |
| 731 | 731 | $distance = round($distance*0.539957); |
| 732 | 732 | $unit = 'nm'; |
@@ -737,10 +737,10 @@ discard block |
||
| 737 | 737 | $distance = $distance; |
| 738 | 738 | $unit = 'km'; |
| 739 | 739 | } |
| 740 | - if (!isset($polar_data)) $polar_data = '{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
| 741 | - else $polar_data = $polar_data.',{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
| 742 | - } |
|
| 743 | - ?> |
|
| 740 | + if (!isset($polar_data)) $polar_data = '{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
| 741 | + else $polar_data = $polar_data.',{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
| 742 | + } |
|
| 743 | + ?> |
|
| 744 | 744 | <div class="col-md-6"> |
| 745 | 745 | <h4><?php print $eachpolar['source_name']; ?></h4> |
| 746 | 746 | <div id="polar-<?php print str_replace(' ','_',strtolower($eachpolar['source_name'])); ?>" class="chart" width="100%"></div> |
@@ -772,22 +772,22 @@ discard block |
||
| 772 | 772 | </script> |
| 773 | 773 | </div> |
| 774 | 774 | <?php |
| 775 | - } |
|
| 776 | - } |
|
| 777 | - ?> |
|
| 775 | + } |
|
| 776 | + } |
|
| 777 | + ?> |
|
| 778 | 778 | </div> |
| 779 | 779 | <div class="row column"> |
| 780 | 780 | <div class="col-md-6"> |
| 781 | 781 | <?php |
| 782 | - $msg = $Stats->getStatsSource(date('Y-m-d'),'msg'); |
|
| 783 | - if (!empty($msg)) { |
|
| 784 | - print '<h2>'._("Messages received").'</h2>'; |
|
| 785 | - foreach ($msg as $eachmsg) { |
|
| 786 | - //$eachmsg = $msg[0]; |
|
| 787 | - $data = $eachmsg['source_data']; |
|
| 788 | - if ($data > 500) $max = (round(($data+100)/100))*100; |
|
| 789 | - else $max = 500; |
|
| 790 | - ?> |
|
| 782 | + $msg = $Stats->getStatsSource(date('Y-m-d'),'msg'); |
|
| 783 | + if (!empty($msg)) { |
|
| 784 | + print '<h2>'._("Messages received").'</h2>'; |
|
| 785 | + foreach ($msg as $eachmsg) { |
|
| 786 | + //$eachmsg = $msg[0]; |
|
| 787 | + $data = $eachmsg['source_data']; |
|
| 788 | + if ($data > 500) $max = (round(($data+100)/100))*100; |
|
| 789 | + else $max = 500; |
|
| 790 | + ?> |
|
| 791 | 791 | <div id="msg-<?php print str_replace(' ','_',strtolower($eachmsg['source_name'])); ?>" class="col-md-4"></div> |
| 792 | 792 | <script> |
| 793 | 793 | var g = new JustGage({ |
@@ -803,9 +803,9 @@ discard block |
||
| 803 | 803 | }); |
| 804 | 804 | </script> |
| 805 | 805 | <?php |
| 806 | - } |
|
| 807 | - } |
|
| 808 | - ?> |
|
| 806 | + } |
|
| 807 | + } |
|
| 808 | + ?> |
|
| 809 | 809 | </div> |
| 810 | 810 | </div> |
| 811 | 811 | <div class="row column"> |
@@ -832,19 +832,19 @@ discard block |
||
| 832 | 832 | $hist_data .= '[ "'.$distance.'",'.$nb.'],'; |
| 833 | 833 | } |
| 834 | 834 | $hist_data = substr($hist_data, 0, -1); |
| 835 | - ?> |
|
| 835 | + ?> |
|
| 836 | 836 | <div class="col-md-6"> |
| 837 | 837 | <h2><?php echo sprintf(_("Flights Distance for %s"),$source); ?></h2> |
| 838 | 838 | <?php |
| 839 | - print '<div id="charthist-'.str_replace(' ','_',strtolower($source)).'" class="chart" width="100%"></div> |
|
| 839 | + print '<div id="charthist-'.str_replace(' ','_',strtolower($source)).'" class="chart" width="100%"></div> |
|
| 840 | 840 | <script> |
| 841 | 841 | google.load("visualization", "1", {packages:["corechart"]}); |
| 842 | 842 | google.setOnLoadCallback(drawCharthist_'.str_replace(' ','_',strtolower($source)).'); |
| 843 | 843 | function drawCharthist_'.str_replace(' ','_',strtolower($source)).'() { |
| 844 | 844 | var data = google.visualization.arrayToDataTable([ |
| 845 | 845 | ["'._("Distance").'", "'._("# of Flights").'"], '; |
| 846 | - print $hist_data; |
|
| 847 | - print ']); |
|
| 846 | + print $hist_data; |
|
| 847 | + print ']); |
|
| 848 | 848 | |
| 849 | 849 | var options = { |
| 850 | 850 | legend: {position: "none"}, |
@@ -862,15 +862,15 @@ discard block |
||
| 862 | 862 | drawCharthist_'.str_replace(' ','_',strtolower($source)).'(); |
| 863 | 863 | }); |
| 864 | 864 | </script>'; |
| 865 | - ?> |
|
| 865 | + ?> |
|
| 866 | 866 | </div> |
| 867 | 867 | <!-- <?php print 'Time elapsed : '.(microtime(true)-$beginpage).'s' ?> --> |
| 868 | 868 | <?php |
| 869 | - } |
|
| 870 | - ?> |
|
| 869 | + } |
|
| 870 | + ?> |
|
| 871 | 871 | </div> |
| 872 | 872 | <?php |
| 873 | - } |
|
| 873 | + } |
|
| 874 | 874 | ?> |
| 875 | 875 | </div> |
| 876 | 876 | </div> |
@@ -6,7 +6,9 @@ discard block |
||
| 6 | 6 | $Stats = new Stats(); |
| 7 | 7 | $title = _("Statistics"); |
| 8 | 8 | |
| 9 | -if (!isset($filter_name)) $filter_name = ''; |
|
| 9 | +if (!isset($filter_name)) { |
|
| 10 | + $filter_name = ''; |
|
| 11 | +} |
|
| 10 | 12 | $airline_icao = (string)filter_input(INPUT_GET,'airline',FILTER_SANITIZE_STRING); |
| 11 | 13 | if ($airline_icao == 'all') { |
| 12 | 14 | unset($_COOKIE['stats_airline_icao']); |
@@ -15,8 +17,10 @@ discard block |
||
| 15 | 17 | } elseif ($airline_icao == '' && isset($_COOKIE['stats_airline_icao'])) { |
| 16 | 18 | $airline_icao = $_COOKIE['stats_airline_icao']; |
| 17 | 19 | } elseif ($airline_icao == '' && isset($globalFilter)) { |
| 18 | - if (isset($globalFilter['airline'])) $airline_icao = $globalFilter['airline'][0]; |
|
| 19 | -} |
|
| 20 | + if (isset($globalFilter['airline'])) { |
|
| 21 | + $airline_icao = $globalFilter['airline'][0]; |
|
| 22 | + } |
|
| 23 | + } |
|
| 20 | 24 | setcookie('stats_airline_icao',$airline_icao); |
| 21 | 25 | require_once('header.php'); |
| 22 | 26 | |
@@ -36,7 +40,9 @@ discard block |
||
| 36 | 40 | if (isset($last_update[0]['value'])) { |
| 37 | 41 | date_default_timezone_set('UTC'); |
| 38 | 42 | $lastupdate = strtotime($last_update[0]['value']); |
| 39 | - if (isset($globalTimezone) && $globalTimezone != '') date_default_timezone_set($globalTimezone); |
|
| 43 | + if (isset($globalTimezone) && $globalTimezone != '') { |
|
| 44 | + date_default_timezone_set($globalTimezone); |
|
| 45 | + } |
|
| 40 | 46 | print '<i>Last update: '.date('Y-m-d G:i:s',$lastupdate).'</i>'; |
| 41 | 47 | } |
| 42 | 48 | ?> |
@@ -89,8 +95,9 @@ discard block |
||
| 89 | 95 | <h2><?php echo _("Top 10 Most Common Aircraft Type"); ?></h2> |
| 90 | 96 | <?php |
| 91 | 97 | $aircraft_array = $Stats->countAllAircraftTypes(true,$airline_icao,$filter_name); |
| 92 | - if (count($aircraft_array) == 0) print _("No data available"); |
|
| 93 | - else { |
|
| 98 | + if (count($aircraft_array) == 0) { |
|
| 99 | + print _("No data available"); |
|
| 100 | + } else { |
|
| 94 | 101 | |
| 95 | 102 | print '<div id="chart1" class="chart" width="100%"></div> |
| 96 | 103 | <script> |
@@ -186,8 +193,9 @@ discard block |
||
| 186 | 193 | <h2><?php echo _("Top 10 Most Common Pilots"); ?></h2> |
| 187 | 194 | <?php |
| 188 | 195 | $pilot_array = $Stats->countAllPilots(true,$airline_icao,$filter_name); |
| 189 | - if (count($pilot_array) == 0) print _("No data available"); |
|
| 190 | - else { |
|
| 196 | + if (count($pilot_array) == 0) { |
|
| 197 | + print _("No data available"); |
|
| 198 | + } else { |
|
| 191 | 199 | print '<div id="chart7" class="chart" width="100%"></div> |
| 192 | 200 | <script> |
| 193 | 201 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -232,8 +240,9 @@ discard block |
||
| 232 | 240 | <h2><?php echo _("Top 10 Most Common Owners"); ?></h2> |
| 233 | 241 | <?php |
| 234 | 242 | $owner_array = $Stats->countAllOwners(true,$airline_icao,$filter_name); |
| 235 | - if (count($owner_array) == 0) print _("No data available"); |
|
| 236 | - else { |
|
| 243 | + if (count($owner_array) == 0) { |
|
| 244 | + print _("No data available"); |
|
| 245 | + } else { |
|
| 237 | 246 | print '<div id="chart7" class="chart" width="100%"></div> |
| 238 | 247 | <script> |
| 239 | 248 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -279,8 +288,9 @@ discard block |
||
| 279 | 288 | <h2><?php echo _("Top 20 Most Common Country a Flight was Over"); ?></h2> |
| 280 | 289 | <?php |
| 281 | 290 | //$flightover_array = $Stats->countAllFlightOverCountries(); |
| 282 | - if (count($flightover_array) == 0) print _("No data available"); |
|
| 283 | - else { |
|
| 291 | + if (count($flightover_array) == 0) { |
|
| 292 | + print _("No data available"); |
|
| 293 | + } else { |
|
| 284 | 294 | print '<div id="chart10" class="chart" width="100%"></div> |
| 285 | 295 | <script> |
| 286 | 296 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -424,8 +434,9 @@ discard block |
||
| 424 | 434 | <h2><?php echo _("Busiest Months of the last 12 Months"); ?></h2> |
| 425 | 435 | <?php |
| 426 | 436 | $year_array = $Stats->countAllMonthsLastYear(true,$airline_icao,$filter_name); |
| 427 | - if (count($year_array) == 0) print _("No data available"); |
|
| 428 | - else { |
|
| 437 | + if (count($year_array) == 0) { |
|
| 438 | + print _("No data available"); |
|
| 439 | + } else { |
|
| 429 | 440 | print '<div id="chart8" class="chart" width="100%"></div> |
| 430 | 441 | <script> |
| 431 | 442 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -470,8 +481,9 @@ discard block |
||
| 470 | 481 | <h2><?php echo _("Busiest Day in the last Month"); ?></h2> |
| 471 | 482 | <?php |
| 472 | 483 | $month_array = $Stats->countAllDatesLastMonth($airline_icao,$filter_name); |
| 473 | - if (count($month_array) == 0) print _("No data available"); |
|
| 474 | - else { |
|
| 484 | + if (count($month_array) == 0) { |
|
| 485 | + print _("No data available"); |
|
| 486 | + } else { |
|
| 475 | 487 | print '<div id="chart9" class="chart" width="100%"></div> |
| 476 | 488 | <script> |
| 477 | 489 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -516,8 +528,9 @@ discard block |
||
| 516 | 528 | <h2><?php echo _("Busiest Day in the last 7 Days"); ?></h2> |
| 517 | 529 | <?php |
| 518 | 530 | $date_array = $Stats->countAllDatesLast7Days($airline_icao,$filter_name); |
| 519 | - if (empty($date_array)) print _("No data available"); |
|
| 520 | - else { |
|
| 531 | + if (empty($date_array)) { |
|
| 532 | + print _("No data available"); |
|
| 533 | + } else { |
|
| 521 | 534 | print '<div id="chart5" class="chart" width="100%"></div> |
| 522 | 535 | <script> |
| 523 | 536 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -563,8 +576,9 @@ discard block |
||
| 563 | 576 | <h2><?php echo _("Busiest Time of the Day"); ?></h2> |
| 564 | 577 | <?php |
| 565 | 578 | $hour_array = $Stats->countAllHours('hour',true,$airline_icao,$filter_name); |
| 566 | - if (empty($hour_array)) print _("No data available"); |
|
| 567 | - else { |
|
| 579 | + if (empty($hour_array)) { |
|
| 580 | + print _("No data available"); |
|
| 581 | + } else { |
|
| 568 | 582 | |
| 569 | 583 | print '<div id="chart6" class="chart" width="100%"></div> |
| 570 | 584 | <script> |
@@ -616,8 +630,9 @@ discard block |
||
| 616 | 630 | require_once('require/class.Accident.php'); |
| 617 | 631 | $Accident = new Accident(); |
| 618 | 632 | $year_array = $Accident->countFatalitiesByYear($filter_name); |
| 619 | - if (count($year_array) == 0) print _("No data available"); |
|
| 620 | - else { |
|
| 633 | + if (count($year_array) == 0) { |
|
| 634 | + print _("No data available"); |
|
| 635 | + } else { |
|
| 621 | 636 | print '<div id="chart32" class="chart" width="100%"></div> |
| 622 | 637 | <script> |
| 623 | 638 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -665,8 +680,9 @@ discard block |
||
| 665 | 680 | require_once('require/class.Accident.php'); |
| 666 | 681 | $Accident = new Accident(); |
| 667 | 682 | $year_array = $Accident->countFatalitiesLast12Months($filter_name); |
| 668 | - if (count($year_array) == 0) print _("No data available"); |
|
| 669 | - else { |
|
| 683 | + if (count($year_array) == 0) { |
|
| 684 | + print _("No data available"); |
|
| 685 | + } else { |
|
| 670 | 686 | print '<div id="chart33" class="chart" width="100%"></div> |
| 671 | 687 | <script> |
| 672 | 688 | google.load("visualization", "1", {packages:["corechart"]}); |
@@ -737,8 +753,11 @@ discard block |
||
| 737 | 753 | $distance = $distance; |
| 738 | 754 | $unit = 'km'; |
| 739 | 755 | } |
| 740 | - if (!isset($polar_data)) $polar_data = '{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
| 741 | - else $polar_data = $polar_data.',{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
| 756 | + if (!isset($polar_data)) { |
|
| 757 | + $polar_data = '{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
| 758 | + } else { |
|
| 759 | + $polar_data = $polar_data.',{axis:"'.$direction[0]['direction_shortname'].'",value:'.$key.'}'; |
|
| 760 | + } |
|
| 742 | 761 | } |
| 743 | 762 | ?> |
| 744 | 763 | <div class="col-md-6"> |
@@ -785,8 +804,11 @@ discard block |
||
| 785 | 804 | foreach ($msg as $eachmsg) { |
| 786 | 805 | //$eachmsg = $msg[0]; |
| 787 | 806 | $data = $eachmsg['source_data']; |
| 788 | - if ($data > 500) $max = (round(($data+100)/100))*100; |
|
| 789 | - else $max = 500; |
|
| 807 | + if ($data > 500) { |
|
| 808 | + $max = (round(($data+100)/100))*100; |
|
| 809 | + } else { |
|
| 810 | + $max = 500; |
|
| 811 | + } |
|
| 790 | 812 | ?> |
| 791 | 813 | <div id="msg-<?php print str_replace(' ','_',strtolower($eachmsg['source_name'])); ?>" class="col-md-4"></div> |
| 792 | 814 | <script> |