|
@@ -157,11 +157,26 @@ discard block |
|
|
block discarded – undo |
|
157
|
157
|
<li><div class="checkbox"><label><input type="checkbox" name="notamcb" value="1" onclick="showNotam();" /><?php echo _("Display NOTAM"); ?></label></div></li> |
|
158
|
158
|
<li><?php echo _("NOTAM scope:"); ?> |
|
159
|
159
|
<select class="selectpicker" onchange="notamscope(this);"> |
|
160
|
|
- <option<?php if (!isset($_COOKIE['notamscope']) || $_COOKIE['notamscope'] == 'All') print ' selected'; ?>>All</option> |
|
161
|
|
- <option<?php if (isset($_COOKIE['notamscope']) && $_COOKIE['notamscope'] == 'Airport/Enroute warning') print ' selected'; ?>>Airport/Enroute warning</option> |
|
162
|
|
- <option<?php if (isset($_COOKIE['notamscope']) && $_COOKIE['notamscope'] == 'Airport warning') print ' selected'; ?>>Airport warning</option> |
|
163
|
|
- <option<?php if (isset($_COOKIE['notamscope']) && $_COOKIE['notamscope'] == 'Navigation warning') print ' selected'; ?>>Navigation warning</option> |
|
164
|
|
- <option<?php if (isset($_COOKIE['notamscope']) && $_COOKIE['notamscope'] == 'Enroute warning') print ' selected'; ?>>Enroute warning</option> |
|
|
160
|
+ <option<?php if (!isset($_COOKIE['notamscope']) || $_COOKIE['notamscope'] == 'All') { |
|
|
161
|
+ print ' selected'; |
|
|
162
|
+} |
|
|
163
|
+?>>All</option> |
|
|
164
|
+ <option<?php if (isset($_COOKIE['notamscope']) && $_COOKIE['notamscope'] == 'Airport/Enroute warning') { |
|
|
165
|
+ print ' selected'; |
|
|
166
|
+} |
|
|
167
|
+?>>Airport/Enroute warning</option> |
|
|
168
|
+ <option<?php if (isset($_COOKIE['notamscope']) && $_COOKIE['notamscope'] == 'Airport warning') { |
|
|
169
|
+ print ' selected'; |
|
|
170
|
+} |
|
|
171
|
+?>>Airport warning</option> |
|
|
172
|
+ <option<?php if (isset($_COOKIE['notamscope']) && $_COOKIE['notamscope'] == 'Navigation warning') { |
|
|
173
|
+ print ' selected'; |
|
|
174
|
+} |
|
|
175
|
+?>>Navigation warning</option> |
|
|
176
|
+ <option<?php if (isset($_COOKIE['notamscope']) && $_COOKIE['notamscope'] == 'Enroute warning') { |
|
|
177
|
+ print ' selected'; |
|
|
178
|
+} |
|
|
179
|
+?>>Enroute warning</option> |
|
165
|
180
|
</select |
|
166
|
181
|
</li> |
|
167
|
182
|
</ul> |
|
@@ -189,7 +204,12 @@ discard block |
|
|
block discarded – undo |
|
189
|
204
|
<div class="form-group"> |
|
190
|
205
|
<label>From (UTC):</label> |
|
191
|
206
|
<div class='input-group date' id='datetimepicker1'> |
|
192
|
|
- <input type='text' name="start_date" class="form-control" value="<?php if (isset($_POST['start_date'])) print $_POST['start_date']; elseif (isset($_COOKIE['archive_begin'])) print date("m/d/Y h:i a",$_COOKIE['archive_begin']); ?>" required /> |
|
|
207
|
+ <input type='text' name="start_date" class="form-control" value="<?php if (isset($_POST['start_date'])) { |
|
|
208
|
+ print $_POST['start_date']; |
|
|
209
|
+} elseif (isset($_COOKIE['archive_begin'])) { |
|
|
210
|
+ print date("m/d/Y h:i a",$_COOKIE['archive_begin']); |
|
|
211
|
+} |
|
|
212
|
+?>" required /> |
|
193
|
213
|
<span class="input-group-addon"> |
|
194
|
214
|
<span class="glyphicon glyphicon-calendar"></span> |
|
195
|
215
|
</span> |
|
@@ -198,7 +218,12 @@ discard block |
|
|
block discarded – undo |
|
198
|
218
|
<div class="form-group"> |
|
199
|
219
|
<label>To (UTC):</label> |
|
200
|
220
|
<div class='input-group date' id='datetimepicker2'> |
|
201
|
|
- <input type='text' name="end_date" class="form-control" value="<?php if (isset($_POST['end_date'])) print $_POST['end_date']; elseif (isset($_COOKIE['archive_end'])) print date("m/d/Y h:i a",$_COOKIE['archive_end']); ?>" /> |
|
|
221
|
+ <input type='text' name="end_date" class="form-control" value="<?php if (isset($_POST['end_date'])) { |
|
|
222
|
+ print $_POST['end_date']; |
|
|
223
|
+} elseif (isset($_COOKIE['archive_end'])) { |
|
|
224
|
+ print date("m/d/Y h:i a",$_COOKIE['archive_end']); |
|
|
225
|
+} |
|
|
226
|
+?>" /> |
|
202
|
227
|
<span class="input-group-addon"> |
|
203
|
228
|
<span class="glyphicon glyphicon-calendar"></span> |
|
204
|
229
|
</span> |
|
@@ -224,8 +249,20 @@ discard block |
|
|
block discarded – undo |
|
224
|
249
|
|
|
225
|
250
|
<li><?php echo _("Playback speed:"); ?> |
|
226
|
251
|
<div class="range"> |
|
227
|
|
- <input type="range" min="0" max="50" step="1" name="archivespeed" onChange="archivespeedrange.value=value;" value="<?php if (isset($_POST['archivespeed'])) print $_POST['archivespeed']; elseif (isset($_COOKIE['archive_speed'])) print $_COOKIE['archive_speed']; else print '1'; ?>"> |
|
228
|
|
- <output id="archivespeedrange"><?php if (isset($_COOKIE['archive_speed'])) print $_COOKIE['archive_speed']; else print '1'; ?></output> |
|
|
252
|
+ <input type="range" min="0" max="50" step="1" name="archivespeed" onChange="archivespeedrange.value=value;" value="<?php if (isset($_POST['archivespeed'])) { |
|
|
253
|
+ print $_POST['archivespeed']; |
|
|
254
|
+} elseif (isset($_COOKIE['archive_speed'])) { |
|
|
255
|
+ print $_COOKIE['archive_speed']; |
|
|
256
|
+} else { |
|
|
257
|
+ print '1'; |
|
|
258
|
+} |
|
|
259
|
+?>"> |
|
|
260
|
+ <output id="archivespeedrange"><?php if (isset($_COOKIE['archive_speed'])) { |
|
|
261
|
+ print $_COOKIE['archive_speed']; |
|
|
262
|
+} else { |
|
|
263
|
+ print '1'; |
|
|
264
|
+} |
|
|
265
|
+?></output> |
|
229
|
266
|
</div> |
|
230
|
267
|
</li> |
|
231
|
268
|
<li><input type="submit" name="archive" value="Show archive" class="btn btn-primary" /></li> |
|
@@ -247,15 +284,27 @@ discard block |
|
|
block discarded – undo |
|
247
|
284
|
<li><?php echo _("Type of Map:"); ?> |
|
248
|
285
|
<select class="selectpicker" onchange="mapType(this);"> |
|
249
|
286
|
<?php |
|
250
|
|
- if (!isset($_COOKIE['MapType']) || $_COOKIE['MapType'] == '') $MapType = $globalMapProvider; |
|
251
|
|
- else $MapType = $_COOKIE['MapType']; |
|
|
287
|
+ if (!isset($_COOKIE['MapType']) || $_COOKIE['MapType'] == '') { |
|
|
288
|
+ $MapType = $globalMapProvider; |
|
|
289
|
+ } else { |
|
|
290
|
+ $MapType = $_COOKIE['MapType']; |
|
|
291
|
+ } |
|
252
|
292
|
?> |
|
253
|
293
|
<?php |
|
254
|
294
|
if (isset($globalBingMapKey) && $globalBingMapKey != '') { |
|
255
|
295
|
?> |
|
256
|
|
- <option value="Bing-Aerial"<?php if ($MapType == 'Bing-Aerial') print ' selected'; ?>>Bing-Aerial</option> |
|
257
|
|
- <option value="Bing-Hybrid"<?php if ($MapType == 'Bing-Hybrid') print ' selected'; ?>>Bing-Hybrid</option> |
|
258
|
|
- <option value="Bing-Road"<?php if ($MapType == 'Bing-Road') print ' selected'; ?>>Bing-Road</option> |
|
|
296
|
+ <option value="Bing-Aerial"<?php if ($MapType == 'Bing-Aerial') { |
|
|
297
|
+ print ' selected'; |
|
|
298
|
+} |
|
|
299
|
+?>>Bing-Aerial</option> |
|
|
300
|
+ <option value="Bing-Hybrid"<?php if ($MapType == 'Bing-Hybrid') { |
|
|
301
|
+ print ' selected'; |
|
|
302
|
+} |
|
|
303
|
+?>>Bing-Hybrid</option> |
|
|
304
|
+ <option value="Bing-Road"<?php if ($MapType == 'Bing-Road') { |
|
|
305
|
+ print ' selected'; |
|
|
306
|
+} |
|
|
307
|
+?>>Bing-Road</option> |
|
259
|
308
|
<?php |
|
260
|
309
|
} |
|
261
|
310
|
?> |
|
@@ -265,56 +314,131 @@ discard block |
|
|
block discarded – undo |
|
265
|
314
|
<?php |
|
266
|
315
|
if (isset($globalHereappId) && $globalHereappId != '' && isset($globalHereappCode) && $globalHereappCode != '') { |
|
267
|
316
|
?> |
|
268
|
|
- <option value="Here-Aerial"<?php if ($MapType == 'Here') print ' selected'; ?>>Here-Aerial</option> |
|
269
|
|
- <option value="Here-Hybrid"<?php if ($MapType == 'Here') print ' selected'; ?>>Here-Hybrid</option> |
|
270
|
|
- <option value="Here-Road"<?php if ($MapType == 'Here') print ' selected'; ?>>Here-Road</option> |
|
|
317
|
+ <option value="Here-Aerial"<?php if ($MapType == 'Here') { |
|
|
318
|
+ print ' selected'; |
|
|
319
|
+} |
|
|
320
|
+?>>Here-Aerial</option> |
|
|
321
|
+ <option value="Here-Hybrid"<?php if ($MapType == 'Here') { |
|
|
322
|
+ print ' selected'; |
|
|
323
|
+} |
|
|
324
|
+?>>Here-Hybrid</option> |
|
|
325
|
+ <option value="Here-Road"<?php if ($MapType == 'Here') { |
|
|
326
|
+ print ' selected'; |
|
|
327
|
+} |
|
|
328
|
+?>>Here-Road</option> |
|
271
|
329
|
<?php |
|
272
|
330
|
} |
|
273
|
331
|
?> |
|
274
|
332
|
<?php |
|
275
|
333
|
if (isset($globalGoogleAPIKey) && $globalGoogleAPIKey != '') { |
|
276
|
334
|
?> |
|
277
|
|
- <option value="Google-Roadmap"<?php if ($MapType == 'Google-Roadmap') print ' selected'; ?>>Google Roadmap</option> |
|
278
|
|
- <option value="Google-Satellite"<?php if ($MapType == 'Google-Satellite') print ' selected'; ?>>Google Satellite</option> |
|
279
|
|
- <option value="Google-Hybrid"<?php if ($MapType == 'Google-Hybrid') print ' selected'; ?>>Google Hybrid</option> |
|
280
|
|
- <option value="Google-Terrain"<?php if ($MapType == 'Google-Terrain') print ' selected'; ?>>Google Terrain</option> |
|
|
335
|
+ <option value="Google-Roadmap"<?php if ($MapType == 'Google-Roadmap') { |
|
|
336
|
+ print ' selected'; |
|
|
337
|
+} |
|
|
338
|
+?>>Google Roadmap</option> |
|
|
339
|
+ <option value="Google-Satellite"<?php if ($MapType == 'Google-Satellite') { |
|
|
340
|
+ print ' selected'; |
|
|
341
|
+} |
|
|
342
|
+?>>Google Satellite</option> |
|
|
343
|
+ <option value="Google-Hybrid"<?php if ($MapType == 'Google-Hybrid') { |
|
|
344
|
+ print ' selected'; |
|
|
345
|
+} |
|
|
346
|
+?>>Google Hybrid</option> |
|
|
347
|
+ <option value="Google-Terrain"<?php if ($MapType == 'Google-Terrain') { |
|
|
348
|
+ print ' selected'; |
|
|
349
|
+} |
|
|
350
|
+?>>Google Terrain</option> |
|
281
|
351
|
<?php |
|
282
|
352
|
} |
|
283
|
353
|
?> |
|
284
|
354
|
<?php |
|
285
|
355
|
if (isset($globalMapQuestKey) && $globalMapQuestKey != '') { |
|
286
|
356
|
?> |
|
287
|
|
- <option value="MapQuest-OSM"<?php if ($MapType == 'MapQuest-OSM') print ' selected'; ?>>MapQuest-OSM</option> |
|
288
|
|
- <option value="MapQuest-Aerial"<?php if ($MapType == 'MapQuest-Aerial') print ' selected'; ?>>MapQuest-Aerial</option> |
|
289
|
|
- <option value="MapQuest-Hybrid"<?php if ($MapType == 'MapQuest-Hybrid') print ' selected'; ?>>MapQuest-Hybrid</option> |
|
|
357
|
+ <option value="MapQuest-OSM"<?php if ($MapType == 'MapQuest-OSM') { |
|
|
358
|
+ print ' selected'; |
|
|
359
|
+} |
|
|
360
|
+?>>MapQuest-OSM</option> |
|
|
361
|
+ <option value="MapQuest-Aerial"<?php if ($MapType == 'MapQuest-Aerial') { |
|
|
362
|
+ print ' selected'; |
|
|
363
|
+} |
|
|
364
|
+?>>MapQuest-Aerial</option> |
|
|
365
|
+ <option value="MapQuest-Hybrid"<?php if ($MapType == 'MapQuest-Hybrid') { |
|
|
366
|
+ print ' selected'; |
|
|
367
|
+} |
|
|
368
|
+?>>MapQuest-Hybrid</option> |
|
290
|
369
|
<?php |
|
291
|
370
|
} |
|
292
|
371
|
?> |
|
293
|
|
- <option value="Yandex"<?php if ($MapType == 'Yandex') print ' selected'; ?>>Yandex</option> |
|
|
372
|
+ <option value="Yandex"<?php if ($MapType == 'Yandex') { |
|
|
373
|
+ print ' selected'; |
|
|
374
|
+} |
|
|
375
|
+?>>Yandex</option> |
|
294
|
376
|
<?php |
|
295
|
377
|
} |
|
296
|
378
|
?> |
|
297
|
379
|
<?php |
|
298
|
380
|
if (isset($globalMapboxToken) && $globalMapboxToken != '') { |
|
299
|
|
- if (!isset($_COOKIE['MapTypeId'])) $MapBoxId = 'default'; |
|
300
|
|
- else $MapBoxId = $_COOKIE['MapTypeId']; |
|
|
381
|
+ if (!isset($_COOKIE['MapTypeId'])) { |
|
|
382
|
+ $MapBoxId = 'default'; |
|
|
383
|
+ } else { |
|
|
384
|
+ $MapBoxId = $_COOKIE['MapTypeId']; |
|
|
385
|
+ } |
|
301
|
386
|
?> |
|
302
|
|
- <option value="Mapbox-default"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'default') print ' selected'; ?>>Mapbox default</option> |
|
303
|
|
- <option value="Mapbox-mapbox.streets"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.streets') print ' selected'; ?>>Mapbox streets</option> |
|
304
|
|
- <option value="Mapbox-mapbox.light"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.light') print ' selected'; ?>>Mapbox light</option> |
|
305
|
|
- <option value="Mapbox-mapbox.dark"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.dark') print ' selected'; ?>>Mapbox dark</option> |
|
306
|
|
- <option value="Mapbox-mapbox.satellite"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.satellite') print ' selected'; ?>>Mapbox satellite</option> |
|
307
|
|
- <option value="Mapbox-mapbox.streets-satellite"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.streets-satellite') print ' selected'; ?>>Mapbox streets-satellite</option> |
|
308
|
|
- <option value="Mapbox-mapbox.streets-basic"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.streets-basic') print ' selected'; ?>>Mapbox streets-basic</option> |
|
309
|
|
- <option value="Mapbox-mapbox.comic"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.comic') print ' selected'; ?>>Mapbox comic</option> |
|
310
|
|
- <option value="Mapbox-mapbox.outdoors"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.outdoors') print ' selected'; ?>>Mapbox outdoors</option> |
|
311
|
|
- <option value="Mapbox-mapbox.pencil"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.pencil') print ' selected'; ?>>Mapbox pencil</option> |
|
312
|
|
- <option value="Mapbox-mapbox.pirates"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.pirates') print ' selected'; ?>>Mapbox pirates</option> |
|
313
|
|
- <option value="Mapbox-mapbox.emerald"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.emerald') print ' selected'; ?>>Mapbox emerald</option> |
|
|
387
|
+ <option value="Mapbox-default"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'default') { |
|
|
388
|
+ print ' selected'; |
|
|
389
|
+} |
|
|
390
|
+?>>Mapbox default</option> |
|
|
391
|
+ <option value="Mapbox-mapbox.streets"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.streets') { |
|
|
392
|
+ print ' selected'; |
|
|
393
|
+} |
|
|
394
|
+?>>Mapbox streets</option> |
|
|
395
|
+ <option value="Mapbox-mapbox.light"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.light') { |
|
|
396
|
+ print ' selected'; |
|
|
397
|
+} |
|
|
398
|
+?>>Mapbox light</option> |
|
|
399
|
+ <option value="Mapbox-mapbox.dark"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.dark') { |
|
|
400
|
+ print ' selected'; |
|
|
401
|
+} |
|
|
402
|
+?>>Mapbox dark</option> |
|
|
403
|
+ <option value="Mapbox-mapbox.satellite"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.satellite') { |
|
|
404
|
+ print ' selected'; |
|
|
405
|
+} |
|
|
406
|
+?>>Mapbox satellite</option> |
|
|
407
|
+ <option value="Mapbox-mapbox.streets-satellite"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.streets-satellite') { |
|
|
408
|
+ print ' selected'; |
|
|
409
|
+} |
|
|
410
|
+?>>Mapbox streets-satellite</option> |
|
|
411
|
+ <option value="Mapbox-mapbox.streets-basic"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.streets-basic') { |
|
|
412
|
+ print ' selected'; |
|
|
413
|
+} |
|
|
414
|
+?>>Mapbox streets-basic</option> |
|
|
415
|
+ <option value="Mapbox-mapbox.comic"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.comic') { |
|
|
416
|
+ print ' selected'; |
|
|
417
|
+} |
|
|
418
|
+?>>Mapbox comic</option> |
|
|
419
|
+ <option value="Mapbox-mapbox.outdoors"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.outdoors') { |
|
|
420
|
+ print ' selected'; |
|
|
421
|
+} |
|
|
422
|
+?>>Mapbox outdoors</option> |
|
|
423
|
+ <option value="Mapbox-mapbox.pencil"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.pencil') { |
|
|
424
|
+ print ' selected'; |
|
|
425
|
+} |
|
|
426
|
+?>>Mapbox pencil</option> |
|
|
427
|
+ <option value="Mapbox-mapbox.pirates"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.pirates') { |
|
|
428
|
+ print ' selected'; |
|
|
429
|
+} |
|
|
430
|
+?>>Mapbox pirates</option> |
|
|
431
|
+ <option value="Mapbox-mapbox.emerald"<?php if ($MapType == 'Mapbox' && $MapBoxId == 'mapbox.emerald') { |
|
|
432
|
+ print ' selected'; |
|
|
433
|
+} |
|
|
434
|
+?>>Mapbox emerald</option> |
|
314
|
435
|
<?php |
|
315
|
436
|
} |
|
316
|
437
|
?> |
|
317
|
|
- <option value="OpenStreetMap"<?php if ($MapType == 'OpenStreetMap') print ' selected'; ?>>OpenStreetMap</option> |
|
|
438
|
+ <option value="OpenStreetMap"<?php if ($MapType == 'OpenStreetMap') { |
|
|
439
|
+ print ' selected'; |
|
|
440
|
+} |
|
|
441
|
+?>>OpenStreetMap</option> |
|
318
|
442
|
</select> |
|
319
|
443
|
</li> |
|
320
|
444
|
<?php |
|
@@ -322,10 +446,22 @@ discard block |
|
|
block discarded – undo |
|
322
|
446
|
?> |
|
323
|
447
|
<li><?php echo _("Type of Terrain:"); ?> |
|
324
|
448
|
<select class="selectpicker" onchange="terrainType(this);"> |
|
325
|
|
- <option value="stk"<?php if (!isset($_COOKIE['MapTerrain']) || $_COOKIE['MapTerrain'] == 'stk') print ' selected'; ?>>stk terrain</option> |
|
326
|
|
- <option value="ellipsoid"<?php if (isset($_COOKIE['MapTerrain']) && $_COOKIE['MapTerrain'] == 'ellipsoid') print ' selected';?>>ellipsoid</option> |
|
327
|
|
- <option value="vrterrain"<?php if (isset($_COOKIE['MapTerrain']) && $_COOKIE['MapTerrain'] == 'vrterrain') print ' selected';?>>vr terrain</option> |
|
328
|
|
- <option value="articdem"<?php if (isset($_COOKIE['MapTerrain']) && $_COOKIE['MapTerrain'] == 'articdem') print ' selected';?>>ArticDEM</option> |
|
|
449
|
+ <option value="stk"<?php if (!isset($_COOKIE['MapTerrain']) || $_COOKIE['MapTerrain'] == 'stk') { |
|
|
450
|
+ print ' selected'; |
|
|
451
|
+} |
|
|
452
|
+?>>stk terrain</option> |
|
|
453
|
+ <option value="ellipsoid"<?php if (isset($_COOKIE['MapTerrain']) && $_COOKIE['MapTerrain'] == 'ellipsoid') { |
|
|
454
|
+ print ' selected'; |
|
|
455
|
+} |
|
|
456
|
+?>>ellipsoid</option> |
|
|
457
|
+ <option value="vrterrain"<?php if (isset($_COOKIE['MapTerrain']) && $_COOKIE['MapTerrain'] == 'vrterrain') { |
|
|
458
|
+ print ' selected'; |
|
|
459
|
+} |
|
|
460
|
+?>>vr terrain</option> |
|
|
461
|
+ <option value="articdem"<?php if (isset($_COOKIE['MapTerrain']) && $_COOKIE['MapTerrain'] == 'articdem') { |
|
|
462
|
+ print ' selected'; |
|
|
463
|
+} |
|
|
464
|
+?>>ArticDEM</option> |
|
329
|
465
|
</select> |
|
330
|
466
|
</li> |
|
331
|
467
|
<?php |
|
@@ -335,22 +471,52 @@ discard block |
|
|
block discarded – undo |
|
335
|
471
|
if (!isset($_COOKIE['MapFormat']) || $_COOKIE['MapFormat'] != '3d') { |
|
336
|
472
|
?> |
|
337
|
473
|
|
|
338
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="flightpopup" value="1" onclick="clickFlightPopup(this)" <?php if (isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true') print 'checked'; ?> ><?php echo _("Display flight info as popup"); ?></label></div></li> |
|
339
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="flightpath" value="1" onclick="clickFlightPath(this)" <?php if ((isset($_COOKIE['flightpath']) && $_COOKIE['flightpath'] == 'true')) print 'checked'; ?> ><?php echo _("Display flight path"); ?></label></div></li> |
|
340
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="flightroute" value="1" onclick="clickFlightRoute(this)" <?php if ((isset($_COOKIE['MapRoute']) && $_COOKIE['MapRoute'] == 'true') || (isset($globalMapRoute) && $globalMapRoute)) print 'checked'; ?> ><?php echo _("Display flight route on click"); ?></label></div></li> |
|
341
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="flightremainingroute" value="1" onclick="clickFlightRemainingRoute(this)" <?php if ((isset($_COOKIE['MapRemainingRoute']) && $_COOKIE['MapRemainingRoute'] == 'true') || !isset($_COOKIE['MapRemainingRoute']) || (isset($globalMapRemainingRoute) && $globalMapRemainingRoute)) print 'checked'; ?> ><?php echo _("Display flight remaining route on click"); ?></label></div></li> |
|
342
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="flightestimation" value="1" onclick="clickFlightEstimation(this)" <?php if ((isset($_COOKIE['flightestimation']) && $_COOKIE['flightestimation'] == 'true') || (!isset($_COOKIE['flightestimation']) && !isset($globalMapEstimation)) || (!isset($_COOKIE['flightestimation']) && isset($globalMapEstimation) && $globalMapEstimation)) print 'checked'; ?> ><?php echo _("Planes animate between updates"); ?></label></div></li> |
|
|
474
|
+ <li><div class="checkbox"><label><input type="checkbox" name="flightpopup" value="1" onclick="clickFlightPopup(this)" <?php if (isset($_COOKIE['flightpopup']) && $_COOKIE['flightpopup'] == 'true') { |
|
|
475
|
+ print 'checked'; |
|
|
476
|
+} |
|
|
477
|
+?> ><?php echo _("Display flight info as popup"); ?></label></div></li> |
|
|
478
|
+ <li><div class="checkbox"><label><input type="checkbox" name="flightpath" value="1" onclick="clickFlightPath(this)" <?php if ((isset($_COOKIE['flightpath']) && $_COOKIE['flightpath'] == 'true')) { |
|
|
479
|
+ print 'checked'; |
|
|
480
|
+} |
|
|
481
|
+?> ><?php echo _("Display flight path"); ?></label></div></li> |
|
|
482
|
+ <li><div class="checkbox"><label><input type="checkbox" name="flightroute" value="1" onclick="clickFlightRoute(this)" <?php if ((isset($_COOKIE['MapRoute']) && $_COOKIE['MapRoute'] == 'true') || (isset($globalMapRoute) && $globalMapRoute)) { |
|
|
483
|
+ print 'checked'; |
|
|
484
|
+} |
|
|
485
|
+?> ><?php echo _("Display flight route on click"); ?></label></div></li> |
|
|
486
|
+ <li><div class="checkbox"><label><input type="checkbox" name="flightremainingroute" value="1" onclick="clickFlightRemainingRoute(this)" <?php if ((isset($_COOKIE['MapRemainingRoute']) && $_COOKIE['MapRemainingRoute'] == 'true') || !isset($_COOKIE['MapRemainingRoute']) || (isset($globalMapRemainingRoute) && $globalMapRemainingRoute)) { |
|
|
487
|
+ print 'checked'; |
|
|
488
|
+} |
|
|
489
|
+?> ><?php echo _("Display flight remaining route on click"); ?></label></div></li> |
|
|
490
|
+ <li><div class="checkbox"><label><input type="checkbox" name="flightestimation" value="1" onclick="clickFlightEstimation(this)" <?php if ((isset($_COOKIE['flightestimation']) && $_COOKIE['flightestimation'] == 'true') || (!isset($_COOKIE['flightestimation']) && !isset($globalMapEstimation)) || (!isset($_COOKIE['flightestimation']) && isset($globalMapEstimation) && $globalMapEstimation)) { |
|
|
491
|
+ print 'checked'; |
|
|
492
|
+} |
|
|
493
|
+?> ><?php echo _("Planes animate between updates"); ?></label></div></li> |
|
343
|
494
|
<?php |
|
344
|
495
|
} |
|
345
|
496
|
?> |
|
346
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="displayairports" value="1" onclick="clickDisplayAirports(this)" <?php if (isset($_COOKIE['displayairports']) && $_COOKIE['displayairports'] == 'true' || !isset($_COOKIE['displayairports'])) print 'checked'; ?> ><?php echo _("Display airports on map"); ?></label></div></li> |
|
347
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="displaygroundstation" value="1" onclick="clickDisplayGroundStation(this)" <?php if ((isset($_COOKIE['show_GroundStation']) && $_COOKIE['show_GroundStation'] == 'true') || (!isset($_COOKIE['show_GroundStation']) && (!isset($globalMapGroundStation) || $globalMapGroundStation === TRUE))) print 'checked'; ?> ><?php echo _("Display ground station on map"); ?></label></div></li> |
|
348
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="displayweatherstation" value="1" onclick="clickDisplayWeatherStation(this)" <?php if ((isset($_COOKIE['show_WeatherStation']) && $_COOKIE['show_WeatherStation'] == 'true') || (!isset($_COOKIE['show_WeatherStation']) && (!isset($globalMapWeatherStation) || $globalMapWeatherStation === TRUE))) print 'checked'; ?> ><?php echo _("Display weather station on map"); ?></label></div></li> |
|
349
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="displaylightning" value="1" onclick="clickDisplayLightning(this)" <?php if ((isset($_COOKIE['show_Lightning']) && $_COOKIE['show_Lightning'] == 'true') || (!isset($_COOKIE['show_Lightning']) && (!isset($globalMapLightning) || $globalMapLightning === TRUE))) print 'checked'; ?> ><?php echo _("Display lightning on map"); ?></label></div></li> |
|
|
497
|
+ <li><div class="checkbox"><label><input type="checkbox" name="displayairports" value="1" onclick="clickDisplayAirports(this)" <?php if (isset($_COOKIE['displayairports']) && $_COOKIE['displayairports'] == 'true' || !isset($_COOKIE['displayairports'])) { |
|
|
498
|
+ print 'checked'; |
|
|
499
|
+} |
|
|
500
|
+?> ><?php echo _("Display airports on map"); ?></label></div></li> |
|
|
501
|
+ <li><div class="checkbox"><label><input type="checkbox" name="displaygroundstation" value="1" onclick="clickDisplayGroundStation(this)" <?php if ((isset($_COOKIE['show_GroundStation']) && $_COOKIE['show_GroundStation'] == 'true') || (!isset($_COOKIE['show_GroundStation']) && (!isset($globalMapGroundStation) || $globalMapGroundStation === TRUE))) { |
|
|
502
|
+ print 'checked'; |
|
|
503
|
+} |
|
|
504
|
+?> ><?php echo _("Display ground station on map"); ?></label></div></li> |
|
|
505
|
+ <li><div class="checkbox"><label><input type="checkbox" name="displayweatherstation" value="1" onclick="clickDisplayWeatherStation(this)" <?php if ((isset($_COOKIE['show_WeatherStation']) && $_COOKIE['show_WeatherStation'] == 'true') || (!isset($_COOKIE['show_WeatherStation']) && (!isset($globalMapWeatherStation) || $globalMapWeatherStation === TRUE))) { |
|
|
506
|
+ print 'checked'; |
|
|
507
|
+} |
|
|
508
|
+?> ><?php echo _("Display weather station on map"); ?></label></div></li> |
|
|
509
|
+ <li><div class="checkbox"><label><input type="checkbox" name="displaylightning" value="1" onclick="clickDisplayLightning(this)" <?php if ((isset($_COOKIE['show_Lightning']) && $_COOKIE['show_Lightning'] == 'true') || (!isset($_COOKIE['show_Lightning']) && (!isset($globalMapLightning) || $globalMapLightning === TRUE))) { |
|
|
510
|
+ print 'checked'; |
|
|
511
|
+} |
|
|
512
|
+?> ><?php echo _("Display lightning on map"); ?></label></div></li> |
|
350
|
513
|
<?php |
|
351
|
514
|
if (isset($_COOKIE['MapFormat']) && $_COOKIE['MapFormat'] == '3d') { |
|
352
|
515
|
?> |
|
353
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="displayminimap" value="1" onclick="clickDisplayMinimap(this)" <?php if (!isset($_COOKIE['displayminimap']) || (isset($_COOKIE['displayminimap']) && $_COOKIE['displayminimap'] == 'true')) print 'checked'; ?> ><?php echo _("Show mini-map"); ?></label></div></li> |
|
|
516
|
+ <li><div class="checkbox"><label><input type="checkbox" name="displayminimap" value="1" onclick="clickDisplayMinimap(this)" <?php if (!isset($_COOKIE['displayminimap']) || (isset($_COOKIE['displayminimap']) && $_COOKIE['displayminimap'] == 'true')) { |
|
|
517
|
+ print 'checked'; |
|
|
518
|
+} |
|
|
519
|
+?> ><?php echo _("Show mini-map"); ?></label></div></li> |
|
354
|
520
|
<?php |
|
355
|
521
|
} |
|
356
|
522
|
if (time() > mktime(0,0,0,12,1,date("Y")) && time() < mktime(0,0,0,12,31,date("Y"))) { |
|
@@ -364,17 +530,25 @@ discard block |
|
|
block discarded – undo |
|
364
|
530
|
if (function_exists('array_column')) { |
|
365
|
531
|
if (array_search(TRUE, array_column($globalSources, 'sourcestats')) !== FALSE) { |
|
366
|
532
|
?> |
|
367
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="flightpolar" value="1" onclick="clickPolar(this)" <?php if ((isset($_COOKIE['polar']) && $_COOKIE['polar'] == 'true')) print 'checked'; ?> ><?php echo _("Display polar on map"); ?></label></div></li> |
|
|
533
|
+ <li><div class="checkbox"><label><input type="checkbox" name="flightpolar" value="1" onclick="clickPolar(this)" <?php if ((isset($_COOKIE['polar']) && $_COOKIE['polar'] == 'true')) { |
|
|
534
|
+ print 'checked'; |
|
|
535
|
+} |
|
|
536
|
+?> ><?php echo _("Display polar on map"); ?></label></div></li> |
|
368
|
537
|
<?php |
|
369
|
538
|
} |
|
370
|
539
|
} elseif (isset($globalSources)) { |
|
371
|
540
|
$dispolar = false; |
|
372
|
541
|
foreach ($globalSources as $testsource) { |
|
373
|
|
- if (isset($globalSources['sourcestats']) && $globalSources['sourcestats'] !== FALSE) $dispolar = true; |
|
|
542
|
+ if (isset($globalSources['sourcestats']) && $globalSources['sourcestats'] !== FALSE) { |
|
|
543
|
+ $dispolar = true; |
|
|
544
|
+ } |
|
374
|
545
|
} |
|
375
|
546
|
if ($dispolar) { |
|
376
|
547
|
?> |
|
377
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="flightpolar" value="1" onclick="clickPolar(this)" <?php if ((isset($_COOKIE['polar']) && $_COOKIE['polar'] == 'true')) print 'checked'; ?> ><?php echo _("Display polar on map"); ?></label></div></li> |
|
|
548
|
+ <li><div class="checkbox"><label><input type="checkbox" name="flightpolar" value="1" onclick="clickPolar(this)" <?php if ((isset($_COOKIE['polar']) && $_COOKIE['polar'] == 'true')) { |
|
|
549
|
+ print 'checked'; |
|
|
550
|
+} |
|
|
551
|
+?> ><?php echo _("Display polar on map"); ?></label></div></li> |
|
378
|
552
|
<?php |
|
379
|
553
|
} |
|
380
|
554
|
} |
|
@@ -387,12 +561,22 @@ discard block |
|
|
block discarded – undo |
|
387
|
561
|
if (!isset($globalAircraft) || $globalAircraft === TRUE) { |
|
388
|
562
|
if (extension_loaded('gd') && function_exists('gd_info')) { |
|
389
|
563
|
?> |
|
390
|
|
- <li><input type="checkbox" name="aircraftcoloraltitude" value="1" onclick="iconColorAltitude(this)" <?php if (isset($_COOKIE['IconColorAltitude']) && $_COOKIE['IconColorAltitude'] == 'true') print 'checked'; ?> ><?php echo _("Aircraft icon color based on altitude"); ?></li> |
|
|
564
|
+ <li><input type="checkbox" name="aircraftcoloraltitude" value="1" onclick="iconColorAltitude(this)" <?php if (isset($_COOKIE['IconColorAltitude']) && $_COOKIE['IconColorAltitude'] == 'true') { |
|
|
565
|
+ print 'checked'; |
|
|
566
|
+} |
|
|
567
|
+?> ><?php echo _("Aircraft icon color based on altitude"); ?></li> |
|
391
|
568
|
<?php |
|
392
|
569
|
if (!isset($_COOKIE['IconColorAltitude']) || $_COOKIE['IconColorAltitude'] == 'false') { |
|
393
|
570
|
?> |
|
394
|
571
|
<li><?php echo _("Aircraft icon color:"); ?> |
|
395
|
|
- <input type="color" name="aircraftcolor" id="html5colorpicker" onchange="iconColor(aircraftcolor.value);" value="#<?php if (isset($_COOKIE['IconColor'])) print $_COOKIE['IconColor']; elseif (isset($globalAircraftIconColor)) print $globalAircraftIconColor; else print '1a3151'; ?>"> |
|
|
572
|
+ <input type="color" name="aircraftcolor" id="html5colorpicker" onchange="iconColor(aircraftcolor.value);" value="#<?php if (isset($_COOKIE['IconColor'])) { |
|
|
573
|
+ print $_COOKIE['IconColor']; |
|
|
574
|
+} elseif (isset($globalAircraftIconColor)) { |
|
|
575
|
+ print $globalAircraftIconColor; |
|
|
576
|
+} else { |
|
|
577
|
+ print '1a3151'; |
|
|
578
|
+} |
|
|
579
|
+?>"> |
|
396
|
580
|
</li> |
|
397
|
581
|
<?php |
|
398
|
582
|
} |
|
@@ -404,7 +588,14 @@ discard block |
|
|
block discarded – undo |
|
404
|
588
|
if (extension_loaded('gd') && function_exists('gd_info')) { |
|
405
|
589
|
?> |
|
406
|
590
|
<li><?php echo _("Marine icon color:"); ?> |
|
407
|
|
- <input type="color" name="marinecolor" id="html5colorpicker" onchange="MarineiconColor(marinecolor.value);" value="#<?php if (isset($_COOKIE['MarineIconColor'])) print $_COOKIE['MarineIconColor']; elseif (isset($globalMarineIconColor)) print $globalMarineIconColor; else print '1a3151'; ?>"> |
|
|
591
|
+ <input type="color" name="marinecolor" id="html5colorpicker" onchange="MarineiconColor(marinecolor.value);" value="#<?php if (isset($_COOKIE['MarineIconColor'])) { |
|
|
592
|
+ print $_COOKIE['MarineIconColor']; |
|
|
593
|
+} elseif (isset($globalMarineIconColor)) { |
|
|
594
|
+ print $globalMarineIconColor; |
|
|
595
|
+} else { |
|
|
596
|
+ print '1a3151'; |
|
|
597
|
+} |
|
|
598
|
+?>"> |
|
408
|
599
|
</li> |
|
409
|
600
|
<?php |
|
410
|
601
|
} |
|
@@ -415,7 +606,14 @@ discard block |
|
|
block discarded – undo |
|
415
|
606
|
if (extension_loaded('gd') && function_exists('gd_info')) { |
|
416
|
607
|
?> |
|
417
|
608
|
<li><?php echo _("Tracker icon color:"); ?> |
|
418
|
|
- <input type="color" name="trackercolor" id="html5colorpicker" onchange="TrackericonColor(trackercolor.value);" value="#<?php if (isset($_COOKIE['TrackerIconColor'])) print $_COOKIE['TrackerIconColor']; elseif (isset($globalTrackerIconColor)) print $globalTrackerIconColor; else print '1a3151'; ?>"> |
|
|
609
|
+ <input type="color" name="trackercolor" id="html5colorpicker" onchange="TrackericonColor(trackercolor.value);" value="#<?php if (isset($_COOKIE['TrackerIconColor'])) { |
|
|
610
|
+ print $_COOKIE['TrackerIconColor']; |
|
|
611
|
+} elseif (isset($globalTrackerIconColor)) { |
|
|
612
|
+ print $globalTrackerIconColor; |
|
|
613
|
+} else { |
|
|
614
|
+ print '1a3151'; |
|
|
615
|
+} |
|
|
616
|
+?>"> |
|
419
|
617
|
</li> |
|
420
|
618
|
<?php |
|
421
|
619
|
} |
|
@@ -426,8 +624,22 @@ discard block |
|
|
block discarded – undo |
|
426
|
624
|
?> |
|
427
|
625
|
<li><?php echo _("Show airport icon at zoom level:"); ?> |
|
428
|
626
|
<div class="range"> |
|
429
|
|
- <input type="range" min="0" max="19" step="1" name="airportzoom" onchange="range.value=value;airportDisplayZoom(airportzoom.value);" value="<?php if (isset($_COOKIE['AirportZoom'])) print $_COOKIE['AirportZoom']; elseif (isset($globalAirportZoom)) print $globalAirportZoom; else print '7'; ?>"> |
|
430
|
|
- <output id="range"><?php if (isset($_COOKIE['AirportZoom'])) print $_COOKIE['AirportZoom']; elseif (isset($globalAirportZoom)) print $globalAirportZoom; else print '7'; ?></output> |
|
|
627
|
+ <input type="range" min="0" max="19" step="1" name="airportzoom" onchange="range.value=value;airportDisplayZoom(airportzoom.value);" value="<?php if (isset($_COOKIE['AirportZoom'])) { |
|
|
628
|
+ print $_COOKIE['AirportZoom']; |
|
|
629
|
+} elseif (isset($globalAirportZoom)) { |
|
|
630
|
+ print $globalAirportZoom; |
|
|
631
|
+} else { |
|
|
632
|
+ print '7'; |
|
|
633
|
+} |
|
|
634
|
+?>"> |
|
|
635
|
+ <output id="range"><?php if (isset($_COOKIE['AirportZoom'])) { |
|
|
636
|
+ print $_COOKIE['AirportZoom']; |
|
|
637
|
+} elseif (isset($globalAirportZoom)) { |
|
|
638
|
+ print $globalAirportZoom; |
|
|
639
|
+} else { |
|
|
640
|
+ print '7'; |
|
|
641
|
+} |
|
|
642
|
+?></output> |
|
431
|
643
|
</div> |
|
432
|
644
|
</li> |
|
433
|
645
|
<?php |
|
@@ -439,9 +651,19 @@ discard block |
|
|
block discarded – undo |
|
439
|
651
|
<?php |
|
440
|
652
|
if (!isset($globalAircraft) || $globalAircraft === TRUE) { |
|
441
|
653
|
?> |
|
442
|
|
- <li><input type="checkbox" name="aircraftcolorforce" value="1" onclick="iconColorForce(this)" <?php if (isset($_COOKIE['IconColorForce']) && $_COOKIE['IconColorForce'] == 'true') print 'checked'; ?> ><?php echo _("Force Aircraft color"); ?></li> |
|
|
654
|
+ <li><input type="checkbox" name="aircraftcolorforce" value="1" onclick="iconColorForce(this)" <?php if (isset($_COOKIE['IconColorForce']) && $_COOKIE['IconColorForce'] == 'true') { |
|
|
655
|
+ print 'checked'; |
|
|
656
|
+} |
|
|
657
|
+?> ><?php echo _("Force Aircraft color"); ?></li> |
|
443
|
658
|
<li><?php echo _("Aircraft icon color:"); ?> |
|
444
|
|
- <input type="color" name="aircraftcolor" id="html5colorpicker" onchange="iconColor(aircraftcolor.value);" value="#<?php if (isset($_COOKIE['IconColor'])) print $_COOKIE['IconColor']; elseif (isset($globalAircraftIconColor)) print $globalAircraftIconColor; else print 'ff0000'; ?>"> |
|
|
659
|
+ <input type="color" name="aircraftcolor" id="html5colorpicker" onchange="iconColor(aircraftcolor.value);" value="#<?php if (isset($_COOKIE['IconColor'])) { |
|
|
660
|
+ print $_COOKIE['IconColor']; |
|
|
661
|
+} elseif (isset($globalAircraftIconColor)) { |
|
|
662
|
+ print $globalAircraftIconColor; |
|
|
663
|
+} else { |
|
|
664
|
+ print 'ff0000'; |
|
|
665
|
+} |
|
|
666
|
+?>"> |
|
445
|
667
|
</li> |
|
446
|
668
|
<?php |
|
447
|
669
|
} |
|
@@ -449,9 +671,19 @@ discard block |
|
|
block discarded – undo |
|
449
|
671
|
<?php |
|
450
|
672
|
if (isset($globalMarine) && $globalMarine === TRUE) { |
|
451
|
673
|
?> |
|
452
|
|
- <li><input type="checkbox" name="marinecolorforce" value="1" onclick="MarineiconColorForce(this)" <?php if (isset($_COOKIE['MarineIconColorForce']) && $_COOKIE['MarineIconColorForce'] == 'true') print 'checked'; ?> ><?php echo _("Force Marine color"); ?></li> |
|
|
674
|
+ <li><input type="checkbox" name="marinecolorforce" value="1" onclick="MarineiconColorForce(this)" <?php if (isset($_COOKIE['MarineIconColorForce']) && $_COOKIE['MarineIconColorForce'] == 'true') { |
|
|
675
|
+ print 'checked'; |
|
|
676
|
+} |
|
|
677
|
+?> ><?php echo _("Force Marine color"); ?></li> |
|
453
|
678
|
<li><?php echo _("Marine icon color:"); ?> |
|
454
|
|
- <input type="color" name="marinecolor" id="html5colorpicker" onchange="MarineiconColor(marinecolor.value);" value="#<?php if (isset($_COOKIE['MarineIconColor'])) print $_COOKIE['MarineIconColor']; elseif (isset($globalMarineIconColor)) print $globalMarineIconColor; else print 'ff0000'; ?>"> |
|
|
679
|
+ <input type="color" name="marinecolor" id="html5colorpicker" onchange="MarineiconColor(marinecolor.value);" value="#<?php if (isset($_COOKIE['MarineIconColor'])) { |
|
|
680
|
+ print $_COOKIE['MarineIconColor']; |
|
|
681
|
+} elseif (isset($globalMarineIconColor)) { |
|
|
682
|
+ print $globalMarineIconColor; |
|
|
683
|
+} else { |
|
|
684
|
+ print 'ff0000'; |
|
|
685
|
+} |
|
|
686
|
+?>"> |
|
455
|
687
|
</li> |
|
456
|
688
|
<?php |
|
457
|
689
|
} |
|
@@ -459,9 +691,19 @@ discard block |
|
|
block discarded – undo |
|
459
|
691
|
<?php |
|
460
|
692
|
if (isset($globalTracker) && $globalTracker === TRUE) { |
|
461
|
693
|
?> |
|
462
|
|
- <li><input type="checkbox" name="trackercolorforce" value="1" onclick="TrackericonColorForce(this)" <?php if (isset($_COOKIE['TrackerIconColorForce']) && $_COOKIE['TrackerIconColorForce'] == 'true') print 'checked'; ?> ><?php echo _("Force Tracker color"); ?></li> |
|
|
694
|
+ <li><input type="checkbox" name="trackercolorforce" value="1" onclick="TrackericonColorForce(this)" <?php if (isset($_COOKIE['TrackerIconColorForce']) && $_COOKIE['TrackerIconColorForce'] == 'true') { |
|
|
695
|
+ print 'checked'; |
|
|
696
|
+} |
|
|
697
|
+?> ><?php echo _("Force Tracker color"); ?></li> |
|
463
|
698
|
<li><?php echo _("Tracker icon color:"); ?> |
|
464
|
|
- <input type="color" name="trackercolor" id="html5colorpicker" onchange="TrackericonColor(trackercolor.value);" value="#<?php if (isset($_COOKIE['TrackerIconColor'])) print $_COOKIE['TrackerIconColor']; elseif (isset($globalTrackerIconColor)) print $globalTrackerIconColor; else print 'ff0000'; ?>"> |
|
|
699
|
+ <input type="color" name="trackercolor" id="html5colorpicker" onchange="TrackericonColor(trackercolor.value);" value="#<?php if (isset($_COOKIE['TrackerIconColor'])) { |
|
|
700
|
+ print $_COOKIE['TrackerIconColor']; |
|
|
701
|
+} elseif (isset($globalTrackerIconColor)) { |
|
|
702
|
+ print $globalTrackerIconColor; |
|
|
703
|
+} else { |
|
|
704
|
+ print 'ff0000'; |
|
|
705
|
+} |
|
|
706
|
+?>"> |
|
465
|
707
|
</li> |
|
466
|
708
|
<?php |
|
467
|
709
|
} |
|
@@ -469,22 +711,46 @@ discard block |
|
|
block discarded – undo |
|
469
|
711
|
?> |
|
470
|
712
|
<li><?php echo _("Distance unit:"); ?> |
|
471
|
713
|
<select class="selectpicker" onchange="unitdistance(this);"> |
|
472
|
|
- <option value="km"<?php if ((!isset($_COOKIE['unitdistance']) && (!isset($globalUnitDistance) || (isset($globalUnitDistance) && $globalUnitDistance == 'km'))) || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'km')) echo ' selected'; ?>>km</option> |
|
473
|
|
- <option value="nm"<?php if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) echo ' selected'; ?>>nm</option> |
|
474
|
|
- <option value="mi"<?php if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'mi') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'mi')) echo ' selected'; ?>>mi</option> |
|
|
714
|
+ <option value="km"<?php if ((!isset($_COOKIE['unitdistance']) && (!isset($globalUnitDistance) || (isset($globalUnitDistance) && $globalUnitDistance == 'km'))) || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'km')) { |
|
|
715
|
+ echo ' selected'; |
|
|
716
|
+} |
|
|
717
|
+?>>km</option> |
|
|
718
|
+ <option value="nm"<?php if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'nm') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'nm')) { |
|
|
719
|
+ echo ' selected'; |
|
|
720
|
+} |
|
|
721
|
+?>>nm</option> |
|
|
722
|
+ <option value="mi"<?php if ((!isset($_COOKIE['unitdistance']) && isset($globalUnitDistance) && $globalUnitDistance == 'mi') || (isset($_COOKIE['unitdistance']) && $_COOKIE['unitdistance'] == 'mi')) { |
|
|
723
|
+ echo ' selected'; |
|
|
724
|
+} |
|
|
725
|
+?>>mi</option> |
|
475
|
726
|
</select> |
|
476
|
727
|
</li> |
|
477
|
728
|
<li><?php echo _("Altitude unit:"); ?> |
|
478
|
729
|
<select class="selectpicker" onchange="unitaltitude(this);"> |
|
479
|
|
- <option value="m"<?php if ((!isset($_COOKIE['unitaltitude']) && (!isset($globalUnitAltitude) || (isset($globalUnitAltitude) && $globalUnitAltitude == 'm'))) || (isset($_COOKIE['unitaltitude']) && $_COOKIE['unitaltitude'] == 'm')) echo ' selected'; ?>>m</option> |
|
480
|
|
- <option value="feet"<?php if ((!isset($_COOKIE['unitaltitude']) && isset($globalUnitAltitude) && $globalUnitAltitude == 'feet') || (isset($_COOKIE['unitaltitude']) && $_COOKIE['unitaltitude'] == 'feet')) echo ' selected'; ?>>feet</option> |
|
|
730
|
+ <option value="m"<?php if ((!isset($_COOKIE['unitaltitude']) && (!isset($globalUnitAltitude) || (isset($globalUnitAltitude) && $globalUnitAltitude == 'm'))) || (isset($_COOKIE['unitaltitude']) && $_COOKIE['unitaltitude'] == 'm')) { |
|
|
731
|
+ echo ' selected'; |
|
|
732
|
+} |
|
|
733
|
+?>>m</option> |
|
|
734
|
+ <option value="feet"<?php if ((!isset($_COOKIE['unitaltitude']) && isset($globalUnitAltitude) && $globalUnitAltitude == 'feet') || (isset($_COOKIE['unitaltitude']) && $_COOKIE['unitaltitude'] == 'feet')) { |
|
|
735
|
+ echo ' selected'; |
|
|
736
|
+} |
|
|
737
|
+?>>feet</option> |
|
481
|
738
|
</select> |
|
482
|
739
|
</li> |
|
483
|
740
|
<li><?php echo _("Speed unit:"); ?> |
|
484
|
741
|
<select class="selectpicker" onchange="unitspeed(this);"> |
|
485
|
|
- <option value="kmh"<?php if ((!isset($_COOKIE['unitspeed']) && (!isset($globalUnitSpeed) || (isset($globalUnitSpeed) && $globalUnitSpeed == 'kmh'))) || (isset($_COOKIE['unitspeed']) && $_COOKIE['unitspeed'] == 'kmh')) echo ' selected'; ?>>km/h</option> |
|
486
|
|
- <option value="mph"<?php if ((!isset($_COOKIE['unitspeed']) && isset($globalUnitSpeed) && $globalUnitSpeed == 'mph') || (isset($_COOKIE['unitspeed']) && $_COOKIE['unitspeed'] == 'mph')) echo ' selected'; ?>>mph</option> |
|
487
|
|
- <option value="knots"<?php if ((!isset($_COOKIE['unitspeed']) && isset($globalUnitSpeed) && $globalUnitSpeed == 'knots') || (isset($_COOKIE['unitspeed']) && $_COOKIE['unitspeed'] == 'knots')) echo ' selected'; ?>>knots</option> |
|
|
742
|
+ <option value="kmh"<?php if ((!isset($_COOKIE['unitspeed']) && (!isset($globalUnitSpeed) || (isset($globalUnitSpeed) && $globalUnitSpeed == 'kmh'))) || (isset($_COOKIE['unitspeed']) && $_COOKIE['unitspeed'] == 'kmh')) { |
|
|
743
|
+ echo ' selected'; |
|
|
744
|
+} |
|
|
745
|
+?>>km/h</option> |
|
|
746
|
+ <option value="mph"<?php if ((!isset($_COOKIE['unitspeed']) && isset($globalUnitSpeed) && $globalUnitSpeed == 'mph') || (isset($_COOKIE['unitspeed']) && $_COOKIE['unitspeed'] == 'mph')) { |
|
|
747
|
+ echo ' selected'; |
|
|
748
|
+} |
|
|
749
|
+?>>mph</option> |
|
|
750
|
+ <option value="knots"<?php if ((!isset($_COOKIE['unitspeed']) && isset($globalUnitSpeed) && $globalUnitSpeed == 'knots') || (isset($_COOKIE['unitspeed']) && $_COOKIE['unitspeed'] == 'knots')) { |
|
|
751
|
+ echo ' selected'; |
|
|
752
|
+} |
|
|
753
|
+?>>knots</option> |
|
488
|
754
|
</select> |
|
489
|
755
|
</li> |
|
490
|
756
|
|
|
@@ -502,9 +768,18 @@ discard block |
|
|
block discarded – undo |
|
502
|
768
|
<?php |
|
503
|
769
|
if (((isset($globalVATSIM) && $globalVATSIM) || isset($globalIVAO) && $globalIVAO || isset($globalphpVMS) && $globalphpVMS) && (!isset($globalMapVAchoose) || $globalMapVAchoose)) { |
|
504
|
770
|
?> |
|
505
|
|
- <?php if (isset($globalVATSIM) && $globalVATSIM) { ?><li><input type="checkbox" name="vatsim" value="1" onclick="clickVATSIM(this)" <?php if ((isset($_COOKIE['ShowVATSIM']) && $_COOKIE['ShowVATSIM'] == 'true') || !isset($_COOKIE['ShowVATSIM'])) print 'checked'; ?> ><?php echo _("Display VATSIM data"); ?></li><?php } ?> |
|
506
|
|
- <?php if (isset($globalIVAO) && $globalIVAO) { ?><li><input type="checkbox" name="ivao" value="1" onclick="clickIVAO(this)" <?php if ((isset($_COOKIE['ShowIVAO']) && $_COOKIE['ShowIVAO'] == 'true') || !isset($_COOKIE['ShowIVAO'])) print 'checked'; ?> ><?php echo _("Display IVAO data"); ?></li><?php } ?> |
|
507
|
|
- <?php if (isset($globalphpVMS) && $globalphpVMS) { ?><li><input type="checkbox" name="phpvms" value="1" onclick="clickphpVMS(this)" <?php if ((isset($_COOKIE['ShowVMS']) && $_COOKIE['ShowVMS'] == 'true') || !isset($_COOKIE['ShowVMS'])) print 'checked'; ?> ><?php echo _("Display phpVMS data"); ?></li><?php } ?> |
|
|
771
|
+ <?php if (isset($globalVATSIM) && $globalVATSIM) { ?><li><input type="checkbox" name="vatsim" value="1" onclick="clickVATSIM(this)" <?php if ((isset($_COOKIE['ShowVATSIM']) && $_COOKIE['ShowVATSIM'] == 'true') || !isset($_COOKIE['ShowVATSIM'])) { |
|
|
772
|
+ print 'checked'; |
|
|
773
|
+} |
|
|
774
|
+?> ><?php echo _("Display VATSIM data"); ?></li><?php } ?> |
|
|
775
|
+ <?php if (isset($globalIVAO) && $globalIVAO) { ?><li><input type="checkbox" name="ivao" value="1" onclick="clickIVAO(this)" <?php if ((isset($_COOKIE['ShowIVAO']) && $_COOKIE['ShowIVAO'] == 'true') || !isset($_COOKIE['ShowIVAO'])) { |
|
|
776
|
+ print 'checked'; |
|
|
777
|
+} |
|
|
778
|
+?> ><?php echo _("Display IVAO data"); ?></li><?php } ?> |
|
|
779
|
+ <?php if (isset($globalphpVMS) && $globalphpVMS) { ?><li><input type="checkbox" name="phpvms" value="1" onclick="clickphpVMS(this)" <?php if ((isset($_COOKIE['ShowVMS']) && $_COOKIE['ShowVMS'] == 'true') || !isset($_COOKIE['ShowVMS'])) { |
|
|
780
|
+ print 'checked'; |
|
|
781
|
+} |
|
|
782
|
+?> ><?php echo _("Display phpVMS data"); ?></li><?php } ?> |
|
508
|
783
|
<?php |
|
509
|
784
|
} |
|
510
|
785
|
?> |
|
@@ -512,10 +787,16 @@ discard block |
|
|
block discarded – undo |
|
512
|
787
|
if (!(isset($globalVA) && $globalVA) && !(isset($globalVATSIM) && $globalVATSIM) && !(isset($globalIVAO) && $globalIVAO) && !(isset($globalphpVMS) && $globalphpVMS) && isset($globalSBS1) && $globalSBS1 && isset($globalAPRS) && $globalAPRS && (!isset($globalMapchoose) || $globalMapchoose)) { |
|
513
|
788
|
?> |
|
514
|
789
|
<?php if (isset($globalSBS1) && $globalSBS1) { ?> |
|
515
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="sbs" value="1" onclick="clickSBS1(this)" <?php if ((isset($_COOKIE['ShowSBS1']) && $_COOKIE['ShowSBS1'] == 'true') || !isset($_COOKIE['ShowSBS1'])) print 'checked'; ?> ><?php echo _("Display ADS-B data"); ?></label></div></li> |
|
|
790
|
+ <li><div class="checkbox"><label><input type="checkbox" name="sbs" value="1" onclick="clickSBS1(this)" <?php if ((isset($_COOKIE['ShowSBS1']) && $_COOKIE['ShowSBS1'] == 'true') || !isset($_COOKIE['ShowSBS1'])) { |
|
|
791
|
+ print 'checked'; |
|
|
792
|
+} |
|
|
793
|
+?> ><?php echo _("Display ADS-B data"); ?></label></div></li> |
|
516
|
794
|
<?php } ?> |
|
517
|
795
|
<?php if (isset($globalAPRS) && $globalAPRS) { ?> |
|
518
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="aprs" value="1" onclick="clickAPRS(this)" <?php if ((isset($_COOKIE['ShowAPRS']) && $_COOKIE['ShowAPRS'] == 'true') || !isset($_COOKIE['ShowAPRS'])) print 'checked'; ?> ><?php echo _("Display APRS data"); ?></label></div></li> |
|
|
796
|
+ <li><div class="checkbox"><label><input type="checkbox" name="aprs" value="1" onclick="clickAPRS(this)" <?php if ((isset($_COOKIE['ShowAPRS']) && $_COOKIE['ShowAPRS'] == 'true') || !isset($_COOKIE['ShowAPRS'])) { |
|
|
797
|
+ print 'checked'; |
|
|
798
|
+} |
|
|
799
|
+?> ><?php echo _("Display APRS data"); ?></label></div></li> |
|
519
|
800
|
<?php } ?> |
|
520
|
801
|
<?php |
|
521
|
802
|
} |
|
@@ -532,7 +813,9 @@ discard block |
|
|
block discarded – undo |
|
532
|
813
|
} |
|
533
|
814
|
foreach($allairlinenames as $airline) { |
|
534
|
815
|
$airline_name = $airline['airline_name']; |
|
535
|
|
- if (strlen($airline_name) > 30) $airline_name = substr($airline_name,0,30).'...'; |
|
|
816
|
+ if (strlen($airline_name) > 30) { |
|
|
817
|
+ $airline_name = substr($airline_name,0,30).'...'; |
|
|
818
|
+ } |
|
536
|
819
|
if (isset($_COOKIE['filter_Airlines']) && in_array($airline['airline_icao'],explode(',',$_COOKIE['filter_Airlines']))) { |
|
537
|
820
|
echo '<option value="'.$airline['airline_icao'].'" selected>'.$airline_name.'</option>'; |
|
538
|
821
|
} else { |
|
@@ -550,7 +833,10 @@ discard block |
|
|
block discarded – undo |
|
550
|
833
|
<li><?php echo _("Display alliance:"); ?> |
|
551
|
834
|
<br/> |
|
552
|
835
|
<select class="selectpicker" onchange="alliance(this);" id="display_alliance"> |
|
553
|
|
- <option value="all"<?php if (!isset($_COOKIE['filter_alliance']) || $_COOKIE['filter_alliance'] == 'all' || $_COOKIE['filter_alliance'] == '') echo ' selected'; ?>><?php echo _("All"); ?></option> |
|
|
836
|
+ <option value="all"<?php if (!isset($_COOKIE['filter_alliance']) || $_COOKIE['filter_alliance'] == 'all' || $_COOKIE['filter_alliance'] == '') { |
|
|
837
|
+ echo ' selected'; |
|
|
838
|
+} |
|
|
839
|
+?>><?php echo _("All"); ?></option> |
|
554
|
840
|
<?php |
|
555
|
841
|
foreach($allalliancenames as $alliance) { |
|
556
|
842
|
$alliance_name = $alliance['alliance']; |
|
@@ -597,10 +883,22 @@ discard block |
|
|
block discarded – undo |
|
597
|
883
|
?> |
|
598
|
884
|
<li><?php echo _("Display airlines of type:"); ?><br/> |
|
599
|
885
|
<select class="selectpicker" onchange="airlinestype(this);"> |
|
600
|
|
- <option value="all"<?php if (!isset($_COOKIE['filter_airlinestype']) || $_COOKIE['filter_airlinestype'] == 'all' || $_COOKIE['filter_airlinestype'] == '') echo ' selected'; ?>><?php echo _("All"); ?></option> |
|
601
|
|
- <option value="passenger"<?php if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] == 'passenger') echo ' selected'; ?>><?php echo _("Passenger"); ?></option> |
|
602
|
|
- <option value="cargo"<?php if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] == 'cargo') echo ' selected'; ?>><?php echo _("Cargo"); ?></option> |
|
603
|
|
- <option value="military"<?php if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] == 'military') echo ' selected'; ?>><?php echo _("Military"); ?></option> |
|
|
886
|
+ <option value="all"<?php if (!isset($_COOKIE['filter_airlinestype']) || $_COOKIE['filter_airlinestype'] == 'all' || $_COOKIE['filter_airlinestype'] == '') { |
|
|
887
|
+ echo ' selected'; |
|
|
888
|
+} |
|
|
889
|
+?>><?php echo _("All"); ?></option> |
|
|
890
|
+ <option value="passenger"<?php if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] == 'passenger') { |
|
|
891
|
+ echo ' selected'; |
|
|
892
|
+} |
|
|
893
|
+?>><?php echo _("Passenger"); ?></option> |
|
|
894
|
+ <option value="cargo"<?php if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] == 'cargo') { |
|
|
895
|
+ echo ' selected'; |
|
|
896
|
+} |
|
|
897
|
+?>><?php echo _("Cargo"); ?></option> |
|
|
898
|
+ <option value="military"<?php if (isset($_COOKIE['filter_airlinestype']) && $_COOKIE['filter_airlinestype'] == 'military') { |
|
|
899
|
+ echo ' selected'; |
|
|
900
|
+} |
|
|
901
|
+?>><?php echo _("Military"); ?></option> |
|
604
|
902
|
</select> |
|
605
|
903
|
</li> |
|
606
|
904
|
<?php |
|
@@ -608,7 +906,10 @@ discard block |
|
|
block discarded – undo |
|
608
|
906
|
?> |
|
609
|
907
|
<li> |
|
610
|
908
|
<?php echo _("Display flight with ident:"); ?> |
|
611
|
|
- <input type="text" name="identfilter" onchange="identfilter();" id="identfilter" value="<?php if (isset($_COOKIE['filter_ident'])) print $_COOKIE['filter_ident']; ?>" /> |
|
|
909
|
+ <input type="text" name="identfilter" onchange="identfilter();" id="identfilter" value="<?php if (isset($_COOKIE['filter_ident'])) { |
|
|
910
|
+ print $_COOKIE['filter_ident']; |
|
|
911
|
+} |
|
|
912
|
+?>" /> |
|
612
|
913
|
</li> |
|
613
|
914
|
<?php |
|
614
|
915
|
} |
|
@@ -627,7 +928,10 @@ discard block |
|
|
block discarded – undo |
|
627
|
928
|
<h1 class="sidebar-header"><?php echo _("Satellites"); ?><span class="sidebar-close"><i class="fa fa-caret-left"></i></span></h1> |
|
628
|
929
|
<form> |
|
629
|
930
|
<ul> |
|
630
|
|
- <li><div class="checkbox"><label><input type="checkbox" name="displayiss" value="1" onclick="clickDisplayISS(this)" <?php if (isset($_COOKIE['displayiss']) && $_COOKIE['displayiss'] == 'true') print 'checked'; ?> ><?php echo _("Show ISS, Tiangong-1 and Tiangong-2 on map"); ?></label></div></li> |
|
|
931
|
+ <li><div class="checkbox"><label><input type="checkbox" name="displayiss" value="1" onclick="clickDisplayISS(this)" <?php if (isset($_COOKIE['displayiss']) && $_COOKIE['displayiss'] == 'true') { |
|
|
932
|
+ print 'checked'; |
|
|
933
|
+} |
|
|
934
|
+?> ><?php echo _("Show ISS, Tiangong-1 and Tiangong-2 on map"); ?></label></div></li> |
|
631
|
935
|
<li><?php echo _("Type:"); ?> |
|
632
|
936
|
<select class="selectpicker" multiple onchange="sattypes(this);"> |
|
633
|
937
|
<?php |
|
@@ -635,25 +939,45 @@ discard block |
|
|
block discarded – undo |
|
635
|
939
|
$types = $Satellite->get_tle_types(); |
|
636
|
940
|
foreach ($types as $type) { |
|
637
|
941
|
$type_name = $type['tle_type']; |
|
638
|
|
- if ($type_name == 'musson') $type_name = 'Russian LEO Navigation'; |
|
639
|
|
- else if ($type_name == 'nnss') $type_name = 'Navi Navigation Satellite System'; |
|
640
|
|
- else if ($type_name == 'sbas') $type_name = 'Satellite-Based Augmentation System'; |
|
641
|
|
- else if ($type_name == 'glo-ops') $type_name = 'Glonass Operational'; |
|
642
|
|
- else if ($type_name == 'gps-ops') $type_name = 'GPS Operational'; |
|
643
|
|
- else if ($type_name == 'argos') $type_name = 'ARGOS Data Collection System'; |
|
644
|
|
- else if ($type_name == 'tdrss') $type_name = 'Tracking and Data Relay Satellite System'; |
|
645
|
|
- else if ($type_name == 'sarsat') $type_name = 'Search & Rescue'; |
|
646
|
|
- else if ($type_name == 'dmc') $type_name = 'Disaster Monitoring'; |
|
647
|
|
- else if ($type_name == 'resource') $type_name = 'Earth Resources'; |
|
648
|
|
- else if ($type_name == 'stations') $type_name = 'Space Stations'; |
|
649
|
|
- else if ($type_name == 'geo') $type_name = 'Geostationary'; |
|
650
|
|
- else if ($type_name == 'amateur') $type_name = 'Amateur Radio'; |
|
651
|
|
- else if ($type_name == 'x-comm') $type_name = 'Experimental'; |
|
652
|
|
- else if ($type_name == 'other-comm') $type_name = 'Other Comm'; |
|
653
|
|
- else if ($type_name == 'science') $type_name = 'Space & Earth Science'; |
|
654
|
|
- else if ($type_name == 'military') $type_name = 'Miscellaneous Military'; |
|
655
|
|
- else if ($type_name == 'radar') $type_name = 'Radar Calibration'; |
|
656
|
|
- else if ($type_name == 'tle-new') $type_name = 'Last 30 days launches'; |
|
|
942
|
+ if ($type_name == 'musson') { |
|
|
943
|
+ $type_name = 'Russian LEO Navigation'; |
|
|
944
|
+ } else if ($type_name == 'nnss') { |
|
|
945
|
+ $type_name = 'Navi Navigation Satellite System'; |
|
|
946
|
+ } else if ($type_name == 'sbas') { |
|
|
947
|
+ $type_name = 'Satellite-Based Augmentation System'; |
|
|
948
|
+ } else if ($type_name == 'glo-ops') { |
|
|
949
|
+ $type_name = 'Glonass Operational'; |
|
|
950
|
+ } else if ($type_name == 'gps-ops') { |
|
|
951
|
+ $type_name = 'GPS Operational'; |
|
|
952
|
+ } else if ($type_name == 'argos') { |
|
|
953
|
+ $type_name = 'ARGOS Data Collection System'; |
|
|
954
|
+ } else if ($type_name == 'tdrss') { |
|
|
955
|
+ $type_name = 'Tracking and Data Relay Satellite System'; |
|
|
956
|
+ } else if ($type_name == 'sarsat') { |
|
|
957
|
+ $type_name = 'Search & Rescue'; |
|
|
958
|
+ } else if ($type_name == 'dmc') { |
|
|
959
|
+ $type_name = 'Disaster Monitoring'; |
|
|
960
|
+ } else if ($type_name == 'resource') { |
|
|
961
|
+ $type_name = 'Earth Resources'; |
|
|
962
|
+ } else if ($type_name == 'stations') { |
|
|
963
|
+ $type_name = 'Space Stations'; |
|
|
964
|
+ } else if ($type_name == 'geo') { |
|
|
965
|
+ $type_name = 'Geostationary'; |
|
|
966
|
+ } else if ($type_name == 'amateur') { |
|
|
967
|
+ $type_name = 'Amateur Radio'; |
|
|
968
|
+ } else if ($type_name == 'x-comm') { |
|
|
969
|
+ $type_name = 'Experimental'; |
|
|
970
|
+ } else if ($type_name == 'other-comm') { |
|
|
971
|
+ $type_name = 'Other Comm'; |
|
|
972
|
+ } else if ($type_name == 'science') { |
|
|
973
|
+ $type_name = 'Space & Earth Science'; |
|
|
974
|
+ } else if ($type_name == 'military') { |
|
|
975
|
+ $type_name = 'Miscellaneous Military'; |
|
|
976
|
+ } else if ($type_name == 'radar') { |
|
|
977
|
+ $type_name = 'Radar Calibration'; |
|
|
978
|
+ } else if ($type_name == 'tle-new') { |
|
|
979
|
+ $type_name = 'Last 30 days launches'; |
|
|
980
|
+ } |
|
657
|
981
|
|
|
658
|
982
|
if (isset($_COOKIE['sattypes']) && in_array($type['tle_type'],explode(',',$_COOKIE['sattypes']))) { |
|
659
|
983
|
print '<option value="'.$type['tle_type'].'" selected>'.$type_name.'</option>'; |