View | Details | Raw Unified | Return to bug 29523
Collapse All | Expand All

(-)a/Koha/Objects.pm (-1 / +15 lines)
Lines 155-160 sub search { Link Here
155
    }
155
    }
156
}
156
}
157
157
158
=head3 search_limited
159
160
    my $rs = $self->search_limited
161
162
Generic method that is just a pass through for I<search>. It is expected to be overloaded
163
locally on classes. It's main purpose is to avoid the need to check if the class implements
164
the method locally.
165
166
=cut
167
168
sub search_limited {
169
    my ( $self, $params, $attributes ) = @_;
170
    return $self->search( $params, $attributes );
171
}
172
158
=head3 search_related
173
=head3 search_related
159
174
160
    my @objects = Koha::Objects->search_related( $rel_name, $cond?, \%attrs? );
175
    my @objects = Koha::Objects->search_related( $rel_name, $cond?, \%attrs? );
161
- 

Return to bug 29523