Bug 18309: UNIMARC update from IFLA - authority (fr) (default framework)
[koha.git] / Koha / Library / Groups.pm
blob1ce2cb019a18bcb165433e3319e8b1cef171bac0
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
10 # version.
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.
20 use Modern::Perl;
22 use Carp;
24 use Koha::Database;
26 use Koha::Library::Group;
28 use base qw(Koha::Objects);
30 =head1 NAME
32 Koha::Library::Groups - Koha Library::Group object set class
34 =head1 API
36 =head2 Class Methods
38 =head3 get_root_groups
40 my @root_groups = $self->get_root_group()
42 =cut
44 sub get_root_groups {
45 my ( $self ) = @_;
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.
57 =cut
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 } );
68 =head3 type
70 =cut
72 sub _type {
73 return 'LibraryGroup';
76 =head3 object_class
78 =cut
80 sub object_class {
81 return 'Koha::Library::Group';
84 =head1 AUTHOR
86 Kyle M Hall <kyle@bywatersolutions.com>
88 =cut