本文整理汇总了PHP中Mage_Customer_Model_Address_Abstract::getCountry方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Customer_Model_Address_Abstract::getCountry方法的具体用法?PHP Mage_Customer_Model_Address_Abstract::getCountry怎么用?PHP Mage_Customer_Model_Address_Abstract::getCountry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Customer_Model_Address_Abstract
的用法示例。
在下文中一共展示了Mage_Customer_Model_Address_Abstract::getCountry方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: render
/**
* Render address
*
* @param Mage_Customer_Model_Address_Abstract $address
* @return string
*/
public function render(Mage_Customer_Model_Address_Abstract $address, $format = null)
{
$address->getRegion();
$address->getCountry();
$address->explodeStreetAddress();
$formater = new Varien_Filter_Template();
$data = $address->getData();
if ($this->getType()->getHtmlEscape()) {
foreach ($data as $key => $value) {
if (is_object($value)) {
unset($data[$key]);
} else {
$data[$key] = $this->htmlEscape($value);
}
}
}
/**
* Remove data that mustn't show
*/
if (!$this->helper('customer/address')->canShowConfig('prefix_show')) {
unset($data['prefix']);
}
if (!$this->helper('customer/address')->canShowConfig('middlename_show')) {
unset($data['middlename']);
}
if (!$this->helper('customer/address')->canShowConfig('suffix_show')) {
unset($data['suffix']);
}
$formater->setVariables(array_merge($data, array('country' => $address->getCountryModel()->getName())));
$format = !is_null($format) ? $format : $this->getFormat($address);
return $formater->filter($format);
}
示例2: getAddressCosts
/**
* Returns COD fee for certain address
*
* @param Mage_Sales_Model_Quote_Address $address
* @return decimal
*
*/
public function getAddressCosts(Mage_Customer_Model_Address_Abstract $address)
{
if ($address->getCountry() == Mage::getStoreConfig('shipping/origin/country_id')) {
return $this->getInlandCosts();
} else {
return $this->getForeignCountryCosts();
}
}
示例3: _convertRequestAddress
/**
* Sets attributes from the Mage address on the AvaTax Request address.
*
* @return $this
*/
protected function _convertRequestAddress()
{
if (!$this->_requestAddress) {
$this->_requestAddress = new Address();
}
$this->_requestAddress->setLine1($this->_mageAddress->getStreet(1));
$this->_requestAddress->setLine2($this->_mageAddress->getStreet(2));
$this->_requestAddress->setCity($this->_mageAddress->getCity());
$this->_requestAddress->setRegion($this->_mageAddress->getRegionCode());
$this->_requestAddress->setCountry($this->_mageAddress->getCountry());
$this->_requestAddress->setPostalCode($this->_mageAddress->getPostcode());
return $this;
}
示例4: render
/**
* Render address
*
* @param Mage_Customer_Model_Address_Abstract $address
* @return string
*/
public function render(Mage_Customer_Model_Address_Abstract $address)
{
$format = $this->getType()->getDefaultFormat();
$countryFormat = $address->getCountryModel()->getFormat($this->getType()->getCode());
$address->getRegion();
$address->getCountry();
$address->explodeStreetAddress();
if ($countryFormat) {
$format = $countryFormat->getFormat();
}
$formater = new Varien_Filter_Template();
$formater->setVariables(array_merge($address->getData(), array('country' => $address->getCountryModel()->getName())));
return $formater->filter($format);
}
示例5: render
/**
* Render address
*
* @param Mage_Customer_Model_Address_Abstract $address
* @return string
*/
public function render(Mage_Customer_Model_Address_Abstract $address, $format = null)
{
$address->getRegion();
$address->getCountry();
$address->explodeStreetAddress();
$formater = new Varien_Filter_Template();
$data = $address->getData();
if ($this->getType()->getHtmlEscape()) {
foreach ($data as $key => $value) {
$data[$key] = $this->htmlEscape($value);
}
}
$formater->setVariables(array_merge($data, array('country' => $address->getCountryModel()->getName())));
$format = !is_null($format) ? $format : $this->getFormat($address);
return $formater->filter($format);
}
示例6: mapFromAddress
/**
* @param Mage_Customer_Model_Address_Abstract $address
*
* @return Payone_Api_Request_AddressCheck
*/
public function mapFromAddress(Mage_Customer_Model_Address_Abstract $address)
{
$request = $this->getFactory()->getRequestVerificationAddressCheck();
$helper = $this->helper();
$configGlobal = $this->getConfigGlobal();
$config = $this->getConfig();
// @todo move addressCheckType detection to method
// @todo add option to configure used Adresschecktype externaly
if ($address->getAddressType() === 'billing') {
$request->setAddresschecktype($config->getCheckBilling());
// check if billing is used for shipping and shipping-address has to be checked
if ($address->getUseForShipping() === true and $config->mustCheckShipping()) {
$request->setAddresschecktype($config->getCheckShipping());
}
} elseif ($address->getAddressType() === 'shipping') {
$request->setAddresschecktype($config->getCheckShipping());
} else {
throw new Exception('Invalid Address Check Type');
}
$request->setAid($configGlobal->getAid());
$request->setMid($configGlobal->getMid());
$request->setMode($config->getMode());
$request->setPortalid($configGlobal->getPortalid());
$request->setKey($configGlobal->getKey());
$request->setCity($address->getCity());
$request->setCompany($address->getCompany());
$request->setCountry($address->getCountry());
$request->setFirstname($address->getFirstname());
$request->setLastname($address->getLastname());
$request->setIntegratorName('Magento');
$request->setIntegratorVersion($helper->getMagentoVersion());
$request->setSolutionName('votum');
$request->setSolutionVersion($helper->getPayoneVersion());
$request->setEncoding('UTF-8');
$request->setLanguage($helper->getDefaultLanguage());
$request->setStreet($address->getStreetFull());
$request->setTelephonenumber($address->getTelephone());
$countryId = $address->getCountryId();
if ($countryId == "US" || $countryId == "CA") {
$request->setState($address->getRegionCode());
}
$request->setZip($address->getPostcode());
return $request;
}
示例7: mapFromAddress
/**
* @param Mage_Customer_Model_Address_Abstract $address
* @return Payone_Api_Request_Consumerscore
*/
public function mapFromAddress(Mage_Customer_Model_Address_Abstract $address)
{
$factory = $this->getFactory();
$request = $factory->getRequestVerificationConsumerScore();
$helper = $this->helper();
$configGlobal = $this->getConfigGlobal();
$config = $this->getConfig();
$request->setConsumerscoretype($config->getType());
$request->setAddresschecktype(Payone_Api_Enum_AddressCheckType::NONE);
$request->setAid($configGlobal->getAid());
$request->setMid($configGlobal->getMid());
$request->setMode($config->getMode());
$request->setPortalid($configGlobal->getPortalid());
$request->setKey($configGlobal->getKey());
$request->setCity($address->getCity());
$request->setCompany($address->getCompany());
$request->setCountry($address->getCountry());
$request->setFirstname($address->getFirstname());
$request->setLastname($address->getLastname());
$request->setIntegratorName('Magento');
$request->setIntegratorVersion($helper->getMagentoVersion());
$request->setSolutionName('votum');
$request->setSolutionVersion($helper->getPayoneVersion());
if ($customerId = $address->getCustomerId()) {
$customer = $factory->getModelCustomer();
$customer->load($customerId);
$date = $customer->getDob();
$date = date('Ymd', strtotime($date));
$request->setBirthday($date);
}
$request->setEncoding('UTF-8');
$request->setLanguage($helper->getDefaultLanguage());
$request->setStreet($address->getStreetFull());
$request->setTelephonenumber($address->getTelephone());
$request->setZip($address->getPostcode());
return $request;
}
示例8: _getAddressData
/**
* @param Mage_Customer_Model_Address_Abstract $address
* @return array
*/
protected function _getAddressData(Mage_Customer_Model_Address_Abstract $address)
{
$data = array();
if ($address) {
$data['name'] = $address->getName();
$data['address'] = $address->getStreetFull();
$data['city'] = $address->getCity();
$data['postcode'] = $address->getPostcode();
$data['country'] = $address->getCountry();
$data['state'] = $address->getRegion() ? $address->getRegion() : '';
}
return $data;
}
示例9: getStreetData
/**
* Retrieves street name, house number and house number extension from the shipping address.
* The shipping address may be in multiple street lines configuration or single line configuration. In the case of
* multi-line, each part of the street data will be in a separate field. In the single line configuration, each part
* will be in the same field and will have to be split using PREG.
*
* @param Mage_Customer_Model_Address_Abstract $address
*
* @return array
*/
public function getStreetData($address)
{
$fullStreet = $address->getStreetFull();
if ($address->getCountry() != 'NL') {
$fullStreet = $this->_getInternationalFullStreet($address);
$streetData = array('streetname' => $fullStreet, 'housenumber' => '', 'housenumberExtension' => '', 'fullStreet' => '');
return $streetData;
}
/**
* Split the address using PREG.
* @var TIG_MyParcel2014_Helper_Data $this
*/
$streetData = $this->_getSplitStreetData($fullStreet);
return $streetData;
}
示例10: getRegion
/**
* If the country for the Address is US then get the 2 character ISO region code;
* otherwise, for any other country get the fully qualified region name.
*
* @param Mage_Customer_Model_Address_Abstract
* @return string
*/
protected function getRegion(Mage_Customer_Model_Address_Abstract $address)
{
return $address->getCountry() === 'US' ? $address->getRegionCode() : $address->getRegion();
}
示例11: transferAddressToPhysicalAddressPayload
/**
* Transfer data from a Magento address model to a physical address payload.
*
* @param Mage_Customer_Model_Address_Abstract
* @param IPhysicalAddress
* @return self
*/
public function transferAddressToPhysicalAddressPayload(Mage_Customer_Model_Address_Abstract $address, IPhysicalAddress $addressPayload)
{
$addressPayload->setLines($address->getStreetFull())->setCity($address->getCity())->setMainDivision($address->getRegionCode())->setCountryCode($address->getCountry())->setPostalCode($address->getPostcode());
return $this;
}
示例12: getIsoRegionCode
/**
* extracts the region code in iso format (if possible)
*
* @param Mage_Customer_Model_Address_Abstract $address
*
* @return string - the regin code in iso format
*/
public function getIsoRegionCode(Mage_Customer_Model_Address_Abstract $address)
{
$regionCode = trim($address->getRegionCode());
$countryCode = $address->getCountry();
if ($this->isAlreadyIsoCode($regionCode, $countryCode)) {
return $regionCode;
}
if (0 === strpos($regionCode, $countryCode . '-')) {
return str_replace($countryCode . '-', '', $regionCode);
}
return $this->getRegionCodeFromMapping($countryCode, $regionCode);
}
示例13: createAddressHash
/**
* Creates a hash from an addresses key data
*
* @param Mage_Customer_Model_Address_Abstract $address
* @return string
*/
public function createAddressHash(Mage_Customer_Model_Address_Abstract $address)
{
$values = $address->getFirstname() . $address->getLastname() . $address->getStreetFull() . $address->getPostcode() . $address->getCity() . $address->getRegionCode() . $address->getCountry();
$hash = md5($values);
return $hash;
}