• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP Varien_Filter_Template类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



在下文中一共展示了Varien_Filter_Template类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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);
 }
开发者ID:arslbbt,项目名称:mangentovies,代码行数:20,代码来源:Default.php


示例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);
 }
开发者ID:ronseigel,项目名称:agent-ohm,代码行数:22,代码来源:Address_Renderer_Default.php


示例3: 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);
 }
开发者ID:codercv,项目名称:urbansurprisedev,代码行数:38,代码来源:Default.php


示例4: 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);
 }
开发者ID:hientruong90,项目名称:ee_14_installer,代码行数:59,代码来源:Default.php


示例5: _getSectionConfig

 /**
  * Собирает секцию для конфиг файла
  * Каждый индекс имеет свою секцию
  * Секция состоит source (откуда-что брать) и index (куда это писать и как его индексировать)
  * Шаблон секции находиться в расширении etc/config/section.conf.
  *
  * @param string $name    название (код индекса)
  * @param object $indexer Индексатор! индекса
  *
  * @return string готовая секция
  */
 protected function _getSectionConfig($name, $indexer)
 {
     $sqlHost = Mage::getConfig()->getNode('global/resources/default_setup/connection/host');
     $sqlPort = 3306;
     if (count(explode(':', $sqlHost)) == 2) {
         $arr = explode(':', $sqlHost);
         $sqlHost = $arr[0];
         $sqlPort = $arr[1];
     }
     $data = array('name' => $name, 'sql_host' => $sqlHost, 'sql_port' => $sqlPort, 'sql_user' => Mage::getConfig()->getNode('global/resources/default_setup/connection/username'), 'sql_pass' => Mage::getConfig()->getNode('global/resources/default_setup/connection/password'), 'sql_db' => Mage::getConfig()->getNode('global/resources/default_setup/connection/dbname'), 'sql_query_pre' => $this->_getSqlQueryPre($indexer), 'sql_query' => $this->_getSqlQuery($indexer), 'sql_query_delta' => $this->_getSqlQueryDelta($indexer), 'sql_attr_uint' => $indexer->getPrimaryKey(), 'min_word_len' => Mage::getStoreConfig(Mage_CatalogSearch_Model_Query::XML_PATH_MIN_QUERY_LENGTH), 'index_path' => $this->_basePath . DS . $name, 'delta_index_path' => $this->_basePath . DS . $name . '_delta');
     foreach ($data as $key => $value) {
         $data[$key] = str_replace('#', '\\#', $value);
     }
     $formater = new Varien_Filter_Template();
     $formater->setVariables($data);
     $config = $formater->filter(file_get_contents($this->getSphinxSectionCfgTpl()));
     return $config;
 }
开发者ID:vishalpatel14,项目名称:indiankalaniketan,代码行数:29,代码来源:Sphinx.php


示例6: parse

 protected function parse($str, $vars)
 {
     $processor = new Varien_Filter_Template();
     $processor->setVariables($vars);
     return $processor->filter($str);
 }
开发者ID:CherylMuniz,项目名称:fashion,代码行数:6,代码来源:IndexController.php


示例7: _initPluginVersion

 /**
  * Init Plugin Version in AvaTax section comment
  *
  * @return \OnePica_AvaTax_Helper_Config
  */
 protected function _initPluginVersion()
 {
     $taxSection = $this->getSection('tax');
     if ($taxSection) {
         $pathComment = 'groups/avatax/comment';
         $comment = $taxSection->descend($pathComment);
         if ($comment) {
             $comment = $comment[0];
             $version = Mage::getConfig()->getNode('modules/OnePica_AvaTax/version');
             if ($this->_getDataHelper()->isAvatax16()) {
                 $version16 = Mage::getConfig()->getNode('default/tax/avatax/avatax16_extension_version');
                 $version = $version16 . ' (' . $version . ')';
             }
             $processor = new Varien_Filter_Template();
             $processor->setVariables(array('avatax_ver' => $version));
             $precessedComment = $processor->filter($comment);
             $taxSection->setNode($pathComment, $precessedComment);
         }
     }
     return $this;
 }
开发者ID:onepica,项目名称:avatax,代码行数:26,代码来源:Config.php


示例8: getReturnAddress

 /**
  * Get formatted return address
  *
  * @param string $formatCode
  * @param array $data - array of address data
  * @param int|null $storeId - Store Id
  * @return string
  */
 public function getReturnAddress($formatCode = 'html', $data = array(), $storeId = null)
 {
     if (empty($data)) {
         $data = $this->_getAddressData($storeId);
     }
     $format = null;
     if (isset($data['countryId'])) {
         $countryModel = $this->_getCountryModel()->load($data['countryId']);
         $format = $countryModel->getFormat($formatCode);
     }
     if (!$format) {
         $path = sprintf('%s%s', Mage_Customer_Model_Address_Config::XML_PATH_ADDRESS_TEMPLATE, $formatCode);
         $format = Mage::getStoreConfig($path, $storeId);
     }
     $formater = new Varien_Filter_Template();
     $formater->setVariables($data);
     return $formater->filter($format);
 }
开发者ID:hientruong90,项目名称:ee_14_installer,代码行数:26,代码来源:Data.php


示例9: filter

 /**
  * Filter the string as template.
  * Rewrited for logging exceptions
  *
  * @param string $value
  * @return string
  */
 public function filter($value)
 {
     try {
         $value = Varien_Filter_Template::filter($value);
     } catch (Exception $e) {
         throw $e;
         //$value = '';
         //Mage::logException($e);
     }
     return $value;
 }
开发者ID:sakibanda,项目名称:emarketing,代码行数:18,代码来源:Filter.php


示例10: checkProductmaxAmount

 /**
  * Check max amount after adding product to cart
  *
  * @param Mage_Sales_Model_Quote_Item $quoteItem
  */
 public function checkProductmaxAmount($quoteItem)
 {
     $quoteStore = $quoteItem->getStore();
     if ($this->isProductEnable($quoteStore)) {
         $maxAmount = $this->getCartMaxAmount($quoteStore);
         /* @var $quote Mage_Sales_Model_Quote */
         $quote = $quoteItem->getQuote();
         $grandTotal = $quote->getGrandTotal();
         $_product = Mage::getModel('catalog/product')->load($quoteItem->getProduct()->getId());
         $grandTotal += $_product->getFinalPrice($quoteItem->getQty());
         if ($grandTotal > $maxAmount) {
             $formater = new Varien_Filter_Template();
             $formater->setVariables(array('amount' => Mage::helper('core')->currency($maxAmount, true, false)));
             $format = $this->getProductMessage($quoteStore);
             // throw exception for "remove" product to cart
             Mage::throwException($formater->filter($format));
         }
     }
 }
开发者ID:sagmahajan,项目名称:aswan_release,代码行数:24,代码来源:Data.php


示例11: filter

 /**
  * Filter the string as template.
  * Rewrited for logging exceptions
  *
  * @param string $value
  * @return string
  */
 public function filter($value)
 {
     try {
         $value = parent::filter($value);
     } catch (Exception $e) {
         $value = '';
         Mage::logException($e);
     }
     return $value;
 }
开发者ID:SalesOneGit,项目名称:s1_magento,代码行数:17,代码来源:Filter.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP Varien_Http_Adapter_Curl类代码示例发布时间:2022-05-23
下一篇:
PHP Varien_File_Uploader类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap