Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 619e7aaf

Von Werner Hahn vor mehr als 7 Jahren hinzugefügt

  • ID 619e7aaf769ffd59ca8baae16cd24e690b075a1a
  • Vorgänger b7fec34b
  • Nachfolger e9fc1771

Shopmodul: nicht vorhandene Connectoren (XTCommerce, IDEAL) auskommentiert

Unterschiede anzeigen:

SL/Shop.pm
6 6
use SL::ShopConnector::ALL;
7 7
use SL::DB::Part;
8 8

  
9
# __PACKAGE__->run_before('check_auth');
10
# bb: warum auskommentiert - kann dann wohl weg, oder?
11

  
12 9
use Rose::Object::MakeMethods::Generic (
13 10
  'scalar'                => [ qw(config) ],
14 11
  'scalar --get_set_init' => [ qw(connector) ],
SL/ShopConnector/ALL.pm
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 {

Auch abrufbar als: Unified diff