Exemplo n.º 1
0
 if (!isset($_GET['limit']) || count(explode(",", $_GET['limit'])) < 2) {
     $limit_start = 0;
     $limit_end = 25;
     $absolute_difference = 25;
 } else {
     $limit_explode = explode(",", $_GET['limit']);
     $limit_start = $limit_explode[0];
     $limit_end = $limit_explode[1];
 }
 $absolute_difference = abs($limit_start - $limit_end);
 $limit_next = $limit_end + $absolute_difference;
 $limit_previous_1 = $limit_start - $absolute_difference;
 $limit_previous_2 = $limit_end - $absolute_difference;
 $page_url = $globalURL . '/aircraft/' . $_GET['aircraft_type'];
 $sort = filter_input(INPUT_GET, 'sort', FILTER_SANITIZE_STRING);
 $spotter_array = $Spotter->getSpotterDataByAircraft($_GET['aircraft_type'], $limit_start . "," . $absolute_difference, $sort);
 if (!empty($spotter_array)) {
     $title = 'Detailed View for ' . $spotter_array[0]['aircraft_name'] . ' (' . $spotter_array[0]['aircraft_type'] . ')';
     require 'header.php';
     print '<div class="select-item">';
     print '<form action="' . $globalURL . '/aircraft" method="post">';
     print '<select name="aircraft_type" class="selectpicker" data-live-search="true">';
     print '<option></option>';
     $aircraft_types = $Spotter->getAllAircraftTypes();
     foreach ($aircraft_types as $aircraft_type) {
         if ($_GET['aircraft_type'] == $aircraft_type['aircraft_icao']) {
             print '<option value="' . $aircraft_type['aircraft_icao'] . '" selected="selected">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
         } else {
             print '<option value="' . $aircraft_type['aircraft_icao'] . '">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
         }
     }
<?php

require 'require/class.Connection.php';
require 'require/class.Spotter.php';
if (!isset($_GET['aircraft_type'])) {
    header('Location: ' . $globalURL . '/aircraft');
    die;
}
$Spotter = new Spotter();
$spotter_array = $Spotter->getSpotterDataByAircraft($_GET['aircraft_type'], "0,1", "");
if (!empty($spotter_array)) {
    $title = 'Most Common Routes from ' . $spotter_array[0]['aircraft_name'] . ' (' . $spotter_array[0]['aircraft_type'] . ')';
    require 'header.php';
    print '<div class="select-item">';
    print '<form action="' . $globalURL . '/aircraft" method="post">';
    print '<select name="aircraft_type" class="selectpicker" data-live-search="true">';
    print '<option></option>';
    $aircraft_types = $Spotter->getAllAircraftTypes();
    foreach ($aircraft_types as $aircraft_type) {
        if ($_GET['aircraft_type'] == $aircraft_type['aircraft_icao']) {
            print '<option value="' . $aircraft_type['aircraft_icao'] . '" selected="selected">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
        } else {
            print '<option value="' . $aircraft_type['aircraft_icao'] . '">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
        }
    }
    print '</select>';
    print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
    print '</form>';
    print '</div>';
    if ($_GET['aircraft_type'] != "NA") {
        print '<div class="info column">';
Exemplo n.º 3
0
     $limit_end = 25;
     $absolute_difference = 25;
 } else {
     $limit_explode = explode(",", $_GET['limit']);
     $limit_start = $limit_explode[0];
     $limit_end = $limit_explode[1];
 }
 $absolute_difference = abs($limit_start - $limit_end);
 $limit_next = $limit_end + $absolute_difference;
 $limit_previous_1 = $limit_start - $absolute_difference;
 $limit_previous_2 = $limit_end - $absolute_difference;
 $page_url = $globalURL . '/aircraft/' . $_GET['aircraft_type'];
 if (isset($_GET['sort'])) {
     $spotter_array = Spotter::getSpotterDataByAircraft($_GET['aircraft_type'], $limit_start . "," . $absolute_difference, $_GET['sort']);
 } else {
     $spotter_array = Spotter::getSpotterDataByAircraft($_GET['aircraft_type'], $limit_start . "," . $absolute_difference, '');
 }
 if (!empty($spotter_array)) {
     $title = 'Detailed View for ' . $spotter_array[0]['aircraft_name'] . ' (' . $spotter_array[0]['aircraft_type'] . ')';
     require 'header.php';
     print '<div class="select-item">';
     print '<form action="' . $globalURL . '/aircraft" method="post">';
     print '<select name="aircraft_type" class="selectpicker" data-live-search="true">';
     print '<option></option>';
     $aircraft_types = Spotter::getAllAircraftTypes();
     foreach ($aircraft_types as $aircraft_type) {
         if ($_GET['aircraft_type'] == $aircraft_type['aircraft_icao']) {
             print '<option value="' . $aircraft_type['aircraft_icao'] . '" selected="selected">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
         } else {
             print '<option value="' . $aircraft_type['aircraft_icao'] . '">' . $aircraft_type['aircraft_name'] . ' (' . $aircraft_type['aircraft_icao'] . ')</option>';
         }