コード例 #1
0
 /**
  * Add recurring payment ids to session
  *
  * @return void
  */
 public function addRecurringPaymentIdsToSession()
 {
     if ($this->_recurringPayments) {
         $ids = array();
         foreach ($this->_recurringPayments as $payment) {
             $ids[] = $payment->getId();
         }
         $this->_checkoutSession->setLastRecurringPaymentIds($ids);
     }
 }