Koha::Biblios - Koha Biblio object set class
my $biblios = Koha::Biblios->search(...); my $pickup_locations = $biblios->pickup_locations({ patron => $patron });
For a given resultset, it returns all the pickup locations.
Throws a Koha::Exceptions::MissingParameter exception if the mandatory parameter patron is not passed.
$query_string = $biblios->api_query_fixer( $query_string, $context, $no_quotes );
Method that takes care of adjusting $query_string as required. An optional $context parameter will be used to prefix the relevant query atoms if present. A $no_quotes boolean parameter can be passed to choose not to use quotes on matching. This is particularly useful in the context of order_by.
Kyle M Hall <kyle@bywatersolutions.com>