-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathmanufacturer-statistics-route.php
100 lines (93 loc) · 3.95 KB
/
manufacturer-statistics-route.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?php
require_once('require/class.Connection.php');
require_once('require/class.Spotter.php');
require_once('require/class.Stats.php');
require_once('require/class.Language.php');
if (!isset($_GET['aircraft_manufacturer'])) {
header('Location: '.$globalURL.'/manufacturer');
die();
}
$Spotter = new Spotter();
$manufacturer = ucwords(str_replace("-", " ", urldecode(filter_input(INPUT_GET,'aircraft_manufacturer',FILTER_SANITIZE_STRING))));
$sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING);
$spotter_array = $Spotter->getSpotterDataByManufacturer($manufacturer,"0,1", $sort);
if (!empty($spotter_array))
{
$title = sprintf(_("Most Common Routes from %s"),$manufacturer);
require_once('header.php');
print '<div class="select-item">';
print '<form action="'.$globalURL.'/manufacturer" method="post">';
print '<select name="aircraft_manufacturer" class="selectpicker" data-live-search="true">';
$Stats = new Stats();
$all_manufacturers = $Stats->getAllManufacturers();
if (empty($all_manufacturers)) $all_manufacturers = $Spotter->getAllManufacturers();
foreach($all_manufacturers as $all_manufacturer)
{
if($_GET['aircraft_manufacturer'] == strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])))
{
print '<option value="'.strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])).'" selected="selected">'.$all_manufacturer['aircraft_manufacturer'].'</option>';
} else {
print '<option value="'.strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])).'">'.$all_manufacturer['aircraft_manufacturer'].'</option>';
}
}
print '</select>';
print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
print '</form>';
print '</div>';
print '<div class="info column">';
print '<h1>'.$manufacturer.'</h1>';
print '</div>';
include('manufacturer-sub-menu.php');
print '<div class="column">';
print '<h2>'._("Most Common Routes").'</h2>';
print '<p>'.sprintf(_("The statistic below shows the most common routes from <strong>%s</strong>."),$manufacturer).'</p>';
$route_array = $Spotter->countAllRoutesByManufacturer($manufacturer);
if (!empty($route_array))
{
print '<div class="table-responsive">';
print '<table class="common-routes table-striped">';
print '<thead>';
print '<th></th>';
print '<th>'._("Departure Airport").'</th>';
print '<th>'._("Arrival Airport").'</th>';
print '<th>'._("# of times").'</th>';
print '<th></th>';
print '<th></th>';
print '</thead>';
print '<tbody>';
$i = 1;
foreach($route_array as $route_item)
{
print '<tr>';
print '<td><strong>'.$i.'</strong></td>';
print '<td>';
print '<a href="'.$globalURL.'/airport/'.$route_item['airport_departure_icao'].'">'.$route_item['airport_departure_city'].', '.$route_item['airport_departure_country'].' ('.$route_item['airport_departure_icao'].')</a>';
print '</td>';
print '<td>';
print '<a href="'.$globalURL.'/airport/'.$route_item['airport_arrival_icao'].'">'.$route_item['airport_arrival_city'].', '.$route_item['airport_arrival_country'].' ('.$route_item['airport_arrival_icao'].')</a>';
print '</td>';
print '<td>';
print $route_item['route_count'];
print '</td>';
print '<td>';
print '<a href="'.$globalURL.'/search?manufacturer='.$manufacturer.'&departure_airport_route='.$route_item['airport_departure_icao'].'&arrival_airport_route='.$route_item['airport_arrival_icao'].'">'._("Search Flights").'</a>';
print '</td>';
print '<td>';
print '<a href="'.$globalURL.'/route/'.$route_item['airport_departure_icao'].'/'.$route_item['airport_arrival_icao'].'">'._("Route History").'</a>';
print '</td>';
print '</tr>';
$i++;
}
print '<tbody>';
print '</table>';
print '</div>';
}
print '</div>';
} else {
$title = _("Manufacturer");
require_once('header.php');
print '<h1>'._("Error").'</h1>';
print '<p>'._("Sorry, the aircraft manufacturer does not exist in this database. :(").'</p>';
}
require_once('footer.php');
?>