From: Jan Büren Date: Tue, 26 Oct 2021 09:59:49 +0000 (+0200) Subject: Shopware6: Neue Shopschnittstelle hinzugefügt X-Git-Tag: kivitendo-mebil_0.1-0~10^2~2^2~218^2~41 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=a91cbf40e63f09f6e0177f08b0c83e554a0ea0f1;p=kivitendo-erp.git Shopware6: Neue Shopschnittstelle hinzugefügt Einrückungen entsprechend gesetzt --- 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" }, );