本文整理汇总了PHP中Mage_Customer_Model_Customer::getDefaultShipping方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Customer_Model_Customer::getDefaultShipping方法的具体用法?PHP Mage_Customer_Model_Customer::getDefaultShipping怎么用?PHP Mage_Customer_Model_Customer::getDefaultShipping使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Customer_Model_Customer
的用法示例。
在下文中一共展示了Mage_Customer_Model_Customer::getDefaultShipping方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _getVatRequiredCustomerAddress
/**
* Retrieve customer address (default billing or default shipping) ID on which tax calculation must be based
*
* @param Mage_Customer_Model_Customer $customer
* @param Mage_Core_Model_Store|string|int|null $store
* @return int|string
*/
protected function _getVatRequiredCustomerAddress(Mage_Customer_Model_Customer $customer, $store = null)
{
$configAddressType = Mage::helper('customer/address')->getTaxCalculationAddressType($store);
$requiredAddress = null;
switch ($configAddressType) {
case Mage_Customer_Model_Address_Abstract::TYPE_SHIPPING:
$requiredAddress = $customer->getDefaultShipping();
break;
default:
$requiredAddress = $customer->getDefaultBilling();
}
return $requiredAddress;
}
示例2: getAddressItems
/**
* Retrieve customer addresses list
*
* @param Mage_Customer_Model_Customer $customer
*
* @return array
*/
protected function getAddressItems($customer)
{
$result = array();
foreach ($customer->getAddresses() as $address) {
$data = $address->toArray();
$row = array();
foreach ($this->_mapAddressAttributes as $attributeAlias => $attributeCode) {
$row[$attributeAlias] = isset($data[$attributeCode]) ? $data[$attributeCode] : null;
}
foreach ($this->getAllowedAttributes($address) as $attributeCode => $attribute) {
if (isset($data[$attributeCode])) {
$row[$attributeCode] = $data[$attributeCode];
}
}
$row['is_default_billing'] = $customer->getDefaultBilling() == $address->getId();
$row['is_default_shipping'] = $customer->getDefaultShipping() == $address->getId();
$result[] = $row;
}
return $result;
}