Revision 5384e5cb
Von Sven Schöling vor etwa 10 Jahren hinzugefügt
SL/PriceSource/ALL.pm | ||
---|---|---|
17 | 17 |
makemodel |
18 | 18 |
); |
19 | 19 |
|
20 |
sub all_enabled_price_sources { |
|
21 |
my %disabled = map { $_ => 1 } @{ $::instance_conf->get_disabled_price_sources }; |
|
22 |
|
|
23 |
map { $price_sources_by_name{$_} } grep { !$disabled{$_} } @price_sources_order; |
|
24 |
} |
|
25 |
|
|
20 | 26 |
sub all_price_sources { |
21 | 27 |
map { $price_sources_by_name{$_} } @price_sources_order; |
22 | 28 |
} |
Auch abrufbar als: Unified diff
PriceSource: Konfiguration