* @copyright 2007-2011 PrestaShop SA * @version Release: $Revision: 1.4 $ * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ $country = DateTimeZone::listIdentifiers(DateTimeZone::PER_COUNTRY, $_GET['country']); $special = array( 'US' => 'US/Eastern', 'RU' => 'Europe/Moscow' ); if (!empty($_GET['country']) AND !empty($special[$_GET['country']])) $country[0] = $special[$_GET['country']]; if(isset($country[0])) echo $country[0];