1 package Koha
::Libraries
;
3 # Copyright 2015 Koha Development team
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
28 use Koha
::Item
::Transfer
::Limits
;
33 use base
qw(Koha::Objects);
37 Koha::Libraries - Koha Library Object set class
43 =head3 search_filtered
48 my ( $self, $params, $attributes ) = @_;
51 my $userenv = C4
::Context
->userenv;
52 if ( $userenv and $userenv->{number
} ) {
53 my $only_from_group = $params->{only_from_group
};
54 if ( $only_from_group ) {
55 my $logged_in_user = Koha
::Patrons
->find( $userenv->{number
} );
56 my @branchcodes = $logged_in_user->libraries_where_can_see_patrons;
57 $params->{branchcode
} = { -in => \
@branchcodes } if @branchcodes;
59 if ( C4
::Context
::only_my_library
) {
60 $params->{branchcode
} = C4
::Context
->userenv->{branch
};
64 delete $params->{only_from_group
};
65 return $self->SUPER::search
( $params, $attributes );
77 return 'Koha::Library';