Example #1
0
 /**
  * Check whether specified shipping address is default for its customer
  *
  * @param Mage_Customer_Model_Address $address
  * @return bool
  */
 protected function _isDefaultShipping($address)
 {
     return $address->getId() && $address->getId() == $address->getCustomer()->getDefaultShipping() || $address->getIsPrimaryShipping() || $address->getIsDefaultShipping();
 }