Bug 12820: [QA Followup] Tab and whitespace cleanup
[koha.git] / members / members-home.pl
blob0d0e2794deaa467e4b279bc1c5bc5ab731d7e9a5
1 #!/usr/bin/perl
3 # Parts Copyright Biblibre 2010
4 # This file is part of Koha.
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
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 use strict;
20 use warnings;
22 use CGI qw ( -utf8 );
23 use C4::Auth;
24 use C4::Output;
25 use C4::Context;
26 use C4::Members;
27 use C4::Branch;
28 use C4::Category;
29 use Koha::Borrower::Modifications;
31 my $query = new CGI;
32 my $branch = $query->param('branchcode');
34 $branch = q{} unless defined $branch;
36 my ($template, $loggedinuser, $cookie)
37 = get_template_and_user({template_name => "members/member.tt",
38 query => $query,
39 type => "intranet",
40 authnotrequired => 0,
41 flagsrequired => {borrowers => 1},
42 debug => 1,
43 });
45 my $branches = GetBranches;
46 my @branchloop;
47 if ( C4::Branch::onlymine ) {
48 my $userenv = C4::Context->userenv;
49 my $branch = C4::Branch::GetBranchDetail( $userenv->{'branch'} );
50 push @branchloop, {
51 value => $branch->{branchcode},
52 branchcode => $branch->{branchcode},
53 branchname => $branch->{branchname},
54 selected => 1
56 } else {
57 foreach (sort { $branches->{$a}->{branchname} cmp $branches->{$b}->{branchname} } keys %{$branches}) {
58 my $selected = 0;
59 $selected = 1 if $branch and $branch eq $_;
60 push @branchloop, {
61 value => $_,
62 branchcode => $_,
63 branchname => $branches->{$_}->{branchname},
64 selected => $selected
69 my @categories;
70 my $no_categories;
71 my $no_add = 0;
72 if(scalar(@branchloop) < 1){
73 $no_add = 1;
74 $template->param(no_branches => 1);
76 else {
77 $template->param(branchloop=>\@branchloop);
80 @categories=C4::Category->all;
81 if(scalar(@categories) < 1){
82 $no_categories = 1;
85 if($no_categories && C4::Context->preference("AddPatronLists")=~/code/){
86 $no_add = 1;
87 $template->param(no_categories => 1);
89 else {
90 $template->param(categories=>\@categories);
94 my $pending_borrower_modifications =
95 Koha::Borrower::Modifications->GetPendingModificationsCount( $branch );
97 $template->param(
98 no_add => $no_add,
99 pending_borrower_modifications => $pending_borrower_modifications,
102 $template->param(
103 alphabet => C4::Context->preference('alphabet') || join (' ', 'A' .. 'Z'),
104 PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
107 output_html_with_http_headers $query, $cookie, $template->output;