X-Git-Url: http://wagnertech.de/git?p=kivitendo-erp.git;a=blobdiff_plain;f=SL%2FDB%2FManager%2FContactTitle.pm;fp=SL%2FDB%2FManager%2FContactTitle.pm;h=dea095d38af90ac0b1acbedb6d37b834c4c24379;hp=0000000000000000000000000000000000000000;hb=53593baa211863fbf66540cf1bcc36c8fb37257f;hpb=deb4d2dbb676d7d6f69dfe7815d6e0cb09bd4a44 diff --git a/SL/DB/Manager/ContactTitle.pm b/SL/DB/Manager/ContactTitle.pm new file mode 100644 index 000000000..dea095d38 --- /dev/null +++ b/SL/DB/Manager/ContactTitle.pm @@ -0,0 +1,23 @@ +# This file has been auto-generated only because it didn't exist. +# Feel free to modify it at will; it will not be overwritten automatically. + +package SL::DB::Manager::ContactTitle; + +use strict; + +use parent qw(SL::DB::Helper::Manager); + +use SL::DB::Helper::Sorted; + +sub object_class { 'SL::DB::ContactTitle' } + +__PACKAGE__->make_manager_methods; + +sub _sort_spec { + return ( default => [ 'description', 1 ], + columns => { SIMPLE => 'ALL', + map { ( $_ => "lower(contact_titles.$_)" ) } qw(description) + }); +} + +1;