<<

NAME

Koha::Illrequest::Workflow::Availability - Koha ILL Availability Searching

SYNOPSIS

Object-oriented class that provides availability searching via availability plugins

DESCRIPTION

This class provides the ability to identify and fetch API services that can be used to search for item availability

API

Class Methods

get_services

    my $services =
      Koha::Illrequest::Workflow::Availability->get_services($params);

Given our metadata, iterate plugins with the right method and check if they can service our request and, if so, return an arrayref of services. Optionally accept a hashref specifying additional filter parameters

show_availability

    my $show_availability =
    Koha::Illrequest::Workflow::Availability->show_availability($params);

Given $params, return true if availability should be shown

availability_template_params

    my $availability_template_params =
    Koha::Illrequest::Workflow::Availability->availability_template_params(
        $params);

Given $params, return true if availability should be shown

AUTHOR

Andrew Isherwood <andrew.isherwood@ptfs-europe.com>

<<