diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-11-13 11:56:12 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2004-11-13 11:56:12 +0000 |
| commit | e7b40fc153ce6f7be399380f45e22ee48e2ceb00 (patch) | |
| tree | 5566c4f33373d2fd94c44faf78973ff03b355778 /frontends/php/include | |
| parent | 6fe1ce1513c87a8b20c2281a342303aebc0a2414 (diff) | |
| download | zabbix-e7b40fc153ce6f7be399380f45e22ee48e2ceb00.tar.gz zabbix-e7b40fc153ce6f7be399380f45e22ee48e2ceb00.tar.xz zabbix-e7b40fc153ce6f7be399380f45e22ee48e2ceb00.zip | |
PHP GUI improvements.
git-svn-id: svn://svn.zabbix.com/trunk@1478 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include')
| -rw-r--r-- | frontends/php/include/config.inc.php | 34 |
1 files changed, 19 insertions, 15 deletions
diff --git a/frontends/php/include/config.inc.php b/frontends/php/include/config.inc.php index db51741a..eee70348 100644 --- a/frontends/php/include/config.inc.php +++ b/frontends/php/include/config.inc.php @@ -3718,27 +3718,31 @@ where h.hostid=i.hostid and i.itemid=f.itemid and f.triggerid=$triggerid"; cr(); } + function show_header2($h1, $h2, $h2_form1, $h2_form2) + { +?> + <table class="menu" cellspacing=0 cellpadding=1 width="100%"> + <tr> + <td class="sub_menu" height=24 align=left> + <?php echo $h1; ?> + </td> + <?php echo $h2_form1; ?> + <td class="sub_menu" height=24 align=right> + <?php echo $h2; ?> + </td> + <?php echo $h2_form2; ?> + </tr> + </table> +<?php + } + function show_table3_header_begin() { ?> <table class="menu" cellspacing=0 cellpadding=1 width="100%"> <tr> <?php - echo "<td class=\"sub_menu\" height=24 colspan=9 nowrap=\"nowrap\">"; -/* - echo "<table border=0 align=center cellspacing=0 cellpadding=0 width=100% bgcolor=000000>"; - cr(); - echo "<tr>"; - cr(); - echo "<td valign=\"top\">"; - cr(); - echo "<table width=100% border=0 cellspacing=1 cellpadding=1>"; - cr(); - echo "<tr>"; - cr(); - echo "<td colspan=1 bgcolor=#6d88ad align=left valign=\"medium\">"; - cr(); - cr();*/ + echo "<td class=\"sub_menu\" height=24 colspan=9 nowrap=\"nowrap\">"; } |
