public function ViewExecutable::setItemsPerPage in Views (for Drupal 7) 8.3
Set the items per page on the pager.
File
- lib/
Drupal/ views/ ViewExecutable.php, line 477 - Definition of Drupal\views\ViewExecutable.
Class
- ViewExecutable
- An object to contain all of the data to generate a view, plus the member functions to build the view query, execute the query and render the output.
Namespace
Drupal\viewsCode
public function setItemsPerPage($items_per_page) {
$this->items_per_page = $items_per_page;
// If the pager is already initialized, pass it through to the pager.
if (!empty($this->pager)) {
$this->pager
->set_items_per_page($items_per_page);
}
}