Revision 2480121f
Von Werner Hahn vor etwa 1 Jahr hinzugefügt
SL/DB/Manager/VariantProperty.pm | ||
---|---|---|
|
||
sub object_class { 'SL::DB::VariantProperty' }
|
||
|
||
use SL::DB::Helper::Sorted;
|
||
|
||
__PACKAGE__->make_manager_methods;
|
||
|
||
sub _sort_spec {
|
||
return ( default => [ 'sortkey', 1 ],
|
||
columns => { SIMPLE => 'ALL' } );
|
||
}
|
||
|
||
1;
|
SL/DB/Manager/VariantPropertyValue.pm | ||
---|---|---|
|
||
sub object_class { 'SL::DB::VariantPropertyValue' }
|
||
|
||
use SL::DB::Helper::Sorted;
|
||
|
||
__PACKAGE__->make_manager_methods;
|
||
|
||
sub _sort_spec {
|
||
return ( default => [ 'sortkey', 1 ],
|
||
columns => { SIMPLE => 'ALL' } );
|
||
}
|
||
|
||
1;
|
Auch abrufbar als: Unified diff
VariantProperty | VariantPropertyValue : sort_spec