for example in "function html_nav_bar()" in html.php, the following changes could be made :
from
Code: Select all
<strong><< <?php if ($current_page > 1) { print "<a class='linkOverDark' href='" . str_replace("<PAGE>", ($current_page-1), $nav_url) . "'>"; } print "Previous"; if ($current_page > 1) { print "</a>"; } ?></strong>
Code: Select all
<?php if ($current_page > 1) { print "<strong><a class='linkOverDark' href='" . str_replace("<PAGE>", ($current_page-1), $nav_url) . "'> << Previous</a></strong>"; } ?>
Code: Select all
<strong><?php if (($current_page * $rows_per_page) < $total_rows) { print "<a class='linkOverDark' href='" . str_replace("<PAGE>", ($current_page+1), $nav_url) . "'>"; } print "Next"; if (($current_page * $rows_per_page) < $total_rows) { print "</a>"; } ?> >></strong>
Code: Select all
<?php if (($current_page * $rows_per_page) < $total_rows) { print "<strong><a class='linkOverDark' href='" . str_replace("<PAGE>", ($current_page+1), $nav_url) . "'> Next >> </a></strong>"; } ?>
Suprisingly, this doesn't do them all. Each other .php's that does listing has it's own (data_sources.php, data_templates.php, graph_templates.php, etc).
TIA
H