Revision cadaf439
Von Sven Schöling vor mehr als 7 Jahren hinzugefügt
SL/DB/Helper/CustomVariables.pm | ||
---|---|---|
$cache->{module} = { partition_by { $_->module } @$configs };
|
||
}
|
||
|
||
$params{module}
|
||
? $cache->{module}{$params{module}}
|
||
: $cache->{all};
|
||
return $params{module} && !ref $params{module} ? $cache->{module}{$params{module}}
|
||
: $params{module} && ref $params{module} ? [ map { @{ $cache->{module}{$_} } } @{ $params{module} } ]
|
||
: $cache->{all};
|
||
}
|
||
|
||
sub _overload_by_module {
|
Auch abrufbar als: Unified diff
CustomVariables: all_config cache korrekt behandeln für überladene Module