39 lines
2.0 KiB
PHP
39 lines
2.0 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Custom Tailwind CSS Pagination View for CodeIgniter 4
|
||
|
|
*
|
||
|
|
* @var \CodeIgniter\Pager\PagerRenderer $pager
|
||
|
|
*/
|
||
|
|
|
||
|
|
$pager->setSurroundCount(2);
|
||
|
|
?>
|
||
|
|
|
||
|
|
<?php if ($pager->hasPreviousPage() || $pager->hasNextPage()): ?>
|
||
|
|
<nav aria-label="Page navigation" class="flex items-center justify-center gap-1 mt-3 mb-2 no-print">
|
||
|
|
<?php if ($pager->hasPreviousPage()): ?>
|
||
|
|
<a href="<?= $pager->getFirst() ?>" class="px-2 py-1 text-xs border border-gray-300 rounded hover:bg-gray-100 text-gray-600" title="처음">«</a>
|
||
|
|
<a href="<?= $pager->getPreviousPage() ?>" class="px-2 py-1 text-xs border border-gray-300 rounded hover:bg-gray-100 text-gray-600" title="이전">‹</a>
|
||
|
|
<?php else: ?>
|
||
|
|
<span class="px-2 py-1 text-xs border border-gray-200 rounded text-gray-300">«</span>
|
||
|
|
<span class="px-2 py-1 text-xs border border-gray-200 rounded text-gray-300">‹</span>
|
||
|
|
<?php endif; ?>
|
||
|
|
|
||
|
|
<?php foreach ($pager->links() as $link): ?>
|
||
|
|
<?php if ($link['active']): ?>
|
||
|
|
<span class="px-3 py-1 text-xs border border-blue-600 rounded bg-blue-600 text-white font-bold"><?= $link['title'] ?></span>
|
||
|
|
<?php else: ?>
|
||
|
|
<a href="<?= $link['uri'] ?>" class="px-3 py-1 text-xs border border-gray-300 rounded hover:bg-gray-100 text-gray-700"><?= $link['title'] ?></a>
|
||
|
|
<?php endif; ?>
|
||
|
|
<?php endforeach; ?>
|
||
|
|
|
||
|
|
<?php if ($pager->hasNextPage()): ?>
|
||
|
|
<a href="<?= $pager->getNextPage() ?>" class="px-2 py-1 text-xs border border-gray-300 rounded hover:bg-gray-100 text-gray-600" title="다음">›</a>
|
||
|
|
<a href="<?= $pager->getLast() ?>" class="px-2 py-1 text-xs border border-gray-300 rounded hover:bg-gray-100 text-gray-600" title="마지막">»</a>
|
||
|
|
<?php else: ?>
|
||
|
|
<span class="px-2 py-1 text-xs border border-gray-200 rounded text-gray-300">›</span>
|
||
|
|
<span class="px-2 py-1 text-xs border border-gray-200 rounded text-gray-300">»</span>
|
||
|
|
<?php endif; ?>
|
||
|
|
</nav>
|
||
|
|
<?php endif; ?>
|