ViewExecutable::setOffset

public ViewExecutable::setOffset($offset)

Sets the offset on the pager.

Parameters

int $offset: The pager offset.

File

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

Class

ViewExecutable
Represents a view as a whole.

Namespace

Drupal\views

Code

public function setOffset($offset) {
  // 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'][] = 'offset:' . $offset;
  }

  $this->offset = $offset;


  // If the pager is already initialized, pass it through to the pager.
  if (!empty($this->pager)) {
    $this->pager->setOffset($offset);
  }
}
doc_Drupal
2016-10-29 09:54:28
Comments
Leave a Comment

Please login to continue.