本文整理汇总了PHP中Mage_Customer_Model_Address_Abstract::getCountryModel方法的典型用法代码示例。如果您正苦于以下问题:PHP Mage_Customer_Model_Address_Abstract::getCountryModel方法的具体用法?PHP Mage_Customer_Model_Address_Abstract::getCountryModel怎么用?PHP Mage_Customer_Model_Address_Abstract::getCountryModel使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mage_Customer_Model_Address_Abstract
的用法示例。
在下文中一共展示了Mage_Customer_Model_Address_Abstract::getCountryModel方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: 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);
}
示例2: 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);
}
示例3: render
/**
* Render address
*
* @param Mage_Customer_Model_Address_Abstract $address
* @return string
*/
public function render(Mage_Customer_Model_Address_Abstract $address, $format = null)
{
switch ($this->getType()->getCode()) {
case 'html':
$dataFormat = Mage_Customer_Model_Attribute_Data::OUTPUT_FORMAT_HTML;
break;
case 'pdf':
$dataFormat = Mage_Customer_Model_Attribute_Data::OUTPUT_FORMAT_PDF;
break;
case 'oneline':
$dataFormat = Mage_Customer_Model_Attribute_Data::OUTPUT_FORMAT_ONELINE;
break;
default:
$dataFormat = Mage_Customer_Model_Attribute_Data::OUTPUT_FORMAT_TEXT;
break;
}
$formater = new Varien_Filter_Template();
$attributes = Mage::helper('customer/address')->getAttributes();
$data = array();
foreach ($attributes as $attribute) {
/* @var $attribute Mage_Customer_Model_Attribute */
if (!$attribute->getIsVisible()) {
continue;
}
if ($attribute->getAttributeCode() == 'country_id') {
$data['country'] = $address->getCountryModel()->getName();
} else {
if ($attribute->getAttributeCode() == 'region') {
$data['region'] = Mage::helper('directory')->__($address->getRegion());
} else {
$dataModel = Mage_Customer_Model_Attribute_Data::factory($attribute, $address);
$value = $dataModel->outputValue($dataFormat);
if ($attribute->getFrontendInput() == 'multiline') {
$values = $dataModel->outputValue(Mage_Customer_Model_Attribute_Data::OUTPUT_FORMAT_ARRAY);
// explode lines
foreach ($values as $k => $v) {
$key = sprintf('%s%d', $attribute->getAttributeCode(), $k + 1);
$data[$key] = $v;
}
}
$data[$attribute->getAttributeCode()] = $value;
}
}
}
if ($this->getType()->getHtmlEscape()) {
foreach ($data as $key => $value) {
$data[$key] = $this->escapeHtml($value);
}
}
$formater->setVariables($data);
$format = !is_null($format) ? $format : $this->getFormat($address);
return $formater->filter($format);
}
示例4: 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);
}