/**
  * configureExcludedPaymentMethods returns a list of payment methods not to present on the paypage for this payment method method class.
  * @return string[] the list of excluded payment methods, @see SystemPaymentMethod
  */
 protected function configureExcludedPaymentMethods()
 {
     // first, exclude all invoice/paymentplan payment methods
     $methods = ExcludePayments::excludeInvoicesAndPaymentPlan();
     //card
     $methods[] = \Svea\SystemPaymentMethod::KORTCERT;
     $methods[] = \Svea\SystemPaymentMethod::SKRILL;
     //other
     $methods[] = \Svea\SystemPaymentMethod::PAYPAL;
     return $methods;
 }
Beispiel #2
0
 /**
  * configureExcludedPaymentMethods returns a list of payment methods not to 
  * present on the paypage for this payment method method class.
  * @return string[] the list of excluded payment methods, @see SystemPaymentMethod
  */
 protected function configureExcludedPaymentMethods()
 {
     // first, exclude all invoice/paymentplan payment methods
     $methods = ExcludePayments::excludeInvoicesAndPaymentPlan();
     //directbanks
     $methods[] = \Svea\SystemPaymentMethod::BANKAXESS;
     $methods[] = \Svea\SystemPaymentMethod::DBNORDEASE;
     $methods[] = \Svea\SystemPaymentMethod::DBSEBSE;
     $methods[] = \Svea\SystemPaymentMethod::DBSEBFTGSE;
     $methods[] = \Svea\SystemPaymentMethod::DBSHBSE;
     $methods[] = \Svea\SystemPaymentMethod::DBSWEDBANKSE;
     //other
     $methods[] = \Svea\SystemPaymentMethod::PAYPAL;
     return $methods;
 }