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

(-)a/Koha/Objects.pm (-13 lines)
Lines 130-147 sub search { Link Here
130
    }
130
    }
131
}
131
}
132
132
133
=head3 Koha::Objects->count();
134
135
my @objects = Koha::Objects->count($params);
136
137
=cut
138
139
sub count {
140
    my ( $self, $params ) = @_;
141
142
    return $self->_resultset()->count($params);
143
}
144
145
=head3 Koha::Objects->pager();
133
=head3 Koha::Objects->pager();
146
134
147
my $pager = Koha::Objects->pager;
135
my $pager = Koha::Objects->pager;
148
- 

Return to bug 17091