Exemplo n.º 1
0
 protected function _afterToHtml($html)
 {
     if ($this->_unregUrlStore) {
         $this->_unregUrlStore = false;
         Mage::unregister('url_store');
     }
     Mage::app()->setCurrentStore($this->_oldStoreId);
     return parent::_afterToHtml($html);
 }
 /**
  * @param string $html
  * @return string
  */
 public function _afterToHtml($html)
 {
     /*
      * after block is rendered we should clear relevant checkout session fields to avoid
      * falsy interpretation on further checkout passes
      */
     // do not unset mandate status as we need it in further processing
     $this->getFactory()->getSingletonCheckoutSession()->unsetData('payone_sepa_mandate_text');
     return parent::_afterToHtml($html);
 }
Exemplo n.º 3
0
 protected function _afterToHtml($html)
 {
     /*
     Varien_Data_Form::setFieldsetRenderer(
         $this->_oldFieldsetRenderer
     );
     Varien_Data_Form::setFieldsetElementRenderer(
         $this->_oldFieldsetElementRenderer
     );
     */
     if ($this->_unregUrlStore) {
         $this->_unregUrlStore = false;
         Mage::unregister('url_store');
     }
     Mage::app()->setCurrentStore($this->_oldStoreId);
     return parent::_afterToHtml($html);
 }
 /**
  * Processing block html after rendering
  *
  * @param   string $html
  * @return  string
  */
 protected function _afterToHtml($html)
 {
     return parent::_afterToHtml($html);
     // TODO: Change the autogenerated stub
 }
Exemplo n.º 5
0
 protected function _afterToHtml($html)
 {
     $this->_getCoreSession()->unsetData('login_form_data');
     return parent::_afterToHtml($html);
 }
Exemplo n.º 6
0
 protected function _afterToHtml($html)
 {
     $this->unsetFormData();
     return parent::_afterToHtml($html);
 }
Exemplo n.º 7
0
 /**
  * Processing block html after rendering
  *
  * @param   string $html
  *
  * @return  string
  */
 protected function _afterToHtml($html)
 {
     Mage::helper('integernet_piwik')->getHasQuoteUpdate(true);
     return parent::_afterToHtml($html);
 }
 /**
  * after block is rendered we should clear relevant checkout session fields to avoid
  * falsy interpretation on further checkout passes
  *
  * @param string $html
  * @return string
  */
 protected function _afterToHtml($html)
 {
     $this->getCheckoutSession()->unsPayoneSepaMandateDownloadEnabled();
     $this->getCheckoutSession()->unsPayoneSepaMandateIdentification();
     return parent::_afterToHtml($html);
 }
Exemplo n.º 9
0
 /**
  * after block is rendered we should clear relevant checkout session fields to avoid
  * falsy interpretation on further checkout passes
  *
  * @param string $html
  * @return string
  */
 protected function _afterToHtml($html)
 {
     $this->getCheckoutSession()->unsPayoneBarzahlenHtml();
     return parent::_afterToHtml($html);
 }