1 |
1 |
package SL::ShopConnector::ALL;
|
2 |
2 |
|
3 |
3 |
use strict;
|
4 |
|
use SL::ShopConnector::XTCommerce;
|
|
4 |
#use SL::ShopConnector::XTCommerce;
|
5 |
5 |
use SL::ShopConnector::Shopware;
|
6 |
6 |
# use SL::ShopConnector::ideal;
|
7 |
7 |
|
8 |
8 |
my %shop_connector_by_name = (
|
9 |
|
xtcommerce => 'SL::ShopConnector::XTCommerce',
|
|
9 |
# xtcommerce => 'SL::ShopConnector::XTCommerce',
|
10 |
10 |
shopware => 'SL::ShopConnector::Shopware',
|
11 |
|
ideal => 'SL::ShopConnector::IDeal',
|
|
11 |
# ideal => 'SL::ShopConnector::IDeal',
|
12 |
12 |
);
|
13 |
13 |
|
14 |
14 |
my %shop_connector_by_connector = (
|
15 |
|
xtcommerce => 'SL::ShopConnector::XTCommerce',
|
|
15 |
# xtcommerce => 'SL::ShopConnector::XTCommerce',
|
16 |
16 |
shopware => 'SL::ShopConnector::Shopware',
|
17 |
|
ideal => 'SL::ShopConnector::IDeal',
|
|
17 |
# ideal => 'SL::ShopConnector::IDeal',
|
18 |
18 |
);
|
19 |
19 |
|
20 |
20 |
my @shop_connector_order = qw(
|
... | ... | |
25 |
25 |
|
26 |
26 |
my @shop_connectors =
|
27 |
27 |
(
|
28 |
|
{ id => "xtcommerce", description => "XT Commerce"},
|
|
28 |
# { id => "xtcommerce", description => "XT Commerce"},
|
29 |
29 |
{ id => "shopware", description => "Shopware" },
|
30 |
|
{ id => "ideal", description => "IDeal" }
|
|
30 |
# { id => "ideal", description => "IDeal" }
|
31 |
31 |
);
|
32 |
32 |
|
33 |
33 |
sub all_enabled_shop_connectors {
|
Shopmodul: nicht vorhandene Connectoren (XTCommerce, IDEAL) auskommentiert