Revision cd076a15
Von Werner Hahn vor 8 Monaten hinzugefügt
SL/DB/Manager/VariantProperty.pm | ||
---|---|---|
9 | 9 |
|
10 | 10 |
sub object_class { 'SL::DB::VariantProperty' } |
11 | 11 |
|
12 |
use SL::DB::Helper::Sorted; |
|
13 |
|
|
12 | 14 |
__PACKAGE__->make_manager_methods; |
13 | 15 |
|
16 |
sub _sort_spec { |
|
17 |
return ( default => [ 'sortkey', 1 ], |
|
18 |
columns => { SIMPLE => 'ALL' } ); |
|
19 |
} |
|
20 |
|
|
14 | 21 |
1; |
SL/DB/Manager/VariantPropertyValue.pm | ||
---|---|---|
9 | 9 |
|
10 | 10 |
sub object_class { 'SL::DB::VariantPropertyValue' } |
11 | 11 |
|
12 |
use SL::DB::Helper::Sorted; |
|
13 |
|
|
12 | 14 |
__PACKAGE__->make_manager_methods; |
13 | 15 |
|
16 |
sub _sort_spec { |
|
17 |
return ( default => [ 'sortkey', 1 ], |
|
18 |
columns => { SIMPLE => 'ALL' } ); |
|
19 |
} |
|
20 |
|
|
14 | 21 |
1; |
Auch abrufbar als: Unified diff
VariantProperty | VariantPropertyValue : sort_spec