Koha/Koha/Library.pm
Tomas Cohen Arazi a21025b7d9 Bug 11897: (QA follow-up) Remove rebase leftover
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
2018-10-09 15:46:05 +00:00

90 lines
2 KiB
Perl

package Koha::Library;
# Copyright 2015 Koha Development team
#
# 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use Modern::Perl;
use Carp;
use C4::Context;
use Koha::Database;
use Koha::StockRotationStages;
use base qw(Koha::Object);
=head1 NAME
Koha::Library - Koha Library Object class
=head1 API
=head2 Class methods
=head3 stockrotationstages
my $stages = Koha::Library->stockrotationstages;
Returns the stockrotation stages associated with this Library.
=cut
sub stockrotationstages {
my ( $self ) = @_;
my $rs = $self->_result->stockrotationstages;
return Koha::StockRotationStages->_new_from_dbic( $rs );
}
=head3 get_effective_marcorgcode
my $marcorgcode = Koha::Libraries->find( $library_id )->get_effective_marcorgcode();
Returns the effective MARC organization code of the library. It falls back to the value
from the I<MARCOrgCode> syspref if undefined for the library.
=cut
sub get_effective_marcorgcode {
my ( $self ) = @_;
return $self->marcorgcode || C4::Context->preference("MARCOrgCode");
}
=head3 library_groups
Return the Library groups of this library
=cut
sub library_groups {
my ( $self ) = @_;
my $rs = $self->_result->library_groups;
return Koha::Library::Groups->_new_from_dbic( $rs );
}
=head2 Internal methods
=head3 _type
=cut
sub _type {
return 'Branch';
}
1;