$limit_previous_2 = $limit_end - $absolute_difference;
 $country = ucwords(str_replace("-", " ", $_GET['country']));
 $page_url = $globalURL . '/country/' . $_GET['country'];
 if (isset($_GET['sort'])) {
     $spotter_array = Spotter::getSpotterDataByCountry($country, $limit_start . "," . $absolute_difference, $_GET['sort']);
 } else {
     $spotter_array = Spotter::getSpotterDataByCountry($country, $limit_start . "," . $absolute_difference, '');
 }
 if (!empty($spotter_array)) {
     $title = 'Detailed View for Airports & Airlines from ' . $country;
     require 'header.php';
     print '<div class="select-item">';
     print '<form action="' . $globalURL . '/country" method="post">';
     print '<select name="country" class="selectpicker" data-live-search="true">';
     print '<option></option>';
     $all_countries = Spotter::getAllCountries();
     foreach ($all_countries as $all_country) {
         if ($country == $all_country['country']) {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_country['country'])) . '" selected="selected">' . $all_country['country'] . '</option>';
         } else {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_country['country'])) . '">' . $all_country['country'] . '</option>';
         }
     }
     print '</select>';
     print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
     print '</form>';
     print '</div>';
     if ($_GET['country'] != "NA") {
         print '<div class="info column">';
         print '<h1>Airports &amp; Airlines from ' . $country . '</h1>';
         print '</div>';
示例#2
0
     $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>';
             $output .= '<loc>' . $globalURL . '/country/' . strtolower(str_replace(" ", "-", $country_item['country'])) . '</loc>';
             $output .= '<lastmod>' . date("c", time()) . '</lastmod>';
             $output .= '<changefreq>daily</changefreq>';
             $output .= '</url>';
         }
         $output .= '</urlset>';
     } else {
         if ($_GET['type'] == "ident") {
             $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">';
             $ident_names = Spotter::getAllIdents();
             foreach ($ident_names as $ident_item) {
                 $output .= '<url>';
 $limit_previous_2 = $limit_end - $absolute_difference;
 $country = ucwords(str_replace("-", " ", $_GET['country']));
 $page_url = $globalURL . '/country/' . $_GET['country'];
 if (isset($_GET['sort'])) {
     $spotter_array = $Spotter->getSpotterDataByCountry($country, $limit_start . "," . $absolute_difference, $_GET['sort']);
 } else {
     $spotter_array = $Spotter->getSpotterDataByCountry($country, $limit_start . "," . $absolute_difference, '');
 }
 if (!empty($spotter_array)) {
     $title = 'Detailed View for Airports &amp; Airlines from ' . $country;
     require 'header.php';
     print '<div class="select-item">';
     print '<form action="' . $globalURL . '/country" method="post">';
     print '<select name="country" class="selectpicker" data-live-search="true">';
     print '<option></option>';
     $all_countries = $Spotter->getAllCountries();
     foreach ($all_countries as $all_country) {
         if ($country == $all_country['country']) {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_country['country'])) . '" selected="selected">' . $all_country['country'] . '</option>';
         } else {
             print '<option value="' . strtolower(str_replace(" ", "-", $all_country['country'])) . '">' . $all_country['country'] . '</option>';
         }
     }
     print '</select>';
     print '<button type="submit"><i class="fa fa-angle-double-right"></i></button>';
     print '</form>';
     print '</div>';
     if ($_GET['country'] != "NA") {
         print '<div class="info column">';
         print '<h1>Airports &amp; Airlines from ' . $country . '</h1>';
         print '</div>';
示例#4
0
     $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>';
             $output .= '<loc>' . 'http://' . $_SERVER['HTTP_HOST'] . $globalURL . '/country/' . strtolower(str_replace(" ", "-", $country_item['country'])) . '</loc>';
             $output .= '<lastmod>' . date("c", time()) . '</lastmod>';
             $output .= '<changefreq>daily</changefreq>';
             $output .= '</url>';
         }
         $output .= '</urlset>';
     } else {
         if (isset($_GET['type']) && $_GET['type'] == "ident") {
             $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">';
             $ident_names = $Spotter->getAllIdents();
             foreach ($ident_names as $ident_item) {
                 if (ctype_alnum($ident_item['ident'])) {