diff --git a/htdocs/stripe/admin/stripe.php b/htdocs/stripe/admin/stripe.php
index c304a00ce3f..9198277e2f7 100644
--- a/htdocs/stripe/admin/stripe.php
+++ b/htdocs/stripe/admin/stripe.php
@@ -387,6 +387,21 @@ if ($conf->global->MAIN_FEATURES_LEVEL >= 2) // TODO Not used by current code
print '';
}
+// Activate Bancontact
+if ($conf->global->MAIN_FEATURES_LEVEL >= 2) // TODO Not used by current code
+{
+ print '
| ';
+ print $langs->trans("STRIPE_BANCONTACT").' | ';
+ if ($conf->use_javascript_ajax) {
+ print ajax_constantonoff('STRIPE_BANCONTACT');
+ } else {
+ $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
+ print $form->selectarray("STRIPE_BANCONTACT", $arrval, $conf->global->STRIPE_BANCONTACT);
+ }
+ print ' '.$langs->trans("ExampleOnlyForBECustomers").'';
+ print ' |
';
+}
+
// Activate iDEAL
if ($conf->global->MAIN_FEATURES_LEVEL >= 2) // TODO Not used by current code
{
@@ -402,6 +417,36 @@ if ($conf->global->MAIN_FEATURES_LEVEL >= 2) // TODO Not used by current code
print '';
}
+// Activate Giropay
+if ($conf->global->MAIN_FEATURES_LEVEL >= 2) // TODO Not used by current code
+{
+ print '| ';
+ print $langs->trans("STRIPE_GIROPAY").' | ';
+ if ($conf->use_javascript_ajax) {
+ print ajax_constantonoff('STRIPE_GIROPAY');
+ } else {
+ $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
+ print $form->selectarray("STRIPE_GIROPAY", $arrval, $conf->global->STRIPE_GIROPAY);
+ }
+ print ' '.$langs->trans("ExampleOnlyForDECustomers").'';
+ print ' |
';
+}
+
+// Activate Sofort
+if ($conf->global->MAIN_FEATURES_LEVEL >= 2) // TODO Not used by current code
+{
+ print '| ';
+ print $langs->trans("STRIPE_SOFORT").' | ';
+ if ($conf->use_javascript_ajax) {
+ print ajax_constantonoff('STRIPE_SOFORT');
+ } else {
+ $arrval = array('0' => $langs->trans("No"), '1' => $langs->trans("Yes"));
+ print $form->selectarray("STRIPE_SOFORT", $arrval, $conf->global->STRIPE_SOFORT);
+ }
+ print ' '.$langs->trans("ExampleOnlyForATBEDEITNLESCustomers").'';
+ print ' |
';
+}
+
// Warehouse for automatic decrement
//if ($conf->global->MAIN_FEATURES_LEVEL >= 2) // warehouse to reduce stock for online payment
//{