X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=members%2Ffiles.pl;h=2abfbc71deea9b65691f4cc8d1b4442375fa2046;hb=992ccebbdb4635854ebada9c02e17846b7e82b90;hp=03a78476980fffa7eeeedc1d3638ad88a4170c65;hpb=d5c51417b5660116cd7b9b826749f945cc244c87;p=koha-ffzg.git diff --git a/members/files.pl b/members/files.pl index 03a7847698..2abfbc71de 100755 --- a/members/files.pl +++ b/members/files.pl @@ -4,48 +4,50 @@ # # This file is part of Koha. # -# Koha is free software; you can redistribute it and/or modify it under the -# terms of the GNU General Public License as published by the Free Software -# Foundation; either version 2 of the License, or (at your option) any later -# version. +# Koha is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. # -# Koha is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR -# A PARTICULAR PURPOSE. See the GNU General Public License for more details. +# Koha is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along -# with Koha; if not, write to the Free Software Foundation, Inc., -# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . -use strict; -use warnings; +use Modern::Perl; -use CGI; +use CGI qw ( -utf8 ); -use C4::Auth; -use C4::Output; +use C4::Auth qw( get_template_and_user ); +use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers ); use C4::Members; -use C4::Debug; -use Koha::DateUtils; -use Koha::Borrower::Files; +use Koha::Patrons; +use Koha::Patron::Files; +use Koha::Patron::Categories; my $cgi = CGI->new; my ( $template, $loggedinuser, $cookie ) = get_template_and_user( { - template_name => "members/files.tmpl", + template_name => "members/files.tt", query => $cgi, type => "intranet", - authnotrequired => 0, - flagsrequired => { borrowers => 1 }, - debug => 1, + flagsrequired => { borrowers => 'edit_borrowers' }, } ); $template->param( 'borrower_files' => 1 ); my $borrowernumber = $cgi->param('borrowernumber'); -my $bf = Koha::Borrower::Files->new( borrowernumber => $borrowernumber ); + +my $logged_in_user = Koha::Patrons->find( $loggedinuser ); +my $patron = Koha::Patrons->find($borrowernumber); +output_and_exit_if_error( $cgi, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } ); + +my $bf = Koha::Patron::Files->new( borrowernumber => $borrowernumber ); # FIXME Should be $patron->get_files. Koha::Patron::Files needs to be Koha::Objects based first my $op = $cgi->param('op') || ''; @@ -61,8 +63,9 @@ if ( $op eq 'download' ) { print $file->{'file_content'}; } else { - my $data = GetMember( borrowernumber => $borrowernumber ); - $template->param(%$data); + + my $patron_category = $patron->category; + $template->param( patron => $patron ); my %errors; @@ -88,7 +91,7 @@ else { name => $filename, type => $mimetype, content => $file_content, - description => $cgi->param('description'), + description => scalar $cgi->param('description'), ); } } @@ -96,14 +99,14 @@ else { $errors{'no_file'} = 1; } } elsif ( $op eq 'delete' ) { - $bf->DelFile( id => $cgi->param('file_id') ); + $bf->DelFile( id => scalar $cgi->param('file_id') ); } $template->param( - files => Koha::Borrower::Files->new( borrowernumber => $borrowernumber ) + files => Koha::Patron::Files->new( borrowernumber => $borrowernumber ) ->GetFilesInfo(), - errors => %errors + errors => \%errors, ); output_html_with_http_headers $cgi, $cookie, $template->output; }