Bug 9302: Use patron-title.inc
[koha.git] / admin / fieldmapping.pl
blob631e7d4380a746972800275233d53aacebc3fbc0
1 #!/usr/bin/perl
2 # Copyright 2009 SARL BibLibre
3 # Copyright 2017 Koha Development Team
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
21 use CGI qw ( -utf8 );
22 use C4::Auth;
23 use C4::Biblio;
24 use C4::Output;
26 use Koha::BiblioFrameworks;
27 use Koha::FieldMappings;
29 my $query = new CGI;
31 my $frameworkcode = $query->param('framework') || "";
32 my $field = $query->param('fieldname');
33 my $fieldcode = $query->param('marcfield');
34 my $subfieldcode = $query->param('marcsubfield');
35 my $op = $query->param('op') || q{};
36 my $id = $query->param('id');
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
40 template_name => "admin/fieldmapping.tt",
41 query => $query,
42 type => "intranet",
43 authnotrequired => 0,
44 flagsrequired => { parameters => 'parameters_remaining_permissions' },
45 debug => 1,
49 # FIXME Add exceptions
50 if ( $op eq "delete" and $id ) {
51 Koha::FieldMappings->find($id)->delete;
52 } elsif ( $field and $fieldcode ) {
53 my $params = { frameworkcode => $frameworkcode, field => $field, fieldcode => $fieldcode, subfieldcode => $subfieldcode };
54 my $exists = Koha::FieldMappings->search( $params )->count;;
55 unless ( $exists ) {
56 Koha::FieldMapping->new( $params )->store;
60 my $fields = Koha::FieldMappings->search({ frameworkcode => $frameworkcode });
62 my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
63 my $framework = $frameworks->search( { frameworkcode => $frameworkcode } )->next;
64 $template->param(
65 frameworks => $frameworks,
66 framework => $framework,
67 fields => $fields,
70 output_html_with_http_headers $query, $cookie, $template->output;