removed pdf::table declaration, not needed anymore.
[koha.git] / barcodes / printerConfig.pl
1 #!/usr/bin/perl
2
3 # script to set the labels configuration for the printer process.
4 # written 07/04
5 # by Veleda Matias - matias_veleda@hotmail.com - Physics Library UNLP Argentina and
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 require Exporter;
23
24 use strict;
25
26 use CGI;
27 use C4::Context;
28 use C4::Output;
29 use C4::Auth;
30 use HTML::Template;
31 use PDF::API2;
32 use PDF::API2::Page;
33 use PDF::API2::PDF::Utils;
34 use C4::Interface::CGI::Output;
35
36 # This function returns the path to deal with the correct files, considering
37 # templates set and language.
38 sub getPath {
39         my $type = shift @_;
40         my $templatesSet = C4::Context->preference('template');
41         my $lang = C4::Context->preference('opaclanguages');
42         if ($type eq "intranet") {
43                 return "$ENV{'DOCUMENT_ROOT'}/intranet-tmpl/$templatesSet/$lang";
44         } else {
45                 return "$ENV{'DOCUMENT_ROOT'}/opac-tmpl/$templatesSet/$lang";
46         }
47 }
48
49 # Load a configuration file.
50 sub loadConfFromFile {
51   my $fileName = shift @_;
52         my %keyValues;
53         open FILE, "<$fileName";
54         while (<FILE>) {
55                 chomp;
56                 if (/\s*([\w_]*)\s*=\s*([\[\]\<\>\w_\s:@,\.-]*)\s*/) {
57                         $keyValues{$1} = $2;
58                 }
59         }
60         close FILE;
61         return %keyValues;
62 }
63
64 # Save settings to a configuration file.
65 sub saveConfToFile {
66         my $fileName = shift @_;
67         my %keyValues = %{shift @_};
68         my $i;
69         open FILE, ">$fileName";                        
70         my $i;
71         foreach $i (keys(%keyValues)) {
72     print FILE $i." = ".$keyValues{$i}."\n";
73         }
74         close FILE;
75 }
76
77 # Creates a CGI object and take his parameters
78 my $input = new CGI;
79
80 if ($input->param('saveSettings')) {
81         my $labelConf = &getPath("intranet")."/includes/labelConfig/itemsLabelConfig.conf";
82         my %newConfiguration = (pageType => $input->param('pageType'),  
83                                                         columns => $input->param('columns'),            
84                                                         rows => $input->param('rows'),  
85                                                         systemDpi => $input->param('systemDpi'),        
86                                                         labelWidth => $input->param('labelWidth'),      
87                                                         labelHeigth => $input->param('labelHeigth'),    
88                                                         marginBottom => $input->param('marginBottom'),  
89                                                         marginLeft => $input->param('marginLeft'));     
90         saveConfToFile($labelConf, \%newConfiguration);
91         print $input->redirect('/cgi-bin/koha/barcodes/barcodes.pl')
92 }
93
94 # Get the template to use
95 my ($template, $loggedinuser, $cookie)
96     = get_template_and_user({template_name => "barcodes/printerConfig.tmpl",
97                                          type => "intranet",
98                                          query => $input,
99                                          authnotrequired => 0,
100                                          flagsrequired => {parameters => 1},
101                                                  debug => 1,
102                                        });
103
104 my $filenameConf = &getPath("intranet")."/includes/labelConfig/itemsLabelConfig.conf";
105 my %labelConfig = &loadConfFromFile($filenameConf);
106
107 $template->param(COLUMNS => $labelConfig{'columns'});
108 $template->param(ROWS => $labelConfig{'rows'});
109 $template->param(SYSTEM_DPI => $labelConfig{'systemDpi'});
110 $template->param(LABEL_WIDTH => $labelConfig{'labelWidth'});
111 $template->param(LABEL_HEIGTH => $labelConfig{'labelHeigth'});
112 $template->param(MARGIN_TOP => $labelConfig{'marginBottom'});
113 $template->param(MARGIN_LEFT => $labelConfig{'marginLeft'});
114 $template->param(SCRIPT_NAME => '/cgi-bin/koha/barcodes/printerConfig.pl');
115 $template->param("$labelConfig{'pageType'}" => 1);
116 $template->param(intranetcolorstylesheet => C4::Context->preference("intranetcolorstylesheet"),
117                 intranetstylesheet => C4::Context->preference("intranetstylesheet"),
118                 IntranetNav => C4::Context->preference("IntranetNav"),
119                 );
120 output_html_with_http_headers $input, $cookie, $template->output;