Enh 6165: Add OPACResultsSidebar system preference
[koha.git] / admin / fieldmapping.pl
1 #!/usr/bin/perl
2 # Copyright 2009 SARL BibLibre
3 #
4 # This file is part of Koha.
5 #
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
9 # version.
10 #
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License along
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18
19 use strict;
20 use warnings;
21 use CGI;
22 use C4::Auth;
23 use C4::Biblio;
24 use C4::Koha;
25 use C4::Output;
26
27 my $query = new CGI;
28
29 my $framework = $query->param('framework') || "";
30
31 my $field         = $query->param('fieldname');
32 my $fieldcode     = $query->param('marcfield');
33 my $subfieldcode  = $query->param('marcsubfield');
34 my $op            = $query->param('op');
35 my $id            = $query->param('id');
36
37 my ($template, $loggedinuser, $cookie)
38     = get_template_and_user({template_name => "admin/fieldmapping.tmpl",
39                              query => $query,
40                              type => "intranet",
41                              authnotrequired => 0,
42                              flagsrequired => {parameters => 1},
43                              debug => 1,
44                              });
45
46 # get framework list
47 my $frameworks = getframeworks();
48 my @frameworkloop;
49 my $selected;
50 my $frameworktext;
51 foreach my $thisframeworkcode (keys %$frameworks) {
52          if ($thisframeworkcode eq $framework){
53                  $selected = 1;
54                  $frameworktext = $frameworks->{$thisframeworkcode}->{'frameworktext'};
55      } else {
56                 $selected = 0;
57      }
58         my %row =(value => $thisframeworkcode,
59                                 selected => $selected,
60                                 frameworktext => $frameworks->{$thisframeworkcode}->{'frameworktext'},
61                         );
62         push @frameworkloop, \%row;
63 }
64
65 if($op eq "delete" and $id){
66     DeleteFieldMapping($id);
67     print $query->redirect("/cgi-bin/koha/admin/fieldmapping.pl?framework=".$framework);
68     exit;
69 }
70
71 # insert operation
72 if($field and $fieldcode){
73     SetFieldMapping($framework, $field, $fieldcode, $subfieldcode);
74 }
75
76 my $fieldloop = GetFieldMapping($framework);
77
78 $template->param( frameworkloop => \@frameworkloop, 
79                   framework     => $framework,
80                   frameworktext => $frameworktext,
81                   fields        => $fieldloop,
82                 );
83
84 output_html_with_http_headers $query, $cookie, $template->output;