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 under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA 02111-1307 USA
28 use C4
::Auth
qw(get_template_and_user);
29 use C4
::Output
qw(output_html_with_http_headers);
30 use C4
::Labels
::Lib
1.000000 qw(get_barcode_types get_label_types get_font_types get_text_justification_types);
31 use C4
::Labels
::Layout
1.000000;
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
36 template_name
=> "labels/label-edit-layout.tmpl",
40 flagsrequired
=> { catalogue
=> 1 },
45 my $op = $cgi->param('op') || $ARGV[0] || '';
46 my $layout_id = $cgi->param('layout_id') || $cgi->param('element_id') || $ARGV[1] || '';
50 my ($type_list, $object, $data_type) = @_;
52 foreach my $type (@
$type_list) {
53 if ($layout->get_attr($data_type)) {
54 if ($type->{'type'} eq $layout->get_attr($data_type)) {
55 $type->{'selected'} = 1;
59 $type->{'selected'} = 1;
66 sub _select_format_string
{ # generate field table based on format_string
67 my $format_string = shift;
68 $format_string =~ s/(?<=,) (?![A-Z][a-z][0-9])//g; # remove spaces between fields
71 my ($row_index, $col_index, $field_index) = (0,0,0);
72 my $cols = 5; # number of columns to wrap on
73 my $csv = Text
::CSV_XS
->new({ allow_whitespace
=> 1 });
74 my $status = $csv->parse($format_string);
75 my @text_fields = $csv->fields();
76 warn sprintf('Error parsing format_string. Parser returned: %s', $csv->error_input()) if $csv->error_input();
77 my $field_count = $#text_fields + 1;
79 foreach my $text_field (@text_fields) {
80 $$fields[$col_index] = {field_empty
=> 0, field_name
=> ($text_field . "_tbl"), field_label
=> $text_field, order
=> [{num
=> '', selected
=> 0}]};
81 for (my $order_i = 1; $order_i <= $field_count; $order_i++) {
82 $$fields[$col_index]{'order'}[$order_i] = {num
=> $order_i, selected
=> ($field_index == $order_i-1 ?
1 : 0)};
86 if ((($col_index > 0) && !($col_index % $cols)) || ($field_index == $field_count)) { # wrap to new row
87 if (($field_index == $field_count) && ($row_index > 0)) { # in this case fill out row with empty fields
88 while ($col_index < $cols) {
89 $$fields[$col_index] = {field_empty
=> 1, field_name
=> '', field_label
=> '', order
=> [{num
=> '', selected
=> 0}]};
92 $$table[$row_index] = {text_fields
=> $fields};
95 $$table[$row_index] = {text_fields
=> $fields};
105 warn sprintf("Error performing '%s': No 'layout_id' passed in.", $op) unless ($layout_id);
106 $layout = C4
::Labels
::Layout
->retrieve(layout_id
=> $layout_id);
109 elsif ($op eq 'save') {
110 my $format_string = '';
111 if ($cgi->param('layout_choice') eq 'layout_table') { # translate the field table into a format_string
112 my @layout_table = ();
113 foreach my $cgi_param ($cgi->param()) {
114 if (($cgi_param =~ m/^(.*)_tbl$/) && ($cgi->param($cgi_param))) {
115 my $value = $cgi->param($cgi_param);
116 $layout_table[$value - 1] = $1;
119 @layout_table = grep {$_} @layout_table; # this removes numerically 'skipped' fields. ie. user omits a number in sequential order
120 $format_string = join ', ', @layout_table;
121 $cgi->param('format_string', $format_string);
124 barcode_type
=> $cgi->param('barcode_type'),
125 printing_type
=> $cgi->param('printing_type'),
126 layout_name
=> $cgi->param('layout_name'),
127 guidebox
=> ($cgi->param('guidebox') ?
1 : 0),
128 font
=> $cgi->param('font'),
129 font_size
=> $cgi->param('font_size'),
130 callnum_split
=> ($cgi->param('callnum_split') ?
1 : 0),
131 text_justify
=> $cgi->param('text_justify'),
132 format_string
=> $cgi->param('format_string'),
134 if ($layout_id) { # if a label_id was passed in, this is an update to an existing layout
135 $layout = C4
::Labels
::Layout
->retrieve(layout_id
=> $layout_id);
136 $layout->set_attr(@params);
139 else { # if no label_id, this is a new layout so insert it
140 $layout = C4
::Labels
::Layout
->new(@params);
143 print $cgi->redirect("label-manage.pl?label_element=layout");
146 else { # if we get here, this is a new layout
147 $layout = C4
::Labels
::Layout
->new();
150 my $barcode_types = _set_selected
(get_barcode_types
(), $layout, 'barcode_type');
151 my $label_types = _set_selected
(get_label_types
(), $layout, 'printing_type');
152 my $font_types = _set_selected
(get_font_types
(), $layout, 'font');
153 my $text_justification_types = _set_selected
(get_text_justification_types
(), $layout, 'text_justify');
154 my $select_text_fields = _select_format_string
($layout->get_attr('format_string'));
157 barcode_types
=> $barcode_types,
158 label_types
=> $label_types,
159 font_types
=> $font_types,
160 text_justification_types
=> $text_justification_types,
161 field_table
=> $select_text_fields,
162 layout_id
=> $layout->get_attr('layout_id') > -1 ?
$layout->get_attr('layout_id') : '',
163 layout_name
=> $layout->get_attr('layout_name'),
164 guidebox
=> $layout->get_attr('guidebox'),
165 font_size
=> $layout->get_attr('font_size'),
166 callnum_split
=> $layout->get_attr('callnum_split'),
167 format_string
=> $layout->get_attr('format_string'),
169 output_html_with_http_headers
$cgi, $cookie, $template->output;