records appear in message body instead of in attached file
[koha.git] / admin / biblio_framework.pl
1 #!/usr/bin/perl
2 # NOTE: 4-character tabs
3
4 #written 20/02/2002 by paul.poulain@free.fr
5 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
6
7 # Copyright 2000-2002 Katipo Communications
8 #
9 # This file is part of Koha.
10 #
11 # Koha is free software; you can redistribute it and/or modify it under the
12 # terms of the GNU General Public License as published by the Free Software
13 # Foundation; either version 2 of the License, or (at your option) any later
14 # version.
15 #
16 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
18 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License along with
21 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
22 # Suite 330, Boston, MA  02111-1307 USA
23
24 use strict;
25 use CGI;
26 use C4::Context;
27 use C4::Output;
28 use C4::Search;
29 use C4::Auth;
30 use C4::Interface::CGI::Output;
31 use HTML::Template;
32
33 sub StringSearch  {
34         my ($env,$searchstring,$type)=@_;
35         my $dbh = C4::Context->dbh;
36         $searchstring=~ s/\'/\\\'/g;
37         my @data=split(' ',$searchstring);
38         my $count=@data;
39         my $sth=$dbh->prepare("Select * from biblio_framework where (frameworkcode like ?) order by frameworktext");
40         $sth->execute("$data[0]%");
41         my @results;
42         while (my $data=$sth->fetchrow_hashref){
43         push(@results,$data);
44         }
45         #  $sth->execute;
46         $sth->finish;
47         return (scalar(@results),\@results);
48 }
49
50 my $input = new CGI;
51 my $searchfield=$input->param('frameworkcode');
52 my $offset=$input->param('offset');
53 my $script_name="/cgi-bin/koha/admin/biblio_framework.pl";
54 my $frameworkcode=$input->param('frameworkcode');
55 my $pagesize=20;
56 my $op = $input->param('op');
57 $searchfield=~ s/\,//g;
58 my ($template, $borrowernumber, $cookie)
59     = get_template_and_user({template_name => "parameters/biblio_framework.tmpl",
60                              query => $input,
61                              type => "intranet",
62                              authnotrequired => 0,
63                              flagsrequired => {parameters => 1},
64                              debug => 1,
65                              });
66
67 if ($op) {
68 $template->param(script_name => $script_name,
69                                                 $op              => 1); # we show only the TMPL_VAR names $op
70 } else {
71 $template->param(script_name => $script_name,
72                                                 else              => 1); # we show only the TMPL_VAR names $op
73 }
74 ################## ADD_FORM ##################################
75 # called by default. Used to create form to add or  modify a record
76 if ($op eq 'add_form') {
77         #start the page and read in includes
78         #---- if primkey exists, it's a modify action, so read values to modify...
79         my $data;
80         if ($frameworkcode) {
81                 my $dbh = C4::Context->dbh;
82                 my $sth=$dbh->prepare("select * from biblio_framework where frameworkcode=?");
83                 $sth->execute($frameworkcode);
84                 $data=$sth->fetchrow_hashref;
85                 $sth->finish;
86         }
87         $template->param(frameworkcode => $frameworkcode,
88                                                         frameworktext => $data->{'frameworktext'},
89                                                         );
90 ;
91                                                                                                         # END $OP eq ADD_FORM
92 ################## ADD_VALIDATE ##################################
93 # called by add_form, used to insert/modify data in DB
94 } elsif ($op eq 'add_validate') {
95         my $dbh = C4::Context->dbh;
96         my $sth=$dbh->prepare("replace biblio_framework (frameworkcode,frameworktext) values (?,?)");
97         $sth->execute($input->param('frameworkcode'),$input->param('frameworktext'));
98         $sth->finish;
99         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=biblio_framework.pl\"></html>";
100         exit;
101                                                                                                         # END $OP eq ADD_VALIDATE
102 ################## DELETE_CONFIRM ##################################
103 # called by default form, used to confirm deletion of data in DB
104 } elsif ($op eq 'delete_confirm') {
105         #start the page and read in includes
106         my $dbh = C4::Context->dbh;
107
108         # Check both categoryitem and biblioitems, see Bug 199
109         my $total = 0;
110         for my $table ('marc_tag_structure') {
111            my $sth=$dbh->prepare("select count(*) as total from $table where frameworkcode=?");
112            $sth->execute($frameworkcode);
113            $total += $sth->fetchrow_hashref->{total};
114            $sth->finish;
115         }
116
117         my $sth=$dbh->prepare("select * from biblio_framework where frameworkcode=?");
118         $sth->execute($frameworkcode);
119         my $data=$sth->fetchrow_hashref;
120         $sth->finish;
121
122         $template->param(frameworkcode => $frameworkcode,
123                                                         frameworktext => $data->{'frameworktext'},
124                                                         total => $total);
125                                                                                                         # END $OP eq DELETE_CONFIRM
126 ################## DELETE_CONFIRMED ##################################
127 # called by delete_confirm, used to effectively confirm deletion of data in DB
128 } elsif ($op eq 'delete_confirmed') {
129         #start the page and read in includes
130         my $dbh = C4::Context->dbh;
131         my $frameworkcode=uc($input->param('frameworkcode'));
132         my $sth=$dbh->prepare("delete from marc_tag_structure where frameworkcode=?");
133         $sth->execute($frameworkcode);
134         $sth=$dbh->prepare("delete from marc_subfield_structure where frameworkcode=?");
135         $sth->execute($frameworkcode);
136         $sth=$dbh->prepare("delete from biblio_framework where frameworkcode=?");
137         $sth->execute($frameworkcode);
138         $sth->finish;
139         print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=biblio_framework.pl\"></html>";
140         exit;
141                                                                                                         # END $OP eq DELETE_CONFIRMED
142 ################## DEFAULT ##################################
143 } else { # DEFAULT
144         my $env;
145         my ($count,$results)=StringSearch($env,$searchfield,'web');
146         my $toggle="white";
147         my @loop_data;
148         for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
149                 my %row_data;
150                 if ($toggle eq 'white'){
151                         $row_data{toggle}="#ffffcc";
152                 } else {
153                         $row_data{toggle}="white";
154                 }
155                 $row_data{frameworkcode} = $results->[$i]{'frameworkcode'};
156                 $row_data{frameworktext} = $results->[$i]{'frameworktext'};
157                 push(@loop_data, \%row_data);
158         }
159         $template->param(loop => \@loop_data);
160         if ($offset>0) {
161                 my $prevpage = $offset-$pagesize;
162                 $template->param(previous => "$script_name?offset=".$prevpage);
163         }
164         if ($offset+$pagesize<$count) {
165                 my $nextpage =$offset+$pagesize;
166                 $template->param(next => "$script_name?offset=".$nextpage);
167         }
168 } #---- END $OP eq DEFAULT
169 output_html_with_http_headers $input, $cookie, $template->output;
170
171 # Local Variables:
172 # tab-width: 4
173 # End: