public ViewExecutable::setItemsPerPage($items_per_page)
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 565
Class
- ViewExecutable
- Represents a view as a whole.
Namespace
Drupal\views
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 | 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 ); } } |
Please login to continue.