public function ViewExecutable::setItemsPerPage

Set the items per page on the pager.

File

drupal/core/modules/views/lib/Drupal/views/ViewExecutable.php, line 499
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\views

Code

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);
  }
}