bug fixed 'weeklength', not showing in subscription edit screen
[koha.git] / members / member-picupload.pl
blob6ca68a754b5503af11ebc0878a6fbacf35786410
1 #!/usr/bin/perl
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
17 # version.
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 with
24 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
25 # Suite 330, Boston, MA 02111-1307 USA
27 use strict;
28 use C4::Auth;
29 use C4::Context;
30 use C4::Output;
31 use CGI;
34 my $input = new CGI;
35 my $name = $input->param('name');
36 my $borrowernumber = $input->param('borrowernumber');
37 my $photo = $input->param('photo');
39 my $template_name;
40 my $upload_dir=
41 my $htdocs = C4::Context->config('intrahtdocs');
42 my $upload_dir = $htdocs."/borrowerimages";
43 if($photo eq ""){
44 $template_name = "members/member-picupload.tmpl";
45 } else {
46 $template_name = "members/moremember.tmpl";
49 my ($template, $loggedinuser, $cookie)
50 = get_template_and_user({template_name => $template_name,
51 query => $input,
52 type => "intranet",
53 authnotrequired => 0,
54 flagsrequired => {borrowers => 1},
55 debug => 1,
56 });
57 if ($photo){
59 my $filename=$borrowernumber.'.jpg';
60 my $upload_filehandle = $input->upload("photo");
61 open UPLOADFILE, ">$upload_dir/$filename";
62 binmode UPLOADFILE;
63 while ( <$upload_filehandle> )
65 print UPLOADFILE;
67 close UPLOADFILE;
69 else {
70 $template->param(
71 borrowernumber => $borrowernumber,
72 name => $name
74 output_html_with_http_headers $input, $cookie, $template->output;
76 print $input->redirect("http://intranet/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");