Revision c2e49890
Von Bernd Bleßmann vor mehr als 4 Jahren hinzugefügt
SL/DB/Manager/Greeting.pm | ||
---|---|---|
7 | 7 |
|
8 | 8 |
use parent qw(SL::DB::Helper::Manager); |
9 | 9 |
|
10 |
use SL::DB::Helper::Sorted; |
|
11 |
|
|
10 | 12 |
sub object_class { 'SL::DB::Greeting' } |
11 | 13 |
|
12 | 14 |
__PACKAGE__->make_manager_methods; |
13 | 15 |
|
16 |
sub _sort_spec { |
|
17 |
return ( default => [ 'description', 1 ], |
|
18 |
columns => { SIMPLE => 'ALL', |
|
19 |
map { ( $_ => "lower(greetings.$_)" ) } qw(description) |
|
20 |
}); |
|
21 |
} |
|
22 |
|
|
14 | 23 |
1; |
Auch abrufbar als: Unified diff
Anreden: SimpleSettings-Controller zum Editieren