function apachesolr_views_query::set_offset in Apache Solr Views 6
Set an OFFSET on the query, specifying a number of results to skip
Overrides views_plugin_query::set_offset
File
- ./
apachesolr_views_query.inc, line 409
Class
- apachesolr_views_query
- Class for handling a view that gets its data not from the database, but from a Solr server.
Code
function set_offset($offset) {
$this->offset = $offset;
}