<<

NAME

Koha::Subscription - Koha Subscription Object class

API

Class Methods

biblio

Returns the biblio linked to this subscription as a Koha::Biblio object

vendor

Returns the vendor/supplier linked to this subscription as a Koha::Acquisition::Bookseller object

subscribers

my $subscribers = $subscription->subscribers;

return a Koha::Patrons object

add_subscriber

$subscription->add_subscriber( $patron );

Add a new subscriber (Koha::Patron) to this subscription

remove_subscriber

$subscription->remove_subscriber( $subscriber );

Remove a subscriber (Koha::Patron) from this subscription

frequency

my $frequency = $subscription->frequency

Return the subscription frequency

type

AUTHOR

Kyle M Hall <kyle@bywatersolutions.com>

<<