Bug 9302: Use patron-title.inc
[koha.git] / labels / label-edit-profile.pl
blob07e34caf1d2ad512a3c31afdabdc5f26bbf1d221
1 #!/usr/bin/perl
3 # Copyright 2006 Katipo Communications.
4 # Parts Copyright 2009 Foundations Bible College.
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use Modern::Perl;
23 use CGI qw ( -utf8 );
25 use C4::Auth qw(get_template_and_user);
26 use C4::Output qw(output_html_with_http_headers);
27 use C4::Creators;
28 use C4::Labels;
30 my $cgi = new CGI;
31 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
33 template_name => "labels/label-edit-profile.tt",
34 query => $cgi,
35 type => "intranet",
36 authnotrequired => 0,
37 flagsrequired => { catalogue => 1 },
38 debug => 1,
42 my $op = $cgi->param('op');
43 my $profile_id = $cgi->param('profile_id') || $cgi->param('element_id');
44 my $profile = undef;
45 my $template_list = undef;
46 my @label_template = ();
48 my $units = get_unit_values();
50 if ($op eq 'edit') {
51 $profile = C4::Labels::Profile->retrieve(profile_id => $profile_id);
52 $template_list = get_all_templates( { fields => [ qw( template_id template_code profile_id) ] } );
54 elsif ($op eq 'save') {
55 my @params = (
56 printer_name => scalar $cgi->param('printer_name') || 'DEFAULT PRINTER',
57 paper_bin => scalar $cgi->param('paper_bin') || 'Tray 1',
58 offset_horz => scalar $cgi->param('offset_horz') || 0,
59 offset_vert => scalar $cgi->param('offset_vert') || 0,
60 creep_horz => scalar $cgi->param('creep_horz') || 0,
61 creep_vert => scalar $cgi->param('creep_vert') || 0,
62 units => scalar $cgi->param('units') || 'POINT',
64 if ($profile_id) { # if a label_id was passed in, this is an update to an existing layout
65 $profile = C4::Labels::Profile->retrieve(profile_id => $profile_id);
66 $profile->set_attr(@params);
67 $profile->save();
69 else { # if no label_id, this is a new layout so insert it
70 $profile = C4::Labels::Profile->new(@params);
71 $profile->save();
73 print $cgi->redirect("label-manage.pl?label_element=profile");
74 exit;
76 else { # if we get here, this is a new layout
77 $profile = C4::Labels::Profile->new();
80 if ($profile_id) {
81 @label_template = grep {
82 ($_->{'profile_id'} == $profile->get_attr('profile_id')) && ($_->{'template_id'} == $profile->get_attr('template_id'));
83 } @$template_list;
86 foreach my $unit (@$units) {
87 if ($unit->{'type'} eq $profile->get_attr('units')) {
88 $unit->{'selected'} = 1;
92 $template->param(profile_id => $profile->get_attr('profile_id')) if $profile->get_attr('profile_id') > 0;
94 $template->param(
95 label_template => $label_template[0]->{'template_code'} || '',
96 printer_name => $profile->get_attr('printer_name'),
97 paper_bin => $profile->get_attr('paper_bin'),
98 offset_horz => $profile->get_attr('offset_horz'),
99 offset_vert => $profile->get_attr('offset_vert'),
100 creep_horz => $profile->get_attr('creep_horz'),
101 creep_vert => $profile->get_attr('creep_vert'),
102 units => $units,
103 op => $op,
106 output_html_with_http_headers $cgi, $cookie, $template->output;