<<

NAME

C4::ILS-DI::Utility - ILS-DI Utilities

BorrowerExists

Checks, for a given userid and password, if the borrower exists.

        if ( BorrowerExists($userid, $password) ) {
                # Do stuff
        }

Availability

Returns, for an itemnumber, an array containing availability information.

        my ($biblionumber, $status, $msg, $location) = Availability($id);

<<