bounce browser to printer URL and return with station
[koha.git] / labels / label-home.pl
index 9c69367..b5b361c 100755 (executable)
@@ -1,21 +1,35 @@
 #!/usr/bin/perl
-
-use strict;
-use CGI;
-use C4::Auth;
-use C4::Output;
-use C4::Labels;
-use C4::Output;
-use C4::Context;
-use HTML::Template::Pro;
-
-# use Smart::Comments;
-
-my $query = new CGI;
+#
+# Copyright 2006 Katipo Communications.
+# Parts Copyright 2009 Foundations Bible College.
+#
+# This file is part of Koha.
+#       
+# Koha is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# Koha is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
+
+use Modern::Perl;
+
+use CGI qw ( -utf8 );
+
+use C4::Auth qw(get_template_and_user);
+use C4::Output qw(output_html_with_http_headers);
+
+my $cgi = new CGI;
 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
     {
-        template_name   => "labels/label-home.tmpl",
-        query           => $query,
+        template_name   => "labels/label-home.tt",
+        query           => $cgi,
         type            => "intranet",
         authnotrequired => 0,
         flagsrequired   => { catalogue => 1 },
@@ -23,69 +37,4 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
     }
 );
 
-# little block for displaying active layout/template/batch in templates
-# ----------
-my $batch_id     = $query->param('batch_id');
-my $active_layout = get_active_layout();
-my $active_template = GetActiveLabelTemplate();
-my $active_layout_name = $active_layout->{'layoutname'};
-my $active_template_name = $active_template->{'tmpl_code'};
-# ----------
-
-
-my $data = get_label_options();
-my $op =  $query->param('op');
-my $layout_id =  $query->param('layout_id');
-
-my @label_templates = GetAllLabelTemplates();
-my @printingtypes       = get_printingtypes();
-my @layouts       = get_layouts();
-my @barcode_types = get_barcode_types();
-my @batches = get_batches();
-
-if ($op = 'delete_layout') {
-delete_layout($layout_id);
-}
-
-
-
-###  $data
-
-$template->param( guidebox => 1 ) if ( $data->{'guidebox'} );
-$template->param( "papertype_$data->{'papertype'}"       => 1 );
-$template->param( "$data->{'barcodetype'}_checked" => 1 );
-$template->param( "startrow" . $data->{'startrow'} . "_checked" => 1 );
-
-$template->param(
-    op => $op,
-    active_layout_name => $active_layout_name,
-    active_template_name => $active_template_name,
-
-    label_templates => \@label_templates,
-    barcode_types   => \@barcode_types,
-    printingtypes    => \@printingtypes,
-layout_loop => \@layouts,
-
-batches => \@batches,
-     id             => $data->{'id'},
-    barcodetype    => $data->{'barcodetype'},
-      papertype => $data->{'papertype'},
-
-    tx_author         => $data->{'author'},
-    tx_barcode        => $data->{'barcode'},
-   tx_title          => $data->{'title'},
-    tx_isbn           => $data->{'isbn'},
-    tx_issn           => $data->{'issn'},
-    tx_itemtype            => $data->{'itemtype'},
-    tx_dewey          => $data->{'dewey'},
-    tx_class          => $data->{'class'},
-    tx_subclass       => $data->{'subclass'},
-    tx_itemcallnumber => $data->{'itemcallnumber'},
-
-    startlabel     => $data->{'startlabel'},
-    fontsize       => $active_template->{'fontsize'},
-
-);
-
-output_html_with_http_headers $query, $cookie, $template->output;
+output_html_with_http_headers $cgi, $cookie, $template->output;