use images for navigation bar
This commit is contained in:
parent
1b47d4a868
commit
fc1050cd3d
|
@ -287,19 +287,15 @@ class lamList {
|
||||||
echo("<tr>\n");
|
echo("<tr>\n");
|
||||||
echo("<td><input type=\"submit\" name=\"refresh\" value=\"" . _("Refresh") . "\"> ");
|
echo("<td><input type=\"submit\" name=\"refresh\" value=\"" . _("Refresh") . "\"> ");
|
||||||
if ($this->page != 1) {
|
if ($this->page != 1) {
|
||||||
echo("<a href=\"list.php?type=" . $this->type . "&norefresh=true&page=" . ($this->page - 1) . "&sort=" . $this->sortColumn . $this->filterText . "\"><=</a>\n");
|
echo("<a href=\"list.php?type=" . $this->type . "&norefresh=true&page=" . ($this->page - 1) .
|
||||||
|
"&sort=" . $this->sortColumn . $this->filterText . "\"><img style=\"vertical-align: middle;\" src=\"../../graphics/back.gif\" alt=\"back\"></a>\n");
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
echo("<=");
|
|
||||||
}
|
|
||||||
echo(" ");
|
|
||||||
|
|
||||||
if ($this->page < ($count / $this->maxPageEntries)) {
|
if ($this->page < ($count / $this->maxPageEntries)) {
|
||||||
echo("<a href=\"list.php?type=" . $this->type . "&norefresh=true&page=" . ($this->page + 1) . "&sort=" . $this->sortColumn . $this->filterText . "\">=></a>\n");
|
echo("<a href=\"list.php?type=" . $this->type . "&norefresh=true&page=" . ($this->page + 1) .
|
||||||
}
|
"&sort=" . $this->sortColumn . $this->filterText . "\"><img style=\"vertical-align: middle;\" src=\"../../graphics/forward.gif\" alt=\"forward\"></a>\n");
|
||||||
else {
|
|
||||||
echo("=></td>");
|
|
||||||
}
|
}
|
||||||
|
echo("</td>");
|
||||||
|
|
||||||
echo("<td class=\"" . $this->type . "nav-text\">");
|
echo("<td class=\"" . $this->type . "nav-text\">");
|
||||||
echo" ";
|
echo" ";
|
||||||
|
|
Loading…
Reference in New Issue