Merge branch 'mymerges'
[koha.git] / barcodes / label-home.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 under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation; either version 2 of the License, or (at your option) any later
8 # version.
9 #
10 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
16 # Suite 330, Boston, MA  02111-1307 USA
17
18 use strict;
19 use CGI;
20 use C4::Auth;
21 use C4::Output;
22 use C4::Labels;
23 use C4::Context;
24
25
26 my $query = new CGI;
27 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
28     {
29         template_name   => "barcodes/label-home.tmpl",
30         query           => $query,
31         type            => "intranet",
32         authnotrequired => 0,
33         flagsrequired   => { tools => 1 },
34         debug           => 1,
35     }
36 );
37
38 my $data = get_label_options();
39
40 my $active_template = GetActiveLabelTemplate();
41 my @label_templates = GetAllLabelTemplates();
42
43 $template->param( guidebox => 1 ) if ( $data->{'guidebox'} );
44
45 $data->{'printingtype'} = 'both' if ( !$data->{'printingtype'} );
46 $template->param( "printingtype_$data->{'printingtype'}" => 1 );
47 $template->param( "papertype_$data->{'papertype'}"       => 1 );
48
49 $template->param( "$data->{'barcodetype'}_checked" => 1 );
50
51 $template->param( "startrow" . $data->{'startrow'} . "_checked" => 1 );
52 $template->param(
53     itemtype        => $data->{'itemtype'},
54     active_template => $data->{'active_template'},
55     label_templates => \@label_templates,
56
57     papertype      => $data->{'papertype'},
58     author         => $data->{'author'},
59     barcode        => $data->{'barcode'},
60     id             => $data->{'id'},
61     barcodetype    => $data->{'barcodetype'},
62     title          => $data->{'title'},
63     isbn           => $data->{'isbn'},
64     dewey          => $data->{'dewey'},
65     class          => $data->{'class'},
66     startrow       => $data->{'startrow'},
67     subclass       => $data->{'subclass'},
68     itemcallnumber => $data->{'itemcallnumber'},
69     startlabel     => $data->{'startlabel'},
70     fontsize       => $active_template->{'fontsize'},
71
72     intranetcolorstylesheet =>
73       C4::Context->preference("intranetcolorstylesheet"),
74     intranetstylesheet => C4::Context->preference("intranetstylesheet"),
75     IntranetNav        => C4::Context->preference("IntranetNav"),
76 );
77
78 output_html_with_http_headers $query, $cookie, $template->output;