WebshopApi: ShopConnector WooCommerce erstellt
[kivitendo-erp.git] / SL / ShopConnector / ALL.pm
index 4aebe89..3f29c99 100644 (file)
@@ -3,21 +3,26 @@ 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" },
 );