You are here

public function ViewExecutable::getItemsPerPage in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/ViewExecutable.php \Drupal\views\ViewExecutable::getItemsPerPage()

Gets the items per page from the pager.

Return value

int The items per page.

File

core/modules/views/src/ViewExecutable.php, line 559

Class

ViewExecutable
Represents a view as a whole.

Namespace

Drupal\views

Code

public function getItemsPerPage() {

  // If the pager is already initialized, pass it through to the pager.
  if (!empty($this->pager)) {
    return $this->pager
      ->getItemsPerPage();
  }
  if (isset($this->items_per_page)) {
    return $this->items_per_page;
  }
}