installer (part 1): started major changes
[koha.git] / admin / mediatype.pl
blobcbbd482c91ff0b385e36f9592e2f12014978b488
1 #!/usr/bin/perl
2 # NOTE: 4-character tabs
4 #script to administer the mediatype table
5 #modified from the itemtype script written 20/02/2002 by paul.poulain@free.fr
6 #This script written by waylon@robertson.net.nz at 2nd June, 2005
8 # This software is placed under the gnu General Public License, v2 (http://www.gnu.org/licenses/gpl.html)
10 # ALGO :
11 # this script use an $op to know what to do.
12 # if $op is empty or none of the above values,
13 # - the default screen is build (with all records, or filtered datas).
14 # - the user can clic on add, modify or delete record.
15 # if $op=add_form
16 # - if primkey exists, this is a modification,so we read the $primkey record
17 # - builds the add/modify form
18 # if $op=add_validate
19 # - the user has just send datas, so we create/modify the record
20 # if $op=delete_form
21 # - we show the record having primkey=$primkey and ask for deletion validation form
22 # if $op=delete_confirm
23 # - we delete the record having primkey=$primkey
26 # Copyright 2000-2002 Katipo Communications
28 # This file is part of Koha.
30 # Koha is free software; you can redistribute it and/or modify it under the
31 # terms of the GNU General Public License as published by the Free Software
32 # Foundation; either version 2 of the License, or (at your option) any later
33 # version.
35 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
36 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
37 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
39 # You should have received a copy of the GNU General Public License along with
40 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
41 # Suite 330, Boston, MA 02111-1307 USA
43 use strict;
44 use CGI;
45 use C4::Context;
46 use C4::Auth;
47 use C4::Output;
50 sub StringSearch {
51 my ($searchstring,$type)=@_;
52 my $dbh = C4::Context->dbh;
53 $searchstring=~ s/\'/\\\'/g;
54 my @data=split(' ',$searchstring);
55 my $count=@data;
56 my $sth=$dbh->prepare("Select * from mediatypetable where (description like ?) order by mediatypecode");
57 $sth->execute("$data[0]%");
58 my @results;
59 while (my $data=$sth->fetchrow_hashref){
60 push(@results,$data);
62 # $sth->execute;
63 $sth->finish;
64 return (scalar(@results),\@results);
67 my $input = new CGI;
68 my $searchfield=$input->param('description');
69 my $offset=$input->param('offset');
70 my $script_name="/cgi-bin/koha/admin/mediatype.pl";
71 my $mediatypecode=$input->param('mediatypecode');
72 my $pagesize=20;
73 my $op = $input->param('op');
74 $searchfield=~ s/\,//g;
75 my ($template, $borrowernumber, $cookie)
76 = get_template_and_user({template_name => "admin/mediatype.tmpl",
77 query => $input,
78 type => "intranet",
79 authnotrequired => 0,
80 flagsrequired => {parameters => 1},
81 debug => 1,
82 });
84 if ($op) {
85 $template->param(script_name => $script_name,
86 $op => 1); # we show only the TMPL_VAR names $op
87 } else {
88 $template->param(script_name => $script_name,
89 else => 1); # we show only the TMPL_VAR names $op
91 ################## ADD_FORM ##################################
92 # called by default. Used to create form to add or modify a record
93 if ($op eq 'add_form') {
94 #start the page and read in includes
95 #---- if primkey exists, it's a modify action, so read values to modify...
96 my $data;
97 my $itemtypes;
98 my $dbh = C4::Context->dbh;
99 my @itemtypesselected;
100 if ($mediatypecode) {
101 my $sth=$dbh->prepare("select mediatypecode,description,itemtypecodes from mediatypetable where mediatypecode=?");
102 $sth->execute($mediatypecode);
103 $data=$sth->fetchrow_hashref;
104 $sth->finish;
105 @itemtypesselected = split ( /\|/, $data->{'itemtypecodes'} );
108 my $sth=$dbh->prepare("select description,itemtype from itemtypes order by description");
109 $sth->execute;
110 while (my ($description,$itemtype) = $sth->fetchrow) {
111 $itemtypes .='<td><input type="checkbox" name="itemtypecodes" value="'.$itemtype.'"';
112 if(grep /$itemtype/,@itemtypesselected){
113 $itemtypes .=' checked';
115 $itemtypes .='>'.$description.'</td>';
118 $template->param(mediatypecode => $mediatypecode,
119 description => $data->{'description'},
120 itemtypes => $itemtypes
123 # END $OP eq ADD_FORM
124 ################## ADD_VALIDATE ##################################
125 # called by add_form, used to insert/modify data in DB
126 } elsif ($op eq 'add_validate') {
127 my $dbh = C4::Context->dbh;
128 my @itemtypecodesarray = $input->param('itemtypecodes');
129 my $itemtypecodes=join('|',@itemtypecodesarray);
130 my $sth=$dbh->prepare("replace mediatypetable (mediatypecode,description,itemtypecodes) values (?,?,?)");
131 $sth->execute(
132 $input->param('mediatypecode'),$input->param('description'),
133 $itemtypecodes
135 $sth->finish;
136 print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=mediatype.pl\"></html>";
137 exit;
138 # END $OP eq ADD_VALIDATE
139 ################## DELETE_CONFIRM ##################################
140 # called by default form, used to confirm deletion of data in DB
141 } elsif ($op eq 'delete_confirm') {
142 #start the page and read in includes
143 my $dbh = C4::Context->dbh;
144 my $sth=$dbh->prepare("select mediatypecode,description,itemtypecodes from mediatypetable where mediatypecode=?");
145 $sth->execute($mediatypecode);
146 my $data=$sth->fetchrow_hashref;
147 $sth->finish;
149 $template->param(mediatypecode => $mediatypecode,
150 description => $data->{'description'},
151 itemtypecodes => $data->{'itemtypecodes'});
152 # END $OP eq DELETE_CONFIRM
153 ################## DELETE_CONFIRMED ##################################
154 # called by delete_confirm, used to effectively confirm deletion of data in DB
155 } elsif ($op eq 'delete_confirmed') {
156 #start the page and read in includes
157 my $dbh = C4::Context->dbh;
158 my $mediatypecode=uc($input->param('mediatypecode'));
159 my $sth=$dbh->prepare("delete from mediatypetable where mediatypecode=?");
160 $sth->execute($mediatypecode);
161 $sth->finish;
162 print "Content-Type: text/html\n\n<META HTTP-EQUIV=Refresh CONTENT=\"0; URL=mediatype.pl\"></html>";
163 exit;
164 # END $OP eq DELETE_CONFIRMED
165 ################## DEFAULT ##################################
166 } else { # DEFAULT
167 my ($count,$results)=StringSearch($searchfield,'web');
168 my $toggle=0;
169 my @loop_data;
170 for (my $i=$offset; $i < ($offset+$pagesize<$count?$offset+$pagesize:$count); $i++){
171 my %row_data;
172 if ($toggle eq 0){
173 $toggle=1;
174 } else {
175 $toggle=0;
177 $row_data{toggle} = $toggle;
178 $row_data{mediatypecode} = $results->[$i]{mediatypecode};
179 $row_data{description} = $results->[$i]{description};
180 $row_data{itemtypecodes} = $results->[$i]{itemtypecodes};
181 push(@loop_data, \%row_data);
183 $template->param(loop => \@loop_data);
184 if ($offset>0) {
185 my $prevpage = $offset-$pagesize;
186 $template->param(previous => "$script_name?offset=".$prevpage);
188 if ($offset+$pagesize<$count) {
189 my $nextpage =$offset+$pagesize;
190 $template->param(next => "$script_name?offset=".$nextpage);
192 } #---- END $OP eq DEFAULT
193 output_html_with_http_headers $input, $cookie, $template->output;
195 # Local Variables:
196 # tab-width: 4
197 # End: