Bug 14252: (followup) fix lang chooser for sublanguages
[koha.git] / members / members-home.pl
blobc24085a029e21acdefde1f1d3a0057fb7ce5e656
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
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
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_add = 0;
71 if(scalar(@branchloop) < 1){
72 $no_add = 1;
73 $template->param(no_branches => 1);
75 else {
76 $template->param(branchloop=>\@branchloop);
79 @categories=C4::Category->all;
80 if(scalar(@categories) < 1){
81 $no_add = 1;
82 $template->param(no_categories => 1);
84 else {
85 $template->param(categories=>\@categories);
89 my $pending_borrower_modifications =
90 Koha::Borrower::Modifications->GetPendingModificationsCount( $branch );
92 $template->param(
93 no_add => $no_add,
94 pending_borrower_modifications => $pending_borrower_modifications,
97 $template->param(
98 alphabet => C4::Context->preference('alphabet') || join (' ', 'A' .. 'Z'),
99 PatronsPerPage => C4::Context->preference("PatronsPerPage") || 20,
102 output_html_with_http_headers $query, $cookie, $template->output;