コード例 #1
0
 public function _toHtml()
 {
     if ($this->_isActive()) {
         return parent::_toHtml();
     }
     return '';
 }
コード例 #2
0
ファイル: Link.php プロジェクト: jronatay/ultimo-magento-jron
 public function _toHtml()
 {
     $quote = Mage::getSingleton('checkout/session')->getQuote();
     if ($this->_isActive() && $quote->validateMinimumAmount()) {
         return parent::_toHtml();
     }
     return '';
 }