1 package SL::ShopConnector::ALL;
5 use SL::ShopConnector::Shopware;
7 my %shop_connector_by_name = (
8 shopware => 'SL::ShopConnector::Shopware',
11 my %shop_connector_by_connector = (
12 shopware => 'SL::ShopConnector::Shopware',
15 my @shop_connector_order = qw(
19 my @shop_connectors = (
20 { id => "shopware", description => "Shopware" },
24 sub all_shop_connectors {
25 map { $shop_connector_by_name{$_} } @shop_connector_order;
28 sub shop_connector_class_by_name {
29 $shop_connector_by_name{$_[1]};
32 sub shop_connector_class_by_connector {
33 $shop_connector_by_connector{$_[1]};