X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/1066d8c03c3700f5e977b98219572ef9a513d027..2737667aa9394428f885187928509e7c5d0ec4d4:/SL/DB/Manager/CustomVariableConfig.pm diff --git a/SL/DB/Manager/CustomVariableConfig.pm b/SL/DB/Manager/CustomVariableConfig.pm new file mode 100644 index 000000000..1def3c84b --- /dev/null +++ b/SL/DB/Manager/CustomVariableConfig.pm @@ -0,0 +1,20 @@ +package SL::DB::Manager::CustomVariableConfig; + +use strict; + +use SL::DB::Helper::Manager; +use base qw(SL::DB::Helper::Manager); + +use SL::DB::Helper::Paginated; +use SL::DB::Helper::Sorted; + +sub object_class { 'SL::DB::CustomVariableConfig' } + +__PACKAGE__->make_manager_methods; + +sub _sort_spec { + return ( default => [ 'sortkey', 1 ], + columns => { SIMPLE => 'ALL' } ); +} + +1;