Bug 30477: Add new UNIMARC installer translation files
[koha.git] / members / search.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use CGI qw ( -utf8 );
21 use C4::Context;
22 use C4::Auth qw( get_template_and_user );
23 use C4::Output qw( output_html_with_http_headers );
24 use Koha::Patron::Attribute::Types;
25
26 my $input = CGI->new;
27
28 my ( $template, $loggedinuser, $cookie, $staff_flags ) = get_template_and_user(
29     {   template_name   => "members/search.tt",
30         query           => $input,
31         type            => "intranet",
32         flagsrequired   => { catalogue => '*' },
33     }
34 );
35
36 my $referer = $input->referer();
37
38 my @columns = split ',', $input->param('columns');
39 my $callback = $input->param('callback');
40 my $selection_type = $input->param('selection_type') || 'select';
41 my $filter = $input->param('filter');
42
43 $template->param(
44     view           => ( $input->request_method() eq "GET" ) ? "show_form" : "show_results",
45     callback       => $callback,
46     columns        => \@columns,
47     filter         => $filter,
48     selection_type => $selection_type,
49     attribute_type_codes => ( C4::Context->preference('ExtendedPatronAttributes')
50         ? [ Koha::Patron::Attribute::Types->search( { staff_searchable => 1 } )->get_column('code') ]
51         : [] ),
52 );
53 output_html_with_http_headers( $input, $cookie, $template->output );