| Server IP : 46.105.57.169 / Your IP : 216.73.217.8 Web Server : Apache System : Linux webd003.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : maitricfuz ( 93378) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/maitricfuz/www/saint-martin-lg/libraries/regularlabs/src/ |
Upload File : |
<?php
/**
* @package Regular Labs Library
* @version 26.7.20176
*
* @author Peter van Westen <info@regularlabs.com>
* @link https://regularlabs.com
* @copyright Copyright © 2026 Regular Labs All Rights Reserved
* @license GNU General Public License version 2 or later
*/
namespace RegularLabs\Library;
defined('_JEXEC') or die;
use Joomla\CMS\Pagination\Pagination as JPagination;
class Pagination
{
public static function canRender(object $pagination): bool
{
return $pagination instanceof JPagination;
}
public static function create(int $total, int $limitstart, int $limit, string $prefix = ''): object
{
if (!\RegularLabs\Library\Indexer::isActive()) {
return new JPagination($total, $limitstart, $limit, $prefix);
}
$pages_total = $limit > 0 ? (int) ceil($total / $limit) : 0;
$pages_current = $limit > 0 ? (int) floor($limitstart / $limit) + 1 : 1;
return (object) ['limit' => $limit, 'limitstart' => $limitstart, 'total' => $total, 'prefix' => $prefix, 'pagesStart' => $pages_total > 0 ? 1 : 0, 'pagesStop' => $pages_total, 'pagesCurrent' => min($pages_current, max(1, $pages_total)), 'pagesTotal' => $pages_total];
}
}