Ejemplo n.º 1
0
 public function _toHtml()
 {
     if ($this->_isActive()) {
         return parent::_toHtml();
     }
     return '';
 }
Ejemplo n.º 2
0
 public function _toHtml()
 {
     $quote = Mage::getSingleton('checkout/session')->getQuote();
     if ($this->_isActive() && $quote->validateMinimumAmount()) {
         return parent::_toHtml();
     }
     return '';
 }
Ejemplo n.º 3
0
 protected function _construct()
 {
     $this->getCheckout()->setStepData('payment', array('label' => Mage::helper('checkout')->__('Payment Information'), 'is_show' => $this->isShow()));
     parent::_construct();
 }
Ejemplo n.º 4
0
 /**
  * Initialize data and prepare it for output
  */
 protected function _beforeToHtml()
 {
     $this->_prepareLastOrder();
     return parent::_beforeToHtml();
 }
Ejemplo n.º 5
0
 protected function _construct()
 {
     $this->getCheckout()->setStepData('shipping', array('label' => Mage::helper('checkout')->__('Shipping Information'), 'is_show' => $this->isShow(), 'allow' => true));
     parent::_construct();
 }