<<

NAME

Koha::ILL::Request::HistoryCheck - Koha ILL HistoryCheck

SYNOPSIS

Object-oriented class that provides the ILL request type disclaimer

DESCRIPTION

This class provides the ability to verify if it should render type disclaimer and handle the template params accordingly

API

Class Methods

show_history_check

    my $show_history_check =
    Koha::ILL::Request::HistoryCheck->show_history_check($params);

Given $params, return true if history check should be shown

history_check_template_params

    my $history_check_template_params =
    Koha::ILL::Request::TypeDisclaimer->history_check_template_params(
        $params);

Given $params, return true if history check should be rendered

after_request_created

    $history_check->after_request_created($params, $request);

Actions that need to be done after the request has been created

_find_matching_requests

    my $matching_requests = $self->_find_matching_requests();

Returns a list of matching requests (match is done by doi, isbn, pubmedid)

AUTHOR

Pedro Amorim <pedro.amorim@ptfs-europe.com>

<<