Paginator
Paginator copied to clipboard
Unlink Current Page
I am using this with PDO like this
$pagePattern = "/(:num)"; $paginator = (new Voodoo\Paginator($pagePattern)) ->setItems($totalItems, $totalPerPage);
followed by
<?= $paginator; ?>
All the links are always hyperlinked, how can I make the current one not linked?
This isn't currently possible. You'd have to write some JS to do this:
$(".pagination li.active a"). removeAttr("href", "").addClass("disable-cursor")
Then set cursor: default for the .disable-cursor class.
This would be a nice addition though.