protected function LinkManager::getPagerQueries in JSON:API 8
Get the query param array.
Parameters
string $link_id: The name of the pagination link requested.
int $offset: The starting index.
int $size: The pagination page size.
array $query: The query parameters.
int $total: The total size of the collection.
Return value
array The pagination query param array.
1 call to LinkManager::getPagerQueries()
- LinkManager::getPagerLinks in src/
LinkManager/ LinkManager.php - Get the pager links for a given request object.
File
- src/
LinkManager/ LinkManager.php, line 160
Class
- LinkManager
- Class to generate links and queries for entities.
Namespace
Drupal\jsonapi\LinkManagerCode
protected function getPagerQueries($link_id, $offset, $size, array $query = [], $total = 0) {
$extra_query = [];
switch ($link_id) {
case 'next':
$extra_query = [
'page' => [
'offset' => $offset + $size,
'limit' => $size,
],
];
break;
case 'first':
$extra_query = [
'page' => [
'offset' => 0,
'limit' => $size,
],
];
break;
case 'last':
if ($total) {
$extra_query = [
'page' => [
'offset' => (ceil($total / $size) - 1) * $size,
'limit' => $size,
],
];
}
break;
case 'prev':
$extra_query = [
'page' => [
'offset' => max($offset - $size, 0),
'limit' => $size,
],
];
break;
}
return array_merge($query, $extra_query);
}