Projekt

Allgemein

Profil

Herunterladen (365 Bytes) Statistiken
| Zweig: | Markierung: | Revision:
1c8c1067 Geoffrey Richardson
package SL::Controller::TopQuickSearch::Customer;

use strict;
use parent qw(SL::Controller::TopQuickSearch::CustomerVendor);
use SL::DB::Customer;

use SL::Locale::String qw(t8);

3bb4190a Moritz Bunkus
sub auth { undef }
1c8c1067 Geoffrey Richardson
sub name { 'customer' }

sub model { 'Customer' }

sub db { 'customer' }

sub description_config { t8('Customers') }

sub description_field { t8('Customers') }

1;