1 package SL::ShopConnector::ALL;
 
   5 my %shop_connector_by_name = (
 
   6   shopware    => 'SL::ShopConnector::Shopware',
 
   9 my %shop_connector_by_connector = (
 
  10   shopware   => 'SL::ShopConnector::Shopware',
 
  13 my @shop_connector_order = qw(
 
  17 my @shop_connectors = (
 
  18   { id => "shopware",   description => "Shopware" },
 
  22 sub all_shop_connectors {
 
  23   map { $shop_connector_by_name{$_} } @shop_connector_order;
 
  26 sub shop_connector_class_by_name {
 
  27   $shop_connector_by_name{$_[1]};
 
  30 sub shop_connector_class_by_connector {
 
  31   $shop_connector_by_connector{$_[1]};