61 lines
1.7 KiB
PHP
61 lines
1.7 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Utils;
|
|
|
|
use Pagerfanta\View\Template\TwitterBootstrap5Template;
|
|
|
|
final class PaginationTemplate extends TwitterBootstrap5Template
|
|
{
|
|
protected function getDefaultOptions(): array
|
|
{
|
|
return array_merge(
|
|
parent::getDefaultOptions(),
|
|
[
|
|
//'prev_message' = '←',
|
|
//'next_message' = '→',
|
|
'prev_message' => '<i class="fas fa-chevron-left"></i>',
|
|
'next_message' => '<i class="fas fa-chevron-right"></i>',
|
|
]
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param string $class
|
|
* @param string $href
|
|
* @param int|string $text
|
|
* @param string|null $rel
|
|
* @return string
|
|
*/
|
|
protected function linkLi(string $class, string $href, $text, ?string $rel = null): string
|
|
{
|
|
$liClass = implode(' ', array_filter(['page-item', $class]));
|
|
$rel = $rel ? sprintf(' rel="%s"', $rel) : '';
|
|
|
|
return sprintf('<li class="%s"><a class="page-link pagination-link" href="%s"%s>%s</a></li>', $liClass, $href, $rel, $text);
|
|
}
|
|
|
|
/**
|
|
* @param string $class
|
|
* @param string $text
|
|
* @return string
|
|
*/
|
|
protected function spanLi(string $class, $text): string
|
|
{
|
|
$liClass = implode(' ', array_filter(['page-item', $class]));
|
|
|
|
return sprintf('<li class="%s"><span class="page-link pagination-link">%s</span></li>', $liClass, $text);
|
|
}
|
|
|
|
public function current(int $page): string
|
|
{
|
|
return $this->linkLi($this->option('css_active_class'), $this->generateRoute($page), $page);
|
|
}
|
|
}
|