Yanıtlar:
Adres bilgileriniz Mage_Customer_Model_Customer içinde saklanır, böylece müşteri kimliğiyle bunun bir örneğini oluşturabilirsiniz.
$customer = Mage::getModel('customer/customer')->load($customerId);
Ardından, aradığınız adres türüne bağlı olarak aşağıdaki işlevlerden birini çağırabilirsiniz.
Birincil Fatura Adresi:
$customer->getPrimaryBillingAddress();
Birincil gönderim adresi:
$customer->getPrimaryShippingAddress();
Genel Adres Seçimi: $customer->getAddressItemById();
Ülke bilgisine gelince, ID ile ülke için ISO standart kodunu mu kastediyorsunuz, örneğin FR, GB vb.
$countryName = Mage::getModel('directory/country')->load('FR')->getName();
echo $countryName; // Should output France in this example
Magento Müşteri Modeli API Belgeleri: http://docs.magentocommerce.com/Mage_Customer/Mage_Customer_Model_Customer.html