|
@@ -16,40 +16,40 @@ discard block |
|
|
block discarded – undo |
|
16
|
16
|
|
|
17
|
17
|
if (isset($_GET['start_date'])) { |
|
18
|
18
|
//for the date manipulation into the query |
|
19
|
|
- if($_GET['start_date'] != "" && $_GET['end_date'] != ""){ |
|
|
19
|
+ if ($_GET['start_date'] != "" && $_GET['end_date'] != "") { |
|
20
|
20
|
//$start_date = $_GET['start_date']." 00:00:00"; |
|
21
|
|
- $start_date = date("Y-m-d",strtotime($_GET['start_date']))." 00:00:00"; |
|
|
21
|
+ $start_date = date("Y-m-d", strtotime($_GET['start_date']))." 00:00:00"; |
|
22
|
22
|
//$end_date = $_GET['end_date']." 00:00:00"; |
|
23
|
|
- $end_date = date("Y-m-d",strtotime($_GET['end_date']))." 00:00:00"; |
|
|
23
|
+ $end_date = date("Y-m-d", strtotime($_GET['end_date']))." 00:00:00"; |
|
24
|
24
|
$sql_date = $start_date.",".$end_date; |
|
25
|
|
- } else if($_GET['start_date'] != ""){ |
|
|
25
|
+ } else if ($_GET['start_date'] != "") { |
|
26
|
26
|
//$start_date = $_GET['start_date']." 00:00:00"; |
|
27
|
|
- $start_date = date("Y-m-d",strtotime($_GET['start_date']))." 00:00:00"; |
|
|
27
|
+ $start_date = date("Y-m-d", strtotime($_GET['start_date']))." 00:00:00"; |
|
28
|
28
|
$sql_date = $start_date; |
|
29
|
|
- } else if($_GET['start_date'] == "" && $_GET['end_date'] != ""){ |
|
|
29
|
+ } else if ($_GET['start_date'] == "" && $_GET['end_date'] != "") { |
|
30
|
30
|
//$end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".$_GET['end_date']." 00:00:00"; |
|
31
|
|
- $end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".date("Y-m-d",strtotime($_GET['end_date']))." 00:00:00"; |
|
|
31
|
+ $end_date = date("Y-m-d H:i:s", strtotime("2014-04-12")).",".date("Y-m-d", strtotime($_GET['end_date']))." 00:00:00"; |
|
32
|
32
|
$sql_date = $end_date; |
|
33
|
33
|
} else $sql_date = ''; |
|
34
|
34
|
} else $sql_date = ''; |
|
35
|
35
|
|
|
36
|
36
|
if (isset($_GET['highest_altitude'])) { |
|
37
|
37
|
//for altitude manipulation |
|
38
|
|
- if($_GET['highest_altitude'] != "" && $_GET['lowest_altitude'] != ""){ |
|
39
|
|
- $end_altitude = filter_input(INPUT_GET,'highest_altitude',FILTER_SANITIZE_NUMBER_INT); |
|
40
|
|
- $start_altitude = filter_input(INPUT_GET,'lowest_altitude',FILTER_SANITIZE_NUMBER_INT); |
|
|
38
|
+ if ($_GET['highest_altitude'] != "" && $_GET['lowest_altitude'] != "") { |
|
|
39
|
+ $end_altitude = filter_input(INPUT_GET, 'highest_altitude', FILTER_SANITIZE_NUMBER_INT); |
|
|
40
|
+ $start_altitude = filter_input(INPUT_GET, 'lowest_altitude', FILTER_SANITIZE_NUMBER_INT); |
|
41
|
41
|
$sql_altitude = $start_altitude.",".$end_altitude; |
|
42
|
|
- } else if($_GET['highest_altitude'] != ""){ |
|
43
|
|
- $end_altitude = filter_input(INPUT_GET,'highest_altitude',FILTER_SANITIZE_NUMBER_INT); |
|
|
42
|
+ } else if ($_GET['highest_altitude'] != "") { |
|
|
43
|
+ $end_altitude = filter_input(INPUT_GET, 'highest_altitude', FILTER_SANITIZE_NUMBER_INT); |
|
44
|
44
|
$sql_altitude = $end_altitude; |
|
45
|
|
- } else if($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != ""){ |
|
46
|
|
- $start_altitude = filter_input(INPUT_GET,'lowest_altitude',FILTER_SANITIZE_NUMBER_INT).",60000"; |
|
|
45
|
+ } else if ($_GET['highest_altitude'] == "" && $_GET['lowest_altitude'] != "") { |
|
|
46
|
+ $start_altitude = filter_input(INPUT_GET, 'lowest_altitude', FILTER_SANITIZE_NUMBER_INT).",60000"; |
|
47
|
47
|
$sql_altitude = $start_altitude; |
|
48
|
48
|
} else $sql_altitude = ''; |
|
49
|
49
|
} else $sql_altitude = ''; |
|
50
|
50
|
|
|
51
|
51
|
//calculuation for the pagination |
|
52
|
|
-if(!isset($_GET['limit'])) |
|
|
52
|
+if (!isset($_GET['limit'])) |
|
53
|
53
|
{ |
|
54
|
54
|
if (!isset($_GET['number_results'])) |
|
55
|
55
|
{ |
|
@@ -57,45 +57,45 @@ discard block |
|
|
block discarded – undo |
|
57
|
57
|
$limit_end = 25; |
|
58
|
58
|
$absolute_difference = 25; |
|
59
|
59
|
} else { |
|
60
|
|
- if ($_GET['number_results'] > 1000){ |
|
|
60
|
+ if ($_GET['number_results'] > 1000) { |
|
61
|
61
|
$_GET['number_results'] = 1000; |
|
62
|
62
|
} |
|
63
|
63
|
$limit_start = 0; |
|
64
|
|
- $limit_end = filter_input(INPUT_GET,'number_results',FILTER_SANITIZE_NUMBER_INT); |
|
65
|
|
- $absolute_difference = filter_input(INPUT_GET,'number_results',FILTER_SANITIZE_NUMBER_INT); |
|
|
64
|
+ $limit_end = filter_input(INPUT_GET, 'number_results', FILTER_SANITIZE_NUMBER_INT); |
|
|
65
|
+ $absolute_difference = filter_input(INPUT_GET, 'number_results', FILTER_SANITIZE_NUMBER_INT); |
|
66
|
66
|
} |
|
67
|
|
-} else { |
|
|
67
|
+} else { |
|
68
|
68
|
$limit_explode = explode(",", $_GET['limit']); |
|
69
|
|
- $limit_start = filter_var($limit_explode[0],FILTER_SANITIZE_NUMBER_INT); |
|
70
|
|
- $limit_end = filter_var($limit_explode[1],FILTER_SANITIZE_NUMBER_INT); |
|
|
69
|
+ $limit_start = filter_var($limit_explode[0], FILTER_SANITIZE_NUMBER_INT); |
|
|
70
|
+ $limit_end = filter_var($limit_explode[1], FILTER_SANITIZE_NUMBER_INT); |
|
71
|
71
|
} |
|
72
|
72
|
$absolute_difference = abs($limit_start - $limit_end); |
|
73
|
73
|
$limit_next = $limit_end + $absolute_difference; |
|
74
|
74
|
$limit_previous_1 = $limit_start - $absolute_difference; |
|
75
|
75
|
$limit_previous_2 = $limit_end - $absolute_difference; |
|
76
|
76
|
|
|
77
|
|
-if (!empty($_GET)){ |
|
78
|
|
- $q = filter_input(INPUT_GET, 'q',FILTER_SANITIZE_STRING); |
|
79
|
|
- $registration = filter_input(INPUT_GET, 'registration',FILTER_SANITIZE_STRING); |
|
80
|
|
- $aircraft = filter_input(INPUT_GET, 'aircraft',FILTER_SANITIZE_STRING); |
|
81
|
|
- $manufacturer = filter_input(INPUT_GET, 'manufacturer',FILTER_SANITIZE_STRING); |
|
82
|
|
- $highlights = filter_input(INPUT_GET, 'highlights',FILTER_SANITIZE_STRING); |
|
83
|
|
- $airline = filter_input(INPUT_GET, 'airline',FILTER_SANITIZE_STRING); |
|
84
|
|
- $airline_country = filter_input(INPUT_GET, 'airline_country',FILTER_SANITIZE_STRING); |
|
85
|
|
- $airline_type = filter_input(INPUT_GET, 'airline_type',FILTER_SANITIZE_STRING); |
|
86
|
|
- $airport = filter_input(INPUT_GET, 'airport',FILTER_SANITIZE_STRING); |
|
87
|
|
- $airport_country = filter_input(INPUT_GET, 'airport_country',FILTER_SANITIZE_STRING); |
|
88
|
|
- $callsign = filter_input(INPUT_GET, 'callsign',FILTER_SANITIZE_STRING); |
|
89
|
|
- $owner = filter_input(INPUT_GET, 'owner',FILTER_SANITIZE_STRING); |
|
90
|
|
- $pilot_name = filter_input(INPUT_GET, 'pilot_name',FILTER_SANITIZE_STRING); |
|
91
|
|
- $pilot_id = filter_input(INPUT_GET, 'pilot_id',FILTER_SANITIZE_STRING); |
|
92
|
|
- $departure_airport_route = filter_input(INPUT_GET, 'departure_airport_route',FILTER_SANITIZE_STRING); |
|
93
|
|
- $arrival_airport_route = filter_input(INPUT_GET, 'arrival_airport_route',FILTER_SANITIZE_STRING); |
|
94
|
|
- $sort = filter_input(INPUT_GET,'sort',FILTER_SANITIZE_STRING); |
|
95
|
|
- $archive = filter_input(INPUT_GET,'archive',FILTER_SANITIZE_NUMBER_INT); |
|
96
|
|
- $origlat = filter_input(INPUT_GET,'origlat',FILTER_SANITIZE_STRING); |
|
97
|
|
- $origlon = filter_input(INPUT_GET,'origlon',FILTER_SANITIZE_STRING); |
|
98
|
|
- $dist = filter_input(INPUT_GET,'dist',FILTER_SANITIZE_NUMBER_INT); |
|
|
77
|
+if (!empty($_GET)) { |
|
|
78
|
+ $q = filter_input(INPUT_GET, 'q', FILTER_SANITIZE_STRING); |
|
|
79
|
+ $registration = filter_input(INPUT_GET, 'registration', FILTER_SANITIZE_STRING); |
|
|
80
|
+ $aircraft = filter_input(INPUT_GET, 'aircraft', FILTER_SANITIZE_STRING); |
|
|
81
|
+ $manufacturer = filter_input(INPUT_GET, 'manufacturer', FILTER_SANITIZE_STRING); |
|
|
82
|
+ $highlights = filter_input(INPUT_GET, 'highlights', FILTER_SANITIZE_STRING); |
|
|
83
|
+ $airline = filter_input(INPUT_GET, 'airline', FILTER_SANITIZE_STRING); |
|
|
84
|
+ $airline_country = filter_input(INPUT_GET, 'airline_country', FILTER_SANITIZE_STRING); |
|
|
85
|
+ $airline_type = filter_input(INPUT_GET, 'airline_type', FILTER_SANITIZE_STRING); |
|
|
86
|
+ $airport = filter_input(INPUT_GET, 'airport', FILTER_SANITIZE_STRING); |
|
|
87
|
+ $airport_country = filter_input(INPUT_GET, 'airport_country', FILTER_SANITIZE_STRING); |
|
|
88
|
+ $callsign = filter_input(INPUT_GET, 'callsign', FILTER_SANITIZE_STRING); |
|
|
89
|
+ $owner = filter_input(INPUT_GET, 'owner', FILTER_SANITIZE_STRING); |
|
|
90
|
+ $pilot_name = filter_input(INPUT_GET, 'pilot_name', FILTER_SANITIZE_STRING); |
|
|
91
|
+ $pilot_id = filter_input(INPUT_GET, 'pilot_id', FILTER_SANITIZE_STRING); |
|
|
92
|
+ $departure_airport_route = filter_input(INPUT_GET, 'departure_airport_route', FILTER_SANITIZE_STRING); |
|
|
93
|
+ $arrival_airport_route = filter_input(INPUT_GET, 'arrival_airport_route', FILTER_SANITIZE_STRING); |
|
|
94
|
+ $sort = filter_input(INPUT_GET, 'sort', FILTER_SANITIZE_STRING); |
|
|
95
|
+ $archive = filter_input(INPUT_GET, 'archive', FILTER_SANITIZE_NUMBER_INT); |
|
|
96
|
+ $origlat = filter_input(INPUT_GET, 'origlat', FILTER_SANITIZE_STRING); |
|
|
97
|
+ $origlon = filter_input(INPUT_GET, 'origlon', FILTER_SANITIZE_STRING); |
|
|
98
|
+ $dist = filter_input(INPUT_GET, 'dist', FILTER_SANITIZE_NUMBER_INT); |
|
99
|
99
|
if ($dist != '') { |
|
100
|
100
|
if (isset($globalDistanceUnit) && $globalDistanceUnit == 'mi') $dist = $dist*1.60934; |
|
101
|
101
|
elseif (isset($globalDistanceUnit) && $globalDistanceUnit == 'nm') $dist = $dist*1.852; |
|
@@ -103,9 +103,9 @@ discard block |
|
|
block discarded – undo |
|
103
|
103
|
if (!isset($sql_date)) $sql_date = ''; |
|
104
|
104
|
if ($archive == 1) { |
|
105
|
105
|
$SpotterArchive = new SpotterArchive(); |
|
106
|
|
- $spotter_array = $SpotterArchive->searchSpotterData($q,$registration,$aircraft,strtolower(str_replace("-", " ", $manufacturer)),$highlights,$airline,$airline_country,$airline_type,$airport,$airport_country,$callsign,$departure_airport_route,$arrival_airport_route,$owner,$pilot_id,$pilot_name,$sql_altitude,$sql_date,$limit_start.",".$absolute_difference,$sort,'',$origlat,$origlon,$dist); |
|
|
106
|
+ $spotter_array = $SpotterArchive->searchSpotterData($q, $registration, $aircraft, strtolower(str_replace("-", " ", $manufacturer)), $highlights, $airline, $airline_country, $airline_type, $airport, $airport_country, $callsign, $departure_airport_route, $arrival_airport_route, $owner, $pilot_id, $pilot_name, $sql_altitude, $sql_date, $limit_start.",".$absolute_difference, $sort, '', $origlat, $origlon, $dist); |
|
107
|
107
|
} else { |
|
108
|
|
- $spotter_array = $Spotter->searchSpotterData($q,$registration,$aircraft,strtolower(str_replace("-", " ", $manufacturer)),$highlights,$airline,$airline_country,$airline_type,$airport,$airport_country,$callsign,$departure_airport_route,$arrival_airport_route,$owner,$pilot_id,$pilot_name,$sql_altitude,$sql_date,$limit_start.",".$absolute_difference,$sort,'',$origlat,$origlon,$dist); |
|
|
108
|
+ $spotter_array = $Spotter->searchSpotterData($q, $registration, $aircraft, strtolower(str_replace("-", " ", $manufacturer)), $highlights, $airline, $airline_country, $airline_type, $airport, $airport_country, $callsign, $departure_airport_route, $arrival_airport_route, $owner, $pilot_id, $pilot_name, $sql_altitude, $sql_date, $limit_start.",".$absolute_difference, $sort, '', $origlat, $origlon, $dist); |
|
109
|
109
|
} |
|
110
|
110
|
|
|
111
|
111
|
print '<span class="sub-menu-statistic column mobile">'; |
|
@@ -138,12 +138,12 @@ discard block |
|
|
block discarded – undo |
|
138
|
138
|
//remove 3D=true parameter |
|
139
|
139
|
$no3D = str_replace("&3D=true", "", $_SERVER['QUERY_STRING']); |
|
140
|
140
|
$kmlURL = str_replace("http://", "kml://", $globalURL); |
|
141
|
|
- if (!isset($_GET['3D'])){ |
|
|
141
|
+ if (!isset($_GET['3D'])) { |
|
142
|
142
|
print '<li><a href="'.$globalURL.'/search?'.$no3D.'" class="active"><i class="fa fa-table"></i> '._("Table").'</a></li>'; |
|
143
|
143
|
} else { |
|
144
|
144
|
print '<li><span class="notablet"><a href="'.$globalURL.'/search?'.$no3D.'"><i class="fa fa-table"></i> '._("Table").'</a></span></li>'; |
|
145
|
145
|
} |
|
146
|
|
- if (isset($_GET['3D'])){ |
|
|
146
|
+ if (isset($_GET['3D'])) { |
|
147
|
147
|
print '<li><a href="'.$globalURL.'/search?'.$no3D.'&3D=true" class="active"><i class="fa fa-globe"></i> '._("3D Map").'</a></li>'; |
|
148
|
148
|
} else { |
|
149
|
149
|
print '<li ><a href="'.$globalURL.'/search?'.$no3D.'&3D=true" class="notablet nomobile"><i class="fa fa-globe"></i> '._("3D Map").'</a><a href="'.$kmlURL.'/search/kml?'.htmlentities($_SERVER['QUERY_STRING']).'" class="tablet mobile"><i class="fa fa-globe"></i> 3D Map</a></li>'; |
|
@@ -164,30 +164,30 @@ discard block |
|
|
block discarded – undo |
|
164
|
164
|
print '<div class="column">'; |
|
165
|
165
|
print '<div class="info">'; |
|
166
|
166
|
print '<h1>'._("Search Results for").' '; |
|
167
|
|
- if (isset($_GET['q']) && $_GET['q'] != ""){ print _("Keyword:").' <span>'.$q.'</span> '; } |
|
168
|
|
- if (isset($_GET['aircraft']) && $_GET['aircraft'] != ""){ print _("Aircraft:").' <span>'.$aircraft.'</span> '; } |
|
169
|
|
- if (isset($_GET['manufacturer']) && $_GET['manufacturer'] != ""){ print _("Manufacturer:").' <span>'.$manufacturer.'</span> '; } |
|
170
|
|
- if (isset($_GET['registration']) && $_GET['registration'] != ""){ print _("Registration:").' <span>'.$registration.'</span> '; } |
|
171
|
|
- if (isset($_GET['highlights'])) if ($_GET['highlights'] == "true"){ print _("Highlights:").' <span>'.$highlights.'</span> '; } |
|
172
|
|
- if (isset($_GET['airline']) && $_GET['airline'] != ""){ print _("Airline:").' <span>'.$airline.'</span> '; } |
|
173
|
|
- if (isset($_GET['airline_country']) && $_GET['airline_country'] != ""){ print _("Airline country:").' <span>'.$airline_country.'</span> '; } |
|
174
|
|
- if (isset($_GET['airline_type']) && $_GET['airline_type'] != ""){ print _("Airline type:").' <span>'.$airline_type.'</span> '; } |
|
175
|
|
- if (isset($_GET['airport']) && $_GET['airport'] != ""){ print _("Airport:").' <span>'.$airport.'</span> '; } |
|
176
|
|
- if (isset($_GET['airport_country']) && $_GET['airport_country'] != ""){ print _("Airport country:").' <span>'.$airport_country.'</span> '; } |
|
177
|
|
- if (isset($_GET['callsign']) && $_GET['callsign'] != ""){ print _("Callsign:").' <span>'.$callsign.'</span> '; } |
|
178
|
|
- if (isset($_GET['owner']) && $_GET['owner'] != ""){ print _("Owner:").' <span>'.$owner.'</span> '; } |
|
179
|
|
- if (isset($_GET['pilot_id']) && $_GET['pilot_id'] != ""){ print _("Pilot id:").' <span>'.$pilot_id.'</span> '; } |
|
180
|
|
- if (isset($_GET['pilot_name']) && $_GET['pilot_name'] != ""){ print _("Pilot name:").' <span>'.$pilot_name.'</span> '; } |
|
181
|
|
- if (isset($_GET['departure_airport_route']) && $_GET['departure_airport_route'] != "" && (!isset($_GET['arrival_airport_route']) || $_GET['arrival_airport_route'] == "")){ print _("Route out of:").' <span>'.$departure_airport_route.'</span> '; } |
|
182
|
|
- if (isset($_GET['departure_airport_route']) && $_GET['departure_airport_route'] == "" && isset($_GET['arrival_airport_route']) && $_GET['arrival_airport_route'] != ""){ print _("Route into:").' <span>'.$arrival_airport_route.'</span> '; } |
|
183
|
|
- if (isset($_GET['departure_airport_route']) && $_GET['departure_airport_route'] != "" && isset($_GET['arrival_airport_route']) && $_GET['arrival_airport_route'] != ""){ print _("Route between:").' <span>'.$departure_airport_route.'</span> and <span>'.$_GET['arrival_airport_route'].'</span> '; } |
|
184
|
|
- if (isset($_GET['start_date']) && $_GET['start_date'] != "" && isset($_GET['end_date']) && $_GET['end_date'] == ""){ print _("Date starting at:").' <span>'.$start_date.'</span> '; } |
|
185
|
|
- if (isset($_GET['start_date']) && $_GET['start_date'] == "" && isset($_GET['end_date']) && $_GET['end_date'] != ""){ print _("Date ending at:").' <span>'.$end_date.'</span> '; } |
|
186
|
|
- if (isset($_GET['start_date']) && $_GET['start_date'] != "" && isset($_GET['end_date']) && $_GET['end_date'] != ""){ print _("Date between:").' <span>'.$start_date.'</span> and <span>'.$end_date.'</span> '; } |
|
187
|
|
- if (isset($_GET['lowest_altitude']) && $_GET['lowest_altitude'] != "" && isset($_GET['highest_altitude']) && $_GET['highest_altitude'] == ""){ print _("Altitude starting at:").' <span>'.number_format($lowest_altitude).' feet</span> '; } |
|
188
|
|
- if (isset($_GET['lowest_altitude']) && $_GET['lowest_altitude'] == "" && isset($_GET['highest_altitude']) && $_GET['highest_altitude'] != ""){ print _("Altitude ending at:").' <span>'.number_format($highest_altitude).' feet</span> '; } |
|
189
|
|
- if (isset($_GET['lowest_altitude']) && $_GET['lowest_altitude'] != "" && isset($_GET['highest_altitude']) && $_GET['highest_altitude'] != ""){ print _("Altitude between:").' <span>'.number_format($lowest_altitude).' feet</span> '._("and").' <span>'.number_format($highest_altitude).' feet</span> '; } |
|
190
|
|
- if (isset($_GET['number_results']) && $_GET['number_results'] != ""){ print _("limit per page:").' <span>'.$number_results.'</span> '; } |
|
|
167
|
+ if (isset($_GET['q']) && $_GET['q'] != "") { print _("Keyword:").' <span>'.$q.'</span> '; } |
|
|
168
|
+ if (isset($_GET['aircraft']) && $_GET['aircraft'] != "") { print _("Aircraft:").' <span>'.$aircraft.'</span> '; } |
|
|
169
|
+ if (isset($_GET['manufacturer']) && $_GET['manufacturer'] != "") { print _("Manufacturer:").' <span>'.$manufacturer.'</span> '; } |
|
|
170
|
+ if (isset($_GET['registration']) && $_GET['registration'] != "") { print _("Registration:").' <span>'.$registration.'</span> '; } |
|
|
171
|
+ if (isset($_GET['highlights'])) if ($_GET['highlights'] == "true") { print _("Highlights:").' <span>'.$highlights.'</span> '; } |
|
|
172
|
+ if (isset($_GET['airline']) && $_GET['airline'] != "") { print _("Airline:").' <span>'.$airline.'</span> '; } |
|
|
173
|
+ if (isset($_GET['airline_country']) && $_GET['airline_country'] != "") { print _("Airline country:").' <span>'.$airline_country.'</span> '; } |
|
|
174
|
+ if (isset($_GET['airline_type']) && $_GET['airline_type'] != "") { print _("Airline type:").' <span>'.$airline_type.'</span> '; } |
|
|
175
|
+ if (isset($_GET['airport']) && $_GET['airport'] != "") { print _("Airport:").' <span>'.$airport.'</span> '; } |
|
|
176
|
+ if (isset($_GET['airport_country']) && $_GET['airport_country'] != "") { print _("Airport country:").' <span>'.$airport_country.'</span> '; } |
|
|
177
|
+ if (isset($_GET['callsign']) && $_GET['callsign'] != "") { print _("Callsign:").' <span>'.$callsign.'</span> '; } |
|
|
178
|
+ if (isset($_GET['owner']) && $_GET['owner'] != "") { print _("Owner:").' <span>'.$owner.'</span> '; } |
|
|
179
|
+ if (isset($_GET['pilot_id']) && $_GET['pilot_id'] != "") { print _("Pilot id:").' <span>'.$pilot_id.'</span> '; } |
|
|
180
|
+ if (isset($_GET['pilot_name']) && $_GET['pilot_name'] != "") { print _("Pilot name:").' <span>'.$pilot_name.'</span> '; } |
|
|
181
|
+ if (isset($_GET['departure_airport_route']) && $_GET['departure_airport_route'] != "" && (!isset($_GET['arrival_airport_route']) || $_GET['arrival_airport_route'] == "")) { print _("Route out of:").' <span>'.$departure_airport_route.'</span> '; } |
|
|
182
|
+ if (isset($_GET['departure_airport_route']) && $_GET['departure_airport_route'] == "" && isset($_GET['arrival_airport_route']) && $_GET['arrival_airport_route'] != "") { print _("Route into:").' <span>'.$arrival_airport_route.'</span> '; } |
|
|
183
|
+ if (isset($_GET['departure_airport_route']) && $_GET['departure_airport_route'] != "" && isset($_GET['arrival_airport_route']) && $_GET['arrival_airport_route'] != "") { print _("Route between:").' <span>'.$departure_airport_route.'</span> and <span>'.$_GET['arrival_airport_route'].'</span> '; } |
|
|
184
|
+ if (isset($_GET['start_date']) && $_GET['start_date'] != "" && isset($_GET['end_date']) && $_GET['end_date'] == "") { print _("Date starting at:").' <span>'.$start_date.'</span> '; } |
|
|
185
|
+ if (isset($_GET['start_date']) && $_GET['start_date'] == "" && isset($_GET['end_date']) && $_GET['end_date'] != "") { print _("Date ending at:").' <span>'.$end_date.'</span> '; } |
|
|
186
|
+ if (isset($_GET['start_date']) && $_GET['start_date'] != "" && isset($_GET['end_date']) && $_GET['end_date'] != "") { print _("Date between:").' <span>'.$start_date.'</span> and <span>'.$end_date.'</span> '; } |
|
|
187
|
+ if (isset($_GET['lowest_altitude']) && $_GET['lowest_altitude'] != "" && isset($_GET['highest_altitude']) && $_GET['highest_altitude'] == "") { print _("Altitude starting at:").' <span>'.number_format($lowest_altitude).' feet</span> '; } |
|
|
188
|
+ if (isset($_GET['lowest_altitude']) && $_GET['lowest_altitude'] == "" && isset($_GET['highest_altitude']) && $_GET['highest_altitude'] != "") { print _("Altitude ending at:").' <span>'.number_format($highest_altitude).' feet</span> '; } |
|
|
189
|
+ if (isset($_GET['lowest_altitude']) && $_GET['lowest_altitude'] != "" && isset($_GET['highest_altitude']) && $_GET['highest_altitude'] != "") { print _("Altitude between:").' <span>'.number_format($lowest_altitude).' feet</span> '._("and").' <span>'.number_format($highest_altitude).' feet</span> '; } |
|
|
190
|
+ if (isset($_GET['number_results']) && $_GET['number_results'] != "") { print _("limit per page:").' <span>'.$number_results.'</span> '; } |
|
191
|
191
|
print '</h1>'; |
|
192
|
192
|
print '</div>'; |
|
193
|
193
|
|
|
@@ -294,7 +294,7 @@ discard block |
|
|
block discarded – undo |
|
294
|
294
|
</select> |
|
295
|
295
|
</div> |
|
296
|
296
|
</div> |
|
297
|
|
- <script type="text/javascript">getSelect('manufacturer','<?php if(isset($_GET['manufacturer'])) print $manufacturer; ?>')</script> |
|
|
297
|
+ <script type="text/javascript">getSelect('manufacturer','<?php if (isset($_GET['manufacturer'])) print $manufacturer; ?>')</script> |
|
298
|
298
|
<div class="form-group"> |
|
299
|
299
|
<label class="control-label col-sm-2"><?php echo _("Type"); ?></label> |
|
300
|
300
|
<div class="col-sm-10"> |
|
@@ -303,7 +303,7 @@ discard block |
|
|
block discarded – undo |
|
303
|
303
|
</select> |
|
304
|
304
|
</div> |
|
305
|
305
|
</div> |
|
306
|
|
- <script type="text/javascript">getSelect('aircrafttypes','<?php if(isset($_GET['aircraft_icao'])) print $aircraft_icao; ?>');</script> |
|
|
306
|
+ <script type="text/javascript">getSelect('aircrafttypes','<?php if (isset($_GET['aircraft_icao'])) print $aircraft_icao; ?>');</script> |
|
307
|
307
|
<div class="form-group"> |
|
308
|
308
|
<label class="control-label col-sm-2"><?php echo _("Registration"); ?></label> |
|
309
|
309
|
<div class="col-sm-10"> |
|
@@ -326,7 +326,7 @@ discard block |
|
|
block discarded – undo |
|
326
|
326
|
</div> |
|
327
|
327
|
</div> |
|
328
|
328
|
<?php |
|
329
|
|
-}else { |
|
|
329
|
+} else { |
|
330
|
330
|
?> |
|
331
|
331
|
<div class="form-group"> |
|
332
|
332
|
<label class="control-label col-sm-2"><?php echo _("Owner name"); ?></label> |
|
@@ -339,8 +339,8 @@ discard block |
|
|
block discarded – undo |
|
339
|
339
|
?> |
|
340
|
340
|
<div class="form-group"> |
|
341
|
341
|
<div class="col-sm-offset-2 col-sm-10"> |
|
342
|
|
- <!--<div><input type="checkbox" class="form-control" name="highlights" value="true" id="highlights" <?php if (isset($_GET['highlights'])) if ($_GET['highlights'] == "true"){ print 'checked="checked"'; } ?>> <label for="highlights"><?php echo _("Include only aircrafts with special highlights (unique liveries, destinations etc.)"); ?></label></div>--> |
|
343
|
|
- <label class="checkbox-inline"><input type="checkbox" name="highlights" value="true" id="highlights" <?php if (isset($_GET['highlights'])) if ($_GET['highlights'] == "true"){ print 'checked="checked"'; } ?>> <?php echo _("Include only aircrafts with special highlights (unique liveries, destinations etc.)"); ?></label> |
|
|
342
|
+ <!--<div><input type="checkbox" class="form-control" name="highlights" value="true" id="highlights" <?php if (isset($_GET['highlights'])) if ($_GET['highlights'] == "true") { print 'checked="checked"'; } ?>> <label for="highlights"><?php echo _("Include only aircrafts with special highlights (unique liveries, destinations etc.)"); ?></label></div>--> |
|
|
343
|
+ <label class="checkbox-inline"><input type="checkbox" name="highlights" value="true" id="highlights" <?php if (isset($_GET['highlights'])) if ($_GET['highlights'] == "true") { print 'checked="checked"'; } ?>> <?php echo _("Include only aircrafts with special highlights (unique liveries, destinations etc.)"); ?></label> |
|
344
|
344
|
</div> |
|
345
|
345
|
</div> |
|
346
|
346
|
</fieldset> |
|
@@ -354,7 +354,7 @@ discard block |
|
|
block discarded – undo |
|
354
|
354
|
</select> |
|
355
|
355
|
</div> |
|
356
|
356
|
</div> |
|
357
|
|
- <script type="text/javascript">getSelect('airlinenames','<?php if(isset($_GET['airline'])) print $airline; ?>');</script> |
|
|
357
|
+ <script type="text/javascript">getSelect('airlinenames','<?php if (isset($_GET['airline'])) print $airline; ?>');</script> |
|
358
|
358
|
<div class="form-group"> |
|
359
|
359
|
<label class="control-label col-sm-2"><?php echo _("Country"); ?></label> |
|
360
|
360
|
<div class="col-sm-10"> |
|
@@ -363,7 +363,7 @@ discard block |
|
|
block discarded – undo |
|
363
|
363
|
</select> |
|
364
|
364
|
</div> |
|
365
|
365
|
</div> |
|
366
|
|
- <script type="text/javascript">getSelect('airlinecountries','<?php if(isset($_GET['airline_country'])) print $airline_country; ?>');</script> |
|
|
366
|
+ <script type="text/javascript">getSelect('airlinecountries','<?php if (isset($_GET['airline_country'])) print $airline_country; ?>');</script> |
|
367
|
367
|
<div class="form-group"> |
|
368
|
368
|
<label class="control-label col-sm-2"><?php echo _("Callsign"); ?></label> |
|
369
|
369
|
<div class="col-sm-10"> |
|
@@ -372,10 +372,10 @@ discard block |
|
|
block discarded – undo |
|
372
|
372
|
</div> |
|
373
|
373
|
<div class="form-group"> |
|
374
|
374
|
<div class="col-sm-offset-2 col-sm-10"> |
|
375
|
|
- <label class="radio-inline"><input type="radio" name="airline_type" value="all" id="airline_type_all" <?php if (!isset($_GET['airline_type']) || $_GET['airline_type'] == "all"){ print 'checked="checked"'; } ?>> <?php echo _("All airlines types"); ?></label> |
|
376
|
|
- <label class="radio-inline"><input type="radio" name="airline_type" value="passenger" id="airline_type_passenger" <?php if (isset($_GET['airline_type'])) if ($_GET['airline_type'] == "passenger"){ print 'checked="checked"'; } ?>> <?php echo _("Only Passenger airlines"); ?></label> |
|
377
|
|
- <label class="radio-inline"><input type="radio" name="airline_type" value="cargo" id="airline_type_cargo" <?php if (isset($_GET['airline_type'])) if ( $_GET['airline_type'] == "cargo"){ print 'checked="checked"'; } ?>> <?php echo _("Only Cargo airlines"); ?></label> |
|
378
|
|
- <label class="radio-inline"><input type="radio" name="airline_type" value="military" id="airline_type_military" <?php if (isset($_GET['airline_type'])) if ( $_GET['airline_type'] == "military"){ print 'checked="checked"'; } ?>> <?php echo _("Only Military airlines"); ?></label> |
|
|
375
|
+ <label class="radio-inline"><input type="radio" name="airline_type" value="all" id="airline_type_all" <?php if (!isset($_GET['airline_type']) || $_GET['airline_type'] == "all") { print 'checked="checked"'; } ?>> <?php echo _("All airlines types"); ?></label> |
|
|
376
|
+ <label class="radio-inline"><input type="radio" name="airline_type" value="passenger" id="airline_type_passenger" <?php if (isset($_GET['airline_type'])) if ($_GET['airline_type'] == "passenger") { print 'checked="checked"'; } ?>> <?php echo _("Only Passenger airlines"); ?></label> |
|
|
377
|
+ <label class="radio-inline"><input type="radio" name="airline_type" value="cargo" id="airline_type_cargo" <?php if (isset($_GET['airline_type'])) if ($_GET['airline_type'] == "cargo") { print 'checked="checked"'; } ?>> <?php echo _("Only Cargo airlines"); ?></label> |
|
|
378
|
+ <label class="radio-inline"><input type="radio" name="airline_type" value="military" id="airline_type_military" <?php if (isset($_GET['airline_type'])) if ($_GET['airline_type'] == "military") { print 'checked="checked"'; } ?>> <?php echo _("Only Military airlines"); ?></label> |
|
379
|
379
|
</div> |
|
380
|
380
|
</div> |
|
381
|
381
|
</fieldset> |
|
@@ -389,7 +389,7 @@ discard block |
|
|
block discarded – undo |
|
389
|
389
|
</select> |
|
390
|
390
|
</div> |
|
391
|
391
|
</div> |
|
392
|
|
- <script type="text/javascript">getSelect('airportnames','<?php if(isset($_GET['airport_icao'])) print $airport_icao; ?>');</script> |
|
|
392
|
+ <script type="text/javascript">getSelect('airportnames','<?php if (isset($_GET['airport_icao'])) print $airport_icao; ?>');</script> |
|
393
|
393
|
<div class="form-group"> |
|
394
|
394
|
<label class="control-label col-sm-2"><?php echo _("Country"); ?></label> |
|
395
|
395
|
<div class="col-sm-10"> |
|
@@ -398,7 +398,7 @@ discard block |
|
|
block discarded – undo |
|
398
|
398
|
</select> |
|
399
|
399
|
</div> |
|
400
|
400
|
</div> |
|
401
|
|
- <script type="text/javascript">getSelect('airportcountries','<?php if(isset($_GET['airport_country'])) print $airport_country; ?>');</script> |
|
|
401
|
+ <script type="text/javascript">getSelect('airportcountries','<?php if (isset($_GET['airport_country'])) print $airport_country; ?>');</script> |
|
402
|
402
|
</fieldset> |
|
403
|
403
|
<fieldset> |
|
404
|
404
|
<legend><?php echo _("Route"); ?></legend> |
|
@@ -410,7 +410,7 @@ discard block |
|
|
block discarded – undo |
|
410
|
410
|
</select> |
|
411
|
411
|
</div> |
|
412
|
412
|
</div> |
|
413
|
|
- <script type="text/javascript">getSelect('departureairportnames','<?php if(isset($_GET['departure_airport_route'])) print $departure_airport_route; ?>');</script> |
|
|
413
|
+ <script type="text/javascript">getSelect('departureairportnames','<?php if (isset($_GET['departure_airport_route'])) print $departure_airport_route; ?>');</script> |
|
414
|
414
|
<div class="form-group"> |
|
415
|
415
|
<label class="control-label col-sm-2"><?php echo _("Arrival Airport"); ?></label> |
|
416
|
416
|
<div class="col-sm-10"> |
|
@@ -419,7 +419,7 @@ discard block |
|
|
block discarded – undo |
|
419
|
419
|
</select> |
|
420
|
420
|
</div> |
|
421
|
421
|
</div> |
|
422
|
|
- <script type="text/javascript">getSelect('arrivalairportnames','<?php if(isset($_GET['arrival_airport_route'])) print $arrival_airport_route; ?>');</script> |
|
|
422
|
+ <script type="text/javascript">getSelect('arrivalairportnames','<?php if (isset($_GET['arrival_airport_route'])) print $arrival_airport_route; ?>');</script> |
|
423
|
423
|
</fieldset> |
|
424
|
424
|
<fieldset> |
|
425
|
425
|
<legend><?php echo _("Date"); ?></legend> |
|
@@ -473,9 +473,9 @@ discard block |
|
|
block discarded – undo |
|
473
|
473
|
<option></option> |
|
474
|
474
|
<?php |
|
475
|
475
|
$altitude_array = Array(1000, 5000, 10000, 15000, 20000, 25000, 30000, 35000, 40000, 45000, 50000); |
|
476
|
|
-foreach($altitude_array as $altitude) |
|
|
476
|
+foreach ($altitude_array as $altitude) |
|
477
|
477
|
{ |
|
478
|
|
- if(isset($_GET['lowest_altitude']) && $_GET['lowest_altitude'] == $altitude) |
|
|
478
|
+ if (isset($_GET['lowest_altitude']) && $_GET['lowest_altitude'] == $altitude) |
|
479
|
479
|
{ |
|
480
|
480
|
print '<option value="'.$altitude.'" selected="selected">'.number_format($altitude).' feet</option>'; |
|
481
|
481
|
} else { |
|
@@ -493,9 +493,9 @@ discard block |
|
|
block discarded – undo |
|
493
|
493
|
<option></option> |
|
494
|
494
|
<?php |
|
495
|
495
|
$altitude_array = Array(1000, 5000, 10000, 15000, 20000, 25000, 30000, 35000, 40000, 45000, 50000); |
|
496
|
|
-foreach($altitude_array as $altitude) |
|
|
496
|
+foreach ($altitude_array as $altitude) |
|
497
|
497
|
{ |
|
498
|
|
- if(isset($_GET['highest_altitude']) && $_GET['highest_altitude'] == $altitude) |
|
|
498
|
+ if (isset($_GET['highest_altitude']) && $_GET['highest_altitude'] == $altitude) |
|
499
|
499
|
{ |
|
500
|
500
|
print '<option value="'.$altitude.'" selected="selected">'.number_format($altitude).' feet</option>'; |
|
501
|
501
|
} else { |
|
@@ -534,10 +534,10 @@ discard block |
|
|
block discarded – undo |
|
534
|
534
|
<div class="col-sm-10"> |
|
535
|
535
|
<select class="form-control" name="number_results"> |
|
536
|
536
|
<?php |
|
537
|
|
-$number_results_array = Array(25, 50, 100, 150, 200, 250, 300, 400, 500, 600, 700, 800, 900, 1000); |
|
538
|
|
-foreach($number_results_array as $number) |
|
|
537
|
+$number_results_array = Array(25, 50, 100, 150, 200, 250, 300, 400, 500, 600, 700, 800, 900, 1000); |
|
|
538
|
+foreach ($number_results_array as $number) |
|
539
|
539
|
{ |
|
540
|
|
- if(isset($_GET['number_results']) && $_GET['number_results'] == $number) |
|
|
540
|
+ if (isset($_GET['number_results']) && $_GET['number_results'] == $number) |
|
541
|
541
|
{ |
|
542
|
542
|
print '<option value="'.$number.'" selected="selected">'.$number.'</option>'; |
|
543
|
543
|
} else { |
|
@@ -555,7 +555,7 @@ discard block |
|
|
block discarded – undo |
|
555
|
555
|
<fieldset> |
|
556
|
556
|
<div class="form-group"> |
|
557
|
557
|
<div class="col-sm-offset-2 col-sm-10"> |
|
558
|
|
- <label class="checkbox-inline"><input type="checkbox" name="archive" value="1" /><?php echo sprintf(_("Search in archive (older than %s months)"),$globalArchiveKeepMonths); ?></label> |
|
|
558
|
+ <label class="checkbox-inline"><input type="checkbox" name="archive" value="1" /><?php echo sprintf(_("Search in archive (older than %s months)"), $globalArchiveKeepMonths); ?></label> |
|
559
|
559
|
</div> |
|
560
|
560
|
</div> |
|
561
|
561
|
</fieldset> |