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
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
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 use C4
::Auth
; # checkauth, getborrowernumber.
30 my $dbh = C4
::Context
->dbh;
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user
(
34 template_name
=> "opac-privacy.tt",
38 flagsrequired
=> { borrow
=> 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 my ($rows,$err_history_not_deleted) = AnonymiseIssueHistory
('2999-12-12',$borrowernumber);
55 # confirm the user the deletion has been done
56 if ( !$err_history_not_deleted ) {
57 $template->param( 'deleted' => 1 );
60 $template->param( 'err_history_not_deleted' => 1 );
63 # get borrower privacy ....
64 my ( $borr ) = GetMemberDetails
( $borrowernumber );
66 $template->param( 'Ask_data' => '1',
67 'privacy'.$borr->{'privacy'} => 1,
68 'firstname' => $borr->{'firstname'},
69 'surname' => $borr->{'surname'},
73 output_html_with_http_headers
$query, $cookie, $template->output;