Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

82 lines
2.2 KiB

package Koha::Template::Plugin::Branches;
# Copyright ByWater Solutions 2012
# Copyright BibLibre 2014
# 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 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.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
use Modern::Perl;
use Template::Plugin;
use base qw( Template::Plugin );
use C4::Koha;
use C4::Context;
use Koha::Libraries;
sub GetName {
my ( $self, $branchcode ) = @_;
my $query = "SELECT branchname FROM branches WHERE branchcode = ?";
my $sth = C4::Context->dbh->prepare($query);
$sth->execute($branchcode);
my $b = $sth->fetchrow_hashref();
return $b ? $b->{'branchname'} : q{};
}
sub GetLoggedInBranchcode {
my ($self) = @_;
return C4::Context->userenv ?
C4::Context->userenv->{'branch'} :
'';
}
sub GetURL {
my ( $self, $branchcode ) = @_;
my $query = "SELECT branchurl FROM branches WHERE branchcode = ?";
my $sth = C4::Context->dbh->prepare($query);
$sth->execute($branchcode);
my $b = $sth->fetchrow_hashref();
return $b->{branchurl};
}
sub OnlyMine {
return C4::Branch::onlymine;
}
sub all {
my ( $self, $params ) = @_;
my $selected = $params->{selected};
my $unfiltered = $params->{unfiltered} || 0;
my $libraries = $unfiltered
? Koha::Libraries->search( {}, { order_by => ['branchname'] } )->unblessed
: Koha::Libraries->search_filtered( {}, { order_by => ['branchname'] } )->unblessed;
for my $l ( @$libraries ) {
if ( $selected and $l->{branchcode} eq $selected
or not $selected and C4::Context->userenv and $l->{branchcode} eq C4::Context->userenv->{branch}
) {
$l->{selected} = 1;
}
}
return $libraries;
}
1;