X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/e01550a6900d0a126f1f40d56a09345f5b23dd27..53f7b40841432dec27fcbb0772dc4adb11d9cda7:/SL/ShopConnector/ALL.pm diff --git a/SL/ShopConnector/ALL.pm b/SL/ShopConnector/ALL.pm index 809f74ad1..3f29c99d8 100644 --- a/SL/ShopConnector/ALL.pm +++ b/SL/ShopConnector/ALL.pm @@ -2,17 +2,27 @@ package SL::ShopConnector::ALL; use strict; +use SL::ShopConnector::Shopware; +use SL::ShopConnector::WooCommerce; + my %shop_connector_by_name = ( + shopware => 'SL::ShopConnector::Shopware', + woocommerce => 'SL::ShopConnector::WooCommerce', ); my %shop_connector_by_connector = ( + shopware => 'SL::ShopConnector::Shopware', + woocommerce => 'SL::ShopConnector::WooCommerce', ); my @shop_connector_order = qw( + woocommerce shopware ); my @shop_connectors = ( + { id => "shopware", description => "Shopware" }, + { id => "woocommerce", description => "WooCommerce" }, );