<<

NAME

Koha::Old::Holds - Koha Old Hold object set class

This object represents a set of holds that have been filled or canceled

API

Class methods

filter_by_anonymizable

    my $holds = $patron->old_holds;
    my $anonymizable_holds = $holds->filter_by_anonymizable;

This method filters a Koha::Old::Holds resultset, so it only contains holds that can be anonymized given the patron privacy settings.

anonymize

    $patron->old_holds->anonymize();

Anonymize the given Koha::Old::Holds resultset.

Internal methods

_type

object_class

AUTHOR

Kyle M Hall <kyle@bywatersolutions.com>

<<