Bug 13851: Fix typo in POD
[koha.git] / Koha / Hold.pm
blob5bb1fc75de261f84e7a6862fb48279b576ca90c1
1 package Koha::Hold;
3 # Copyright ByWater Solutions 2014
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::Branches;
25 use Koha::Biblios;
26 use Koha::Items;
28 use base qw(Koha::Object);
30 =head1 NAME
32 Koha::Hold - Koha Hold object class
34 =head1 API
36 =head2 Class Methods
38 =cut
40 =head3 biblio
42 Returns the related Koha::Biblio object for this hold
44 =cut
46 sub biblio {
47 my ($self) = @_;
49 $self->{_biblio} ||= Koha::Biblios->find( $self->biblionumber() );
51 return $self->{_biblio};
54 =head3 item
56 Returns the related Koha::Item object for this Hold
58 =cut
60 sub item {
61 my ($self) = @_;
63 $self->{_item} ||= Koha::Items->find( $self->itemnumber() );
65 return $self->{_item};
68 =head3 branch
70 Returns the related Koha::Branch object for this Hold
72 =cut
74 sub branch {
75 my ($self) = @_;
77 $self->{_branch} ||= Koha::Branches->find( $self->branchcode() );
79 return $self->{_branch};
82 =head3 type
84 =cut
86 sub type {
87 return 'Reserve';
90 =head1 AUTHOR
92 Kyle M Hall <kyle@bywatersolutions.com>
94 =cut