summaryrefslogtreecommitdiff
path: root/httemplate/search/searchbar.cgi
blob: c9328716ebc8c6b9a5d6fcb8cf32bfffd363a9f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%init>
my %searches = (
  'customers' => 'cust_main.cgi?search_cust=',
  'prospects' => 'prospect_main.html?search_prospect=',
  'invoices'  => 'cust_bill.html?invnum=',
  'services'  => 'cust_svc.html?search_svc=',
);
if ( FS::Conf->new->config('ticket_system') ) {
  $searches{'tickets'} = FS::TicketSystem->baseurl . 'index.html?q=';
}

$cgi->param('search_for') =~ /^(\w+)$/;
my $search = $searches{$1} or die "unknown search type: '$1'\n";
my $q = $cgi->param('q'); # pass through unparsed
</%init>
<% $cgi->redirect($search . $q) %>