Koha 3.8.0 Translation Update
[koha.git] / opac / opac-privacy.pl
blobca505605ae8262de7e063f480fd0118ac8b9b129
1 #!/usr/bin/perl
2 # This script lets the users change their privacy rules
4 # copyright 2009, BibLibre, paul.poulain@biblibre.com
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 2 of the License, or (at your option) any later
9 # version.
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along with
16 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
17 # Suite 330, Boston, MA 02111-1307 USA
19 use strict;
20 use CGI;
22 use C4::Auth; # checkauth, getborrowernumber.
23 use C4::Context;
24 use C4::Circulation;
25 use C4::Members;
26 use C4::Output;
27 use C4::Dates;
29 my $query = new CGI;
30 my $dbh = C4::Context->dbh;
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
34 template_name => "opac-privacy.tmpl",
35 query => $query,
36 type => "opac",
37 authnotrequired => 0,
38 flagsrequired => { borrow => 1 },
39 debug => 1,
43 my $op = $query->param("op");
44 my $privacy = $query->param("privacy");
46 if ($op eq "update_privacy")
48 ModPrivacy($borrowernumber,$privacy);
49 $template->param('privacy_updated' => 1);
51 if ($op eq "delete_record") {
52 # delete all reading records for items returned
53 # uses a hardcoded date ridiculously far in the future
54 AnonymiseIssueHistory('2999-12-12',$borrowernumber);
55 # confirm the user the deletion has been done
56 $template->param('deleted' => 1);
58 # get borrower privacy ....
59 my ( $borr ) = GetMemberDetails( $borrowernumber );
61 $template->param( 'Ask_data' => '1',
62 'privacy'.$borr->{'privacy'} => 1,
63 'firstname' => $borr->{'firstname'},
64 'surname' => $borr->{'surname'},
65 'privacyview' => 1,
68 output_html_with_http_headers $query, $cookie, $template->output;