Bug 21797: Update two-column templates with Bootstrap grid: Acquisitions part 5
[koha.git] / Koha / Subscription / Routinglist.pm
blobeb18e4bc259008c192e3f724caa347b0c592f056
1 package Koha::Subscription::Routinglist;
4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it under the
7 # terms of the GNU General Public License as published by the Free Software
8 # Foundation; either version 3 of the License, or (at your option) any later
9 # version.
11 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
12 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with Koha; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 use Modern::Perl;
21 use Carp;
23 use Koha::Database;
24 use Koha::Subscriptions;
26 use base qw(Koha::Object);
28 =head1 NAME
30 Koha::Subscription::Routinglist - Koha subscription routing list object class
32 =head1 API
34 =head2 Class methods
36 =cut
38 =head3 subscription
40 my $subscription = $routinglist->subscription
42 Returns the subscription for a routing list.
44 =cut
46 sub subscription {
47 my ( $self ) = @_;
48 return Koha::Subscription->_new_from_dbic($self->_result->subscriptionid);
51 =head2 Internal methods
53 =head3 _type
55 =cut
57 sub _type {
58 return 'Subscriptionroutinglist';
61 =head1 AUTHOR
63 Katrin Fischer <katrin.fischer@bsz-bw.de>
65 =cut