Clean up before final commits
[koha.git] / cataloguing / addbooks.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 use strict;
23 use CGI;
24 use C4::Auth;
25 use C4::Biblio;
26 use C4::Output;
27 use C4::Interface::CGI::Output;
28 use C4::Koha;
29
30 my $query = new CGI;
31
32 my $error   = $query->param('error');
33 my $success = $query->param('biblioitem');
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
35     {
36         template_name   => "cataloguing/addbooks.tmpl",
37         query           => $query,
38         type            => "intranet",
39         authnotrequired => 0,
40         flagsrequired   => { editcatalogue => 1 },
41         debug           => 1,
42     }
43 );
44
45 # get framework list
46 my $frameworks = getframeworks;
47 my @frameworkcodeloop;
48 foreach my $thisframeworkcode (keys %$frameworks) {
49         my %row =(value => $thisframeworkcode,
50                                 frameworktext => $frameworks->{$thisframeworkcode}->{'frameworktext'},
51                         );
52         push @frameworkcodeloop, \%row;
53 }
54
55 my $marc_p = C4::Context->boolean_preference("marc");
56 $template->param( NOTMARC => !$marc_p,
57                                 frameworkcodeloop => \@frameworkcodeloop );
58
59 output_html_with_http_headers $query, $cookie, $template->output;