mirror of
https://github.com/vrana/adminer.git
synced 2025-08-09 16:17:48 +02:00
Rename confusing print_page
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@732 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -135,7 +135,7 @@ function remove_from_uri($param = "") {
|
|||||||
return preg_replace("~\\?$param=[^&]*&~", '?', preg_replace("~\\?$param=[^&]*\$|&$param=[^&]*~", '', $_SERVER["REQUEST_URI"]));
|
return preg_replace("~\\?$param=[^&]*&~", '?', preg_replace("~\\?$param=[^&]*\$|&$param=[^&]*~", '', $_SERVER["REQUEST_URI"]));
|
||||||
}
|
}
|
||||||
|
|
||||||
function print_page($page) {
|
function print_pagination($page) {
|
||||||
echo " " . ($page == $_GET["page"] ? $page + 1 : '<a href="' . htmlspecialchars(remove_from_uri("page") . ($page ? "&page=$page" : "")) . '">' . ($page + 1) . "</a>");
|
echo " " . ($page == $_GET["page"] ? $page + 1 : '<a href="' . htmlspecialchars(remove_from_uri("page") . ($page ? "&page=$page" : "")) . '">' . ($page + 1) . "</a>");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -301,17 +301,17 @@ if (!$columns) {
|
|||||||
// display first, previous 3, next 3 and last page
|
// display first, previous 3, next 3 and last page
|
||||||
$max_page = floor(($found_rows - 1) / $limit);
|
$max_page = floor(($found_rows - 1) / $limit);
|
||||||
echo lang('Page') . ":";
|
echo lang('Page') . ":";
|
||||||
print_page(0);
|
print_pagination(0);
|
||||||
if ($_GET["page"] > 3) {
|
if ($_GET["page"] > 3) {
|
||||||
echo " ...";
|
echo " ...";
|
||||||
}
|
}
|
||||||
for ($i = max(1, $_GET["page"] - 2); $i < min($max_page, $_GET["page"] + 3); $i++) {
|
for ($i = max(1, $_GET["page"] - 2); $i < min($max_page, $_GET["page"] + 3); $i++) {
|
||||||
print_page($i);
|
print_pagination($i);
|
||||||
}
|
}
|
||||||
if ($_GET["page"] + 3 < $max_page) {
|
if ($_GET["page"] + 3 < $max_page) {
|
||||||
echo " ...";
|
echo " ...";
|
||||||
}
|
}
|
||||||
print_page($max_page);
|
print_pagination($max_page);
|
||||||
}
|
}
|
||||||
echo " (" . lang('%d row(s)', $found_rows) . ') <label><input type="checkbox" name="all" value="1" />' . lang('whole result') . "</label></p>\n";
|
echo " (" . lang('%d row(s)', $found_rows) . ') <label><input type="checkbox" name="all" value="1" />' . lang('whole result') . "</label></p>\n";
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user