diff options
author | Bill Marquette <billm@pfsense.org> | 2005-07-03 18:29:00 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-07-03 18:29:00 +0000 |
commit | 90fd355f072c59548916a35751455d50b5c505fd (patch) | |
tree | bb4498d2883a250eff8b810254297ee2503371e9 /etc | |
parent | 183a4aae1c16f3978726879a90945ed983884185 (diff) | |
download | pfsense-90fd355f072c59548916a35751455d50b5c505fd.zip pfsense-90fd355f072c59548916a35751455d50b5c505fd.tar.gz |
Comment new "round" functions
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/pfsense-utils.inc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index 5393928..93b63d4 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -878,6 +878,14 @@ function get_disk_info() { // $size, $used, $avail, $cap } +/****f* pfsense-utils/display_top_tabs + * NAME + * display_top_tabs - display tabs with rounded edges + * INPUTS + * $text - array of tabs + * RESULT + * null + ******/ function display_top_tabs($tab_array) { echo "<table cellpadding='0' cellspacing='0'>\n"; echo " <tr height='1'>\n"; @@ -914,6 +922,14 @@ function get_disk_info() { } +/****f* pfsense-utils/display_topbar + * NAME + * display_topbar - top a table off with rounded edges + * INPUTS + * $text - (optional) Text to include in bar + * RESULT + * null + ******/ function display_topbar($text = "") { echo " <table width='100%' cellpadding='0' cellspacing='0'>\n"; echo " <tr height='1'>\n"; |