Source
protected static function render($page, $num_rows, $num_pages, CUrl $url, $limit_exceeded, $rows_per_page) {
<?php
/*
** Zabbix
** Copyright (C) 2001-2022 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
/**
* Pager helper for data pagination.
*/
class CPagerHelper {
/**
* Number of page buttons (use odd number).
*/
const RANGE = 11;
/**
* Create paging line based on count of data rows and trim data rows accordingly.
*
* @param int $page page to display
* @param array $rows data rows
* @param string $sort_order data sort order: ZBX_SORT_UP or ZBX_SORT_DOWN
* @param CUrl $url data list URL
*
* @return CTag paging line
*/
public static function paginate($page, &$rows, $sort_order, CUrl $url) {
$data = self::prepareData($page, count($rows));
$paging = self::render($data['page'], $data['num_rows'], $data['num_pages'], clone $url,
$data['limit_exceeded'], $data['rows_per_page']
);
$start = ($data['page'] - 1) * $data['rows_per_page'];
$end = min($data['num_rows'], $start + $data['rows_per_page']);
$offset = ($sort_order == ZBX_SORT_DOWN) ? $data['offset_down'] : $data['offset_up'];
// Trim given rows for the current page.
$rows = array_slice($rows, $start + $offset, $end - $start, true);
return $paging;
}
/**
* Reset page number.
*/
public static function resetPage() {
CProfile::delete('web.pager.entity');