<<

NAME

Koha::Suggestions - Koha Suggestion object set class

API

Class methods

search_limited

    my $suggestions = Koha::Suggestions->search_limited( $params, $attributes );

Returns all the suggestions the logged in user is allowed to see.

filter_by_pending

    my $open = $suggestions->filter_by_pending;

Filters the resultset on those that are considered pending (i.e. STATUS = ASKED).

filter_by_suggested_days_range

    my $suggestions = $suggestions->filter_by_suggested_days_range( $days );

Filters the resultset on those placed within some $days range.

Internal methods

_type

object_class

AUTHOR

Kyle M Hall <kyle@bywatersolutions.com>

<<