X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/9bd36f35c0e31d90352d342a29805e550b303cd3..2bccc0a27d0c6917ab219aeb60efcbc9ae043205:/SL/Controller/TopQuickSearch/Part.pm diff --git a/SL/Controller/TopQuickSearch/Part.pm b/SL/Controller/TopQuickSearch/Part.pm new file mode 100644 index 000000000..d6b01e021 --- /dev/null +++ b/SL/Controller/TopQuickSearch/Part.pm @@ -0,0 +1,16 @@ +package SL::Controller::TopQuickSearch::Part; + +use strict; +use parent qw(SL::Controller::TopQuickSearch::Article); + +use SL::Locale::String qw(t8); + +sub name { 'part' } + +sub description_config { t8('Parts') } + +sub description_field { t8('Parts') } + +sub type { type => 'part' } + +1;