kivitendo/SL/Controller/TopQuickSearch/Part.pm @ 1c8c1067
2bccc0a2 | Sven Schöling | 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;
|