当前位置: 首页>>代码示例>>PHP>>正文


PHP Mage_Customer_Model_Address_Abstract::getStreetFull方法代码示例

本文整理汇总了PHP中Mage_Customer_Model_Address_Abstract::getStreetFull方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Customer_Model_Address_Abstract::getStreetFull方法的具体用法?PHP Mage_Customer_Model_Address_Abstract::getStreetFull怎么用?PHP Mage_Customer_Model_Address_Abstract::getStreetFull使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Mage_Customer_Model_Address_Abstract的用法示例。


在下文中一共展示了Mage_Customer_Model_Address_Abstract::getStreetFull方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: 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;
 }
开发者ID:kirchbergerknorr,项目名称:payone-magento,代码行数:49,代码来源:AddressCheck.php

示例2: saveCustomerAddress

 /**
  * Store date and score to customerAddress.
  * If the quoteAddress is not a saved customerAddress we do nothing
  * If it gets saved to the addressBook at end of checkout Magento´ convert functionality saves the data for us
  *
  * @param Mage_Customer_Model_Address_Abstract $address
  * @return bool
  */
 public function saveCustomerAddress(Mage_Customer_Model_Address_Abstract $address)
 {
     $customerAddressId = $address->getCustomerAddressId();
     if (empty($customerAddressId)) {
         return false;
     }
     $customerAddress = $this->getFactory()->getModelCustomerAddress();
     $customerAddress->load($customerAddressId);
     if (!$customerAddress->hasData()) {
         return false;
     }
     $customerAddress->setData($this->prefix . '_score', $address->getData($this->prefix . '_score'));
     $customerAddress->setData($this->prefix . '_date', $address->getData($this->prefix . '_date'));
     $customerAddress->setData($this->prefix . '_hash', $address->getData($this->prefix . '_hash'));
     $customerAddress->setCity($address->getCity());
     $customerAddress->setStreetFull($address->getStreetFull());
     $customerAddress->setZip($address->getZip());
     $customerAddress->save();
     return true;
 }
开发者ID:kirchbergerknorr,项目名称:payone-magento,代码行数:28,代码来源:Abstract.php

示例3: 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;
 }
开发者ID:kirchbergerknorr,项目名称:payone-magento,代码行数:41,代码来源:Creditrating.php

示例4: _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;
 }
开发者ID:yurevichcv,项目名称:UniversalVariable-Magento-Extension,代码行数:17,代码来源:Uv.php

示例5: generateAddressHash

 /**
  * generates hash from address data
  *
  * @param Mage_Sales_Model_Quote_Address $address the address data to hash
  *
  * @returns sha1 hash of address
  */
 public function generateAddressHash(Mage_Customer_Model_Address_Abstract $address)
 {
     $addressString = $address->getFirstname();
     $addressString .= $address->getMiddlename();
     $addressString .= $address->getLastname();
     $addressString .= $address->getCompany();
     $street = $address->getStreetFull();
     if (is_array($street)) {
         $street = implode('', $street);
     }
     $addressString .= $street;
     $addressString .= $address->getPostcode();
     $addressString .= $address->getCity();
     $addressString .= $address->getCountryId();
     return sha1($addressString);
 }
开发者ID:roshu1980,项目名称:add-computers,代码行数:23,代码来源:Alias.php

示例6: 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;
 }
开发者ID:myparcelnl,项目名称:magento1,代码行数:25,代码来源:Data.php

示例7: customerAddressToPhysicalAddressPayload

 /**
  * Transfer data from a Magento customer address to a ROM SDK
  * PhysicalAddress payload.
  *
  * @param Mage_Customer_Model_Address_Abstract
  * @param IPhysicalAddress
  * @return IPhysicalAddress
  */
 public function customerAddressToPhysicalAddressPayload(Mage_Customer_Model_Address_Abstract $address, IPhysicalAddress $payload)
 {
     return $payload->setLines($address->getStreetFull())->setCity($address->getCity())->setMainDivision($address->getRegionId())->setCountryCode($address->getCountryId())->setPostalCode($address->getPostcode());
 }
开发者ID:WinstonN,项目名称:magento-retail-order-management,代码行数:12,代码来源:Payload.php

示例8: 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;
 }
开发者ID:kirchbergerknorr,项目名称:payone-magento,代码行数:12,代码来源:Data.php


注:本文中的Mage_Customer_Model_Address_Abstract::getStreetFull方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。