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


PHP Mage_Wishlist_Block_Abstract::_toHtml方法代码示例

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


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

示例1: _toHtml

 /**
  * Prepare before to html
  *
  * @return string
  */
 protected function _toHtml()
 {
     if ($this->getCustomWishlist() && $this->getItemCount() || $this->hasWishlistItems()) {
         return parent::_toHtml();
     }
     return '';
 }
开发者ID:evinw,项目名称:project_bloom_magento,代码行数:12,代码来源:Sidebar.php

示例2: _toHtml

 /**
  * Retrieve block html
  *
  * @return string
  */
 protected function _toHtml()
 {
     if ($this->isEnabled()) {
         return parent::_toHtml();
     }
     return '';
 }
开发者ID:hientruong90,项目名称:ee_14_installer,代码行数:12,代码来源:Column.php

示例3: _toHtml

 /**
  * Prepare before to html
  *
  * @return string
  */
 protected function _toHtml()
 {
     if ($this->getItemCount()) {
         return parent::_toHtml();
     }
     return '';
 }
开发者ID:barneydesmond,项目名称:propitious-octo-tribble,代码行数:12,代码来源:Sidebar.php

示例4: _toHtml

 /**
  * Build block html
  *
  * @return string
  */
 protected function _toHtml()
 {
     if (Mage::helper('enterprise_wishlist')->isMultipleEnabled() && $this->isWishlistDeleteable()) {
         return parent::_toHtml();
     }
     return '';
 }
开发者ID:QiuLihua83,项目名称:magento-enterprise-1.13.1.0,代码行数:12,代码来源:Delete.php

示例5: _toHtml

 /**
  * Prepare before to html
  *
  * @return string
  */
 protected function _toHtml()
 {
     if ($this->_getHelper()->hasItems()) {
         return parent::_toHtml();
     }
     return '';
 }
开发者ID:hunnybohara,项目名称:magento-chinese-localization,代码行数:12,代码来源:Sidebar.php

示例6: _toHtml

 /**
  * Render block html
  *
  * @return string
  */
 protected function _toHtml()
 {
     $this->setOptionList($this->getConfiguredOptions());
     return parent::_toHtml();
 }
开发者ID:SalesOneGit,项目名称:s1_magento,代码行数:10,代码来源:Options.php

示例7: _toHtml

 /**
  * Render block html
  *
  * @return string
  */
 protected function _toHtml()
 {
     $cfg = $this->getOptionsRenderCfg($this->getItem()->getProduct()->getTypeId());
     if (!$cfg) {
         return '';
     }
     $helper = Mage::helper($cfg['helper']);
     if (!$helper instanceof Mage_Catalog_Helper_Product_Configuration_Interface) {
         Mage::throwException($this->__("Helper for wishlist options rendering doesn't implement required interface."));
     }
     if ($cfg['template']) {
         $template = $cfg['template'];
     } else {
         $cfgDefault = $this->getOptionsRenderCfg('default');
         if (!$cfgDefault) {
             return '';
         }
         $template = $cfgDefault['template'];
     }
     $this->setTemplate($template)->setOptionList($helper->getOptions($this->getItem()));
     return parent::_toHtml();
 }
开发者ID:hazaeluz,项目名称:magento_connect,代码行数:27,代码来源:Options.php


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