From a91cbf40e63f09f6e0177f08b0c83e554a0ea0f1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jan=20B=C3=BCren?= Date: Tue, 26 Oct 2021 11:59:49 +0200 Subject: [PATCH] =?utf8?q?Shopware6:=20Neue=20Shopschnittstelle=20hinzugef?= =?utf8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Einrückungen entsprechend gesetzt --- SL/ShopConnector/ALL.pm | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/SL/ShopConnector/ALL.pm b/SL/ShopConnector/ALL.pm index 3f29c99d8..1c352b1d5 100644 --- a/SL/ShopConnector/ALL.pm +++ b/SL/ShopConnector/ALL.pm @@ -3,26 +3,31 @@ package SL::ShopConnector::ALL; use strict; use SL::ShopConnector::Shopware; +use SL::ShopConnector::Shopware6; use SL::ShopConnector::WooCommerce; my %shop_connector_by_name = ( shopware => 'SL::ShopConnector::Shopware', - woocommerce => 'SL::ShopConnector::WooCommerce', + shopware6 => 'SL::ShopConnector::Shopware6', + woocommerce => 'SL::ShopConnector::WooCommerce', ); my %shop_connector_by_connector = ( - shopware => 'SL::ShopConnector::Shopware', + shopware => 'SL::ShopConnector::Shopware', + shopware6 => 'SL::ShopConnector::Shopware6', woocommerce => 'SL::ShopConnector::WooCommerce', ); my @shop_connector_order = qw( woocommerce shopware + shopware6 ); my @shop_connectors = ( - { id => "shopware", description => "Shopware" }, - { id => "woocommerce", description => "WooCommerce" }, + { id => "shopware", description => "Shopware" }, + { id => "shopware6", description => "Shopware6" }, + { id => "woocommerce", description => "WooCommerce" }, ); -- 2.20.1