コード例 #1
0
ファイル: Abstract.php プロジェクト: jpbender/mage_virtual
 /**
  * Dispatch customer back to PayPal for editing payment information
  */
 public function editAction()
 {
     try {
         $this->getResponse()->setRedirect($this->_config->getExpressCheckoutEditUrl($this->_initToken()));
     } catch (Mage_Core_Exception $e) {
         $this->_getSession()->addError($e->getMessage());
         $this->_redirect('*/*/review');
     }
 }