diff options
| author | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2005-02-26 09:36:54 +0000 |
|---|---|---|
| committer | hugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2005-02-26 09:36:54 +0000 |
| commit | c4b9f414885a3c6e67b23d09b48c3e32c5fd9336 (patch) | |
| tree | 24d5e7581cfd3e58990db691ea7b0697692ac6b6 /frontends/php/include/html.inc.php | |
| parent | 7930deb026eeb837902eca36d5e83c48d2ddc46a (diff) | |
Minor changes.
git-svn-id: svn://svn.zabbix.com/trunk@1674 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/html.inc.php')
| -rw-r--r-- | frontends/php/include/html.inc.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/frontends/php/include/html.inc.php b/frontends/php/include/html.inc.php index a770b2af..d08b895a 100644 --- a/frontends/php/include/html.inc.php +++ b/frontends/php/include/html.inc.php @@ -104,4 +104,17 @@ { echo "<td $attr>$text</td>"; } + + function table_nodata($text="...") + { + cr(); + echo "<TABLE BORDER=0 align=center WIDTH=\"100%\" BGCOLOR=\"#CCCCCC\" cellspacing=1 cellpadding=3>"; + echo "<TR BGCOLOR=\"#DDDDDD\">"; + echo "<TD ALIGN=CENTER>"; + echo $text; + echo "</TD>"; + echo "</TR>"; + echo "</TABLE>"; + cr(); + } ?> |
