mirror of
https://github.com/vrana/adminer.git
synced 2025-08-12 17:44:07 +02:00
Ability to jump to any page by JavaScript
This commit is contained in:
@@ -362,7 +362,7 @@ if (!$columns) {
|
||||
if (intval($limit) && $found_rows > $limit) {
|
||||
// display first, previous 4, next 4 and last page
|
||||
$max_page = floor(($found_rows - 1) / $limit);
|
||||
echo lang('Page') . ":" . pagination(0, $page) . ($page > 5 ? " ..." : "");
|
||||
echo '<a href="' . h(remove_from_uri("page")) . "\" onclick=\"var page = +prompt('" . lang('Page') . "', '" . ($page + 1) . "'); if (!isNaN(page) && page) location.href = this.href + (page != 1 ? '&page=' + (page - 1) : ''); return false;\">" . lang('Page') . "</a>:" . pagination(0, $page) . ($page > 5 ? " ..." : "");
|
||||
for ($i = max(1, $page - 4); $i < min($max_page, $page + 5); $i++) {
|
||||
echo pagination($i, $page);
|
||||
}
|
||||
|
Reference in New Issue
Block a user