require 'require/class.Spotter.php'; if (!isset($_GET['aircraft_manufacturer'])) { header('Location: ' . $globalURL . '/manufacturer'); die; } $Spotter = new Spotter(); $manufacturer = ucwords(str_replace("-", " ", $_GET['aircraft_manufacturer'])); $spotter_array = $Spotter->getSpotterDataByManufacturer($manufacturer, "0,1", $_GET['sort']); if (!empty($spotter_array)) { $title = 'Most Common Time of Day from ' . $manufacturer; require 'header.php'; print '<div class="select-item">'; print '<form action="' . $globalURL . '/manufacturer" method="post">'; print '<select name="aircraft_manufacturer" class="selectpicker" data-live-search="true">'; print '<option></option>'; $all_manufacturers = $Spotter->getAllManufacturers(); foreach ($all_manufacturers as $all_manufacturer) { if ($_GET['aircraft_manufacturer'] == strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer']))) { print '<option value="' . strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])) . '" selected="selected">' . $all_manufacturer['aircraft_manufacturer'] . '</option>'; } else { print '<option value="' . strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])) . '">' . $all_manufacturer['aircraft_manufacturer'] . '</option>'; } } print '</select>'; print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>'; print '</form>'; print '</div>'; print '<div class="info column">'; print '<h1>' . $manufacturer . '</h1>'; print '</div>'; include 'manufacturer-sub-menu.php';
$output .= '<?xml version="1.0" encoding="UTF-8"?>'; $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'; $airport_names = Spotter::getAllAirportNames(); foreach ($airport_names as $airport_item) { $output .= '<url>'; $output .= '<loc>' . $globalURL . '/airport/' . $airport_item['airport_icao'] . '</loc>'; $output .= '<lastmod>' . date("c", time()) . '</lastmod>'; $output .= '<changefreq>daily</changefreq>'; $output .= '</url>'; } $output .= '</urlset>'; } else { if ($_GET['type'] == "manufacturer") { $output .= '<?xml version="1.0" encoding="UTF-8"?>'; $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'; $manufacturer_names = Spotter::getAllManufacturers(); foreach ($manufacturer_names as $manufacturer_item) { $output .= '<url>'; $output .= '<loc>' . $globalURL . '/manufacturer/' . strtolower(str_replace(" ", "-", $manufacturer_item['aircraft_manufacturer'])) . '</loc>'; $output .= '<lastmod>' . date("c", time()) . '</lastmod>'; $output .= '<changefreq>daily</changefreq>'; $output .= '</url>'; } $output .= '</urlset>'; } else { if ($_GET['type'] == "country") { $output .= '<?xml version="1.0" encoding="UTF-8"?>'; $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'; $country_names = Spotter::getAllCountries(); foreach ($country_names as $country_item) { $output .= '<url>';
$limit_previous_2 = $limit_end - $absolute_difference; $manufacturer = ucwords(str_replace("-", " ", $_GET['aircraft_manufacturer'])); $page_url = $globalURL . '/manufacturer/' . $_GET['aircraft_manufacturer']; if (isset($_GET['sort'])) { $spotter_array = Spotter::getSpotterDataByManufacturer($manufacturer, $limit_start . "," . $absolute_difference, $_GET['sort']); } else { $spotter_array = Spotter::getSpotterDataByManufacturer($manufacturer, $limit_start . "," . $absolute_difference, ''); } if (!empty($spotter_array)) { $title = 'Detailed View for ' . $manufacturer; require 'header.php'; print '<div class="select-item">'; print '<form action="' . $globalURL . '/manufacturer" method="post">'; print '<select name="aircraft_manufacturer" class="selectpicker" data-live-search="true">'; print '<option></option>'; $all_manufacturers = Spotter::getAllManufacturers(); foreach ($all_manufacturers as $all_manufacturer) { if ($_GET['aircraft_manufacturer'] == strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer']))) { print '<option value="' . strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])) . '" selected="selected">' . $all_manufacturer['aircraft_manufacturer'] . '</option>'; } else { print '<option value="' . strtolower(str_replace(" ", "-", $all_manufacturer['aircraft_manufacturer'])) . '">' . $all_manufacturer['aircraft_manufacturer'] . '</option>'; } } print '</select>'; print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>'; print '</form>'; print '</div>'; print '<div class="info column">'; print '<h1>' . $manufacturer . '</h1>'; print '</div>'; print '<div class="table column">';
$output .= '<?xml version="1.0" encoding="UTF-8"?>'; $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'; $airport_names = $Spotter->getAllAirportNames(); foreach ($airport_names as $airport_item) { $output .= '<url>'; $output .= '<loc>' . 'http://' . $_SERVER['HTTP_HOST'] . $globalURL . '/airport/' . $airport_item['airport_icao'] . '</loc>'; $output .= '<lastmod>' . date("c", time()) . '</lastmod>'; $output .= '<changefreq>daily</changefreq>'; $output .= '</url>'; } $output .= '</urlset>'; } else { if (isset($_GET['type']) && $_GET['type'] == "manufacturer") { $output .= '<?xml version="1.0" encoding="UTF-8"?>'; $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'; $manufacturer_names = $Spotter->getAllManufacturers(); foreach ($manufacturer_names as $manufacturer_item) { $output .= '<url>'; $output .= '<loc>' . 'http://' . $_SERVER['HTTP_HOST'] . $globalURL . '/manufacturer/' . strtolower(str_replace(" ", "-", $manufacturer_item['aircraft_manufacturer'])) . '</loc>'; $output .= '<lastmod>' . date("c", time()) . '</lastmod>'; $output .= '<changefreq>daily</changefreq>'; $output .= '</url>'; } $output .= '</urlset>'; } else { if (isset($_GET['type']) && $_GET['type'] == "country") { $output .= '<?xml version="1.0" encoding="UTF-8"?>'; $output .= '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1">'; $country_names = $Spotter->getAllCountries(); foreach ($country_names as $country_item) { $output .= '<url>';