4 # script to upload a picture to a borrowerimages directory.
5 # checks to see if its either displaying the upload form
6 # or doing the actual upload.
7 # written by Waylon Robertson (genjimoto@sourceforge) 2005/08/22
10 # Copyright 2000-2002 Katipo Communications
12 # This file is part of Koha.
14 # Koha is free software; you can redistribute it and/or modify it under the
15 # terms of the GNU General Public License as published by the Free Software
16 # Foundation; either version 2 of the License, or (at your option) any later
19 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
20 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
21 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License along
24 # with Koha; if not, write to the Free Software Foundation, Inc.,
25 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
37 my $name = $input->param('name');
38 my $borrowernumber = $input->param('borrowernumber');
39 my $photo = $input->param('photo');
42 my $htdocs = C4
::Context
->config('intrahtdocs');
43 my $upload_dir = $htdocs."/borrowerimages";
45 $template_name = "members/member-picupload.tmpl";
47 $template_name = "members/moremember.tmpl";
50 my ($template, $loggedinuser, $cookie)
51 = get_template_and_user
({template_name
=> $template_name,
55 flagsrequired
=> {borrowers
=> 1},
60 my $filename=$borrowernumber.'.jpg';
61 my $upload_filehandle = $input->upload("photo");
62 open (my $upload_fh, '>', "$upload_dir/$filename");
64 while ( <$upload_filehandle> )
72 borrowernumber
=> $borrowernumber,
75 output_html_with_http_headers
$input, $cookie, $template->output;
77 print $input->redirect("http://intranet/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");