1 package Koha
::Library
::Groups
;
3 # Copyright ByWater Solutions 2016
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 3 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 use Koha
::Library
::Group
;
28 use base
qw(Koha::Objects);
32 Koha::Library::Groups - Koha Library::Group object set class
38 =head3 get_root_groups
40 my @root_groups = $self->get_root_group()
47 return $self->search( { parent_id
=> undef }, { order_by
=> 'title' } );
50 =head3 get_search_groups
52 my @search_groups = $self->get_search_groups({[interface => 'staff' || 'opac']}))
54 Returns search groups for the specified interface.
55 Defaults to OPAC if no interface is specified.
59 sub get_search_groups
{
60 my ( $self, $params ) = @_;
61 my $interface = $params->{interface
} || q{};
63 my $field = $interface eq 'staff' ?
'ft_search_groups_staff' : 'ft_search_groups_opac';
65 return $self->search( { $field => 1 } );
73 return 'LibraryGroup';
81 return 'Koha::Library::Group';
86 Kyle M Hall <kyle@bywatersolutions.com>