3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 use C4
::AuthoritiesMarc
;
31 use C4
::Koha
; # XXX subfield_is_koha_internal_p
35 my $op = $query->param('op');
37 my $authtypecode = $query->param('authtypecode');
38 $authtypecode ||= q{};
39 my $dbh = C4
::Context
->dbh;
41 my $authid = $query->param('authid');
42 my ( $template, $loggedinuser, $cookie );
44 my $authtypes = getauthtypes
;
46 foreach my $thisauthtype ( sort { $authtypes->{$a}{'authtypetext'} cmp $authtypes->{$b}{'authtypetext'} }
50 value
=> $thisauthtype,
51 selected
=> $thisauthtype eq $authtypecode,
52 authtypetext
=> $authtypes->{$thisauthtype}{'authtypetext'},
54 push @authtypesloop, \
%row;
57 if ( $op eq "do_search" ) {
58 my @marclist = $query->param('marclist');
59 my @and_or = $query->param('and_or');
60 my @excluding = $query->param('excluding');
61 my @operator = $query->param('operator');
62 my $orderby = $query->param('orderby');
63 my @value = $query->param('value');
65 my $startfrom = $query->param('startfrom') || 1;
66 my $resultsperpage = $query->param('resultsperpage') || 20;
68 my ( $results, $total ) =
69 SearchAuthorities
( \
@marclist, \
@and_or, \
@excluding, \
@operator, \
@value,
70 ( $startfrom - 1 ) * $resultsperpage,
71 $resultsperpage, $authtypecode, $orderby );
72 # use Data::Dumper; warn Data::Dumper::Dumper(@$results);
73 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
75 template_name
=> "authorities/searchresultlist.tmpl",
79 flagsrequired
=> { catalogue
=> 1 },
86 # we must get parameters once again. Because if there is a mainentry, it
87 # has been replaced by something else during the search, thus the links
88 # next/previous would not work anymore
89 my @marclist_ini = $query->param('marclist');
90 for ( my $i = 0 ; $i <= $#marclist ; $i++ ) {
92 push @field_data, { term
=> "marclist", val
=> $marclist_ini[$i] };
93 if (!defined $and_or[$i]) {
96 push @field_data, { term
=> "and_or", val
=> $and_or[$i] };
97 if (!defined $excluding[$i]) {
100 push @field_data, { term
=> "excluding", val
=> $excluding[$i] };
101 push @field_data, { term
=> "operator", val
=> $operator[$i] };
102 push @field_data, { term
=> "value", val
=> $value[$i] };
106 # construction of the url of each page
108 'authorities-home.pl?'
109 . join( '&', map { $_->{term
} . '=' . $_->{val
} } @field_data )
113 map { $_->{term
} . '=' . $_->{val
} } (
114 { term
=> 'resultsperpage', val
=> $resultsperpage },
115 { term
=> 'type', val
=> 'intranet' },
116 { term
=> 'op', val
=> 'do_search' },
117 { term
=> 'authtypecode', val
=> $authtypecode },
118 { term
=> 'orderby', val
=> $orderby },
122 my $from = ( $startfrom - 1 ) * $resultsperpage + 1;
124 if (!defined $total) {
128 if ( $total < $startfrom * $resultsperpage ) {
132 $to = $startfrom * $resultsperpage;
135 $template->param( result
=> $results ) if $results;
138 pagination_bar
=> pagination_bar
(
139 $base_url, int( $total / $resultsperpage ) + 1,
140 $startfrom, 'startfrom'
145 isEDITORS
=> $authtypecode eq 'EDITORS',
149 elsif ( $op eq "delete" ) {
150 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
152 template_name
=> "authorities/authorities-home.tmpl",
155 authnotrequired
=> 0,
156 flagsrequired
=> { catalogue
=> 1 },
160 &DelAuthority
( $authid, 1 );
163 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
165 template_name
=> "authorities/authorities-home.tmpl",
168 authnotrequired
=> 0,
169 flagsrequired
=> { catalogue
=> 1 },
177 authtypesloop
=> \
@authtypesloop,
181 output_html_with_http_headers
$query, $cookie, $template->output;