You are here

places.php in Weather 5

File

places.php
View source
<?php

/*
 * Copyright (C) 2006 Tobias Toedter <t.toedter@gmx.net>
 *
 * This file is part of the Drupal Weather module.
 *
 * Weather is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * Weather is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Weather; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
require_once "icao_codes.inc";
$country = $_GET['country'];
if (get_magic_quotes_gpc()) {
  $country = stripslashes($country);
}
$icao_codes = _weather_setup_icao_codes();
echo "<?xml version=\"1.0\"?>\n";
echo "<places>\n";
foreach ($icao_codes[$country] as $icao => $info) {
  echo "<place icao=\"{$icao}\">" . $info['name'] . "</place>\n";
}
echo "</places>\n";