Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. ViewExecutable.php

function ViewExecutable::setItemsPerPage

Sets the items per page on the pager.

Parameters

int $items_per_page: The items per page.

File

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

Class

ViewExecutable
Represents a view as a whole.

Namespace

Drupal\views

Code

public function setItemsPerPage($items_per_page) {
    // Check whether the element is pre rendered. At that point, the cache keys
    // cannot longer be manipulated.
    if (empty($this->element['#pre_rendered'])) {
        $this->element['#cache']['keys'][] = 'items_per_page:' . $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
            ->setItemsPerPage($items_per_page);
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal