summaryrefslogtreecommitdiffstats
path: root/frontends/php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-01-05 18:21:36 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2004-01-05 18:21:36 +0000
commiteb9756514b11aef945b7caa32ef5e2d8e6702f54 (patch)
tree60da1c0f93292583ab523199e811a05b04514a73 /frontends/php
parentbd4be86a8a70502b0d999548e7ef280b6aea633f (diff)
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@1138 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php')
-rw-r--r--frontends/php/charts.php21
1 files changed, 18 insertions, 3 deletions
diff --git a/frontends/php/charts.php b/frontends/php/charts.php
index 07b30a58..e582f3ad 100644
--- a/frontends/php/charts.php
+++ b/frontends/php/charts.php
@@ -146,7 +146,6 @@
show_table_header($map);
echo "<TABLE BORDER=0 align=center COLS=4 WIDTH=100% BGCOLOR=\"#CCCCCC\" cellspacing=1 cellpadding=3>";
- echo "<TR BGCOLOR=#EEEEEE>";
echo "<TR BGCOLOR=#DDDDDD>";
echo "<TD ALIGN=CENTER>";
if(isset($HTTP_GET_VARS["graphid"]))
@@ -166,7 +165,10 @@
if(isset($HTTP_GET_VARS["graphid"])/*&&(!isset($HTTP_GET_VARS["fullscreen"]))*/)
{
// BEGIN - IGMI - just another way of navigation
- echo("<div align=center>");
+ echo "<TABLE BORDER=0 align=center COLS=2 WIDTH=100% BGCOLOR=\"#CCCCCC\" cellspacing=1 cellpadding=3>";
+ echo "<TR BGCOLOR=#FFFFFF>";
+ echo "<TD ALIGN=LEFT>";
+ echo("<div align=left>");
echo("<b>Set&nbsp;Period:</b>&nbsp;(&nbsp;");
@@ -223,8 +225,21 @@
echo("<A HREF=\"charts.php?keep=1".url_param("graphid").url_param("from").url_param("period").url_param("fullscreen")."\">Off</a>");
}
}
-
echo("</div>");
+
+ echo "</TD>";
+ echo "<TD BGCOLOR=#FFFFFF WIDTH=15% ALIGN=RIGHT>";
+// echo("<div align=right>");
+ echo "<form method=\"put\" action=\"charts.php\">";
+ echo "<input name=\"graphid\" type=\"hidden\" value=\"".$HTTP_GET_VARS["graphid"]."\" size=12>";
+ echo "<input name=\"sdate\" value=\"yyyymmdd\" size=8>";
+ echo "<input class=\"button\" type=\"submit\" name=\"action\" value=\"go\">";
+ echo "</form>";
+// echo("</div>");
+ echo "</TD>";
+ echo "</TR>";
+ echo "</TABLE>";
+
// END - IGMI - just another way of navigation
}