本文整理汇总了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 '';
}
示例2: _toHtml
/**
* Retrieve block html
*
* @return string
*/
protected function _toHtml()
{
if ($this->isEnabled()) {
return parent::_toHtml();
}
return '';
}
示例3: _toHtml
/**
* Prepare before to html
*
* @return string
*/
protected function _toHtml()
{
if ($this->getItemCount()) {
return parent::_toHtml();
}
return '';
}
示例4: _toHtml
/**
* Build block html
*
* @return string
*/
protected function _toHtml()
{
if (Mage::helper('enterprise_wishlist')->isMultipleEnabled() && $this->isWishlistDeleteable()) {
return parent::_toHtml();
}
return '';
}
示例5: _toHtml
/**
* Prepare before to html
*
* @return string
*/
protected function _toHtml()
{
if ($this->_getHelper()->hasItems()) {
return parent::_toHtml();
}
return '';
}
示例6: _toHtml
/**
* Render block html
*
* @return string
*/
protected function _toHtml()
{
$this->setOptionList($this->getConfiguredOptions());
return parent::_toHtml();
}
示例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();
}