PARIS '.$nb.'';
}
}
else if ($postal == '69000')
{
for ($i = 1; $i < 10; $i++)
{
echo '';
}
}
else if ($postal == '13000')
{
for ($i = 1; $i <= 16; $i++)
{
if ($i < 10)
$nb = '0'.$i;
else
$nb = $i;
echo '';
}
}
else
{
try
{
if (isset($_GET['id_shop']))
$tntWebService = new TntWebService(Tools::safeOutput($_GET['id_shop']));
else
$tntWebService = new TntWebService();
$cities = $tntWebService->getCity($postal);
}
catch( SoapFault $e )
{
$erreur = $e->faultstring;
}
catch( Exception $e )
{
$erreur = "Problem : follow failed";
}
if (!isset($erreur))
{
if (isset($cities->City) && is_array($cities->City))
{
foreach ($cities->City as $v)
echo '';
}
else if (isset($cities->City))
echo '';
else
echo '';
}
else if (!Configuration::get('TNT_CARRIER_LOGIN') || !Configuration::get('TNT_CARRIER_PASSWORD') || !Configuration::get('TNT_CARRIER_NUMBER_ACCOUNT'))
echo 'account';
else
echo '';
}
?>