summaryrefslogtreecommitdiffstats
path: root/usr/local/www/classes
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2008-08-05 05:03:55 +0000
committerBill Marquette <billm@pfsense.org>2008-08-05 05:03:55 +0000
commit50d86c13771164ab18c0de426f434f55c9b0cdce (patch)
treebd8ffe5404e37c26f4406c073cbec321700b5aaf /usr/local/www/classes
parentfbf672cbe9c241459579a83be00df9f20dd47dc0 (diff)
downloadpfsense-50d86c13771164ab18c0de426f434f55c9b0cdce.zip
pfsense-50d86c13771164ab18c0de426f434f55c9b0cdce.tar.gz
Bring in new server load balancing code, this introduces:
* The ability to create your own monitors (tcp, http, https, send/expect) * A new way of displaying 'standard tables' - MainTable class * monitor_type array type
Diffstat (limited to 'usr/local/www/classes')
-rw-r--r--usr/local/www/classes/maintable.inc190
1 files changed, 190 insertions, 0 deletions
diff --git a/usr/local/www/classes/maintable.inc b/usr/local/www/classes/maintable.inc
new file mode 100644
index 0000000..ecfbcf6
--- /dev/null
+++ b/usr/local/www/classes/maintable.inc
@@ -0,0 +1,190 @@
+<?php
+/* $Id$ */
+/*
+ part of pfSense (http://www.pfsense.com/)
+
+ Copyright (C) 2008 Bill Marquette <bill.marquette@gmail.com>.
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
+/* DISABLE_PHP_LINT_CHECKING */
+
+class MainTable {
+ private $headers = array();
+// private $columns = array();
+ private $columns = 0;
+ private $rows = 0;
+ private $content = array();
+ private $edit_uri = '';
+ private $my_uri = '';
+ private $buttons = array('move' => false, 'edit' => false, 'del' => false, 'dup' => false);
+
+ function add_column($header, $cname, $width) {
+// $this->column[] = array('header' => $header, 'cname' => $cname, 'width' => $width)
+ $this->headers[] = $header;
+ $this->cname[] = $cname;
+ $this->width[] = $width;
+ $this->columns++;
+ }
+
+ function add_content_array($rows) {
+ foreach($rows as $row) {
+ $this->content[] = $row;
+ $this->rows++;
+ }
+ }
+ function add_button($name) {
+ if (isset($this->buttons[$name])) {
+ $this->buttons[$name] = true;
+ }
+ }
+ function edit_uri($uri) {
+ $this->edit_uri = $uri;
+ }
+
+ function my_uri($uri) {
+ $this->my_uri = $uri;
+ }
+
+ function display() {
+ echo "<!-- begin content table -->\n";
+ echo "<table class=\"tabcont\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n";
+ echo " <!-- begin content table header -->\n";
+ echo $this->display_header();
+ echo " <!-- end content table header -->\n";
+ echo " <!-- begin content table rows -->\n";
+ echo $this->display_rows();
+ echo " <!-- end content table rows -->\n";
+ echo " <!-- begin content table footer -->\n";
+ echo $this->display_footer();
+ echo " <!-- end content table footer -->\n";
+ echo "</table>\n";
+ echo "<!-- end content table -->\n";
+ }
+
+ private function display_header() {
+ global $g;
+ echo "<tr>\n";
+ for ($col = 0; $col < $this->columns - 1; $col++) {
+ echo " <td width=\"{$this->width[$col]}%\" class=\"listhdrr\">{$this->headers[$col]}</td>\n";
+ }
+ echo " <td width=\"{$this->width[$this->columns - 1]}%\" class=\"listhdr\">{$this->headers[$this->columns - 1]}</td>\n";
+ echo " <td width=\"10%\" class=\"list\">\n";
+ echo " <table border=\"0\" cellspacing=\"0\" cellpadding=\"1\">\n";
+ echo " <tr>\n";
+ echo " <td width=\"17\"></td>\n";
+ echo " <td valign=\"middle\"><a href=\"{$this->edit_uri}\"><img src=\"/themes/{$g['theme']}/images/icons/icon_plus.gif\" width=\"17\" height=\"17\" border=\"0\"></a></td>\n";
+ echo " </tr>\n";
+ echo " </table>\n";
+ echo " </td>\n";
+ echo "</tr>\n";
+
+ }
+ private function display_rows() {
+ global $g;
+ $cur_row = 0;
+ foreach ($this->content as $row) {
+ echo "<tr>\n";
+ for ($col = 0; $col < $this->columns - 1; $col++) {
+ if ($col == 0) {
+ $cl = 'listlr';
+ } else {
+ $cl = 'listr';
+ }
+ echo " <td class=\"{$cl}\" onClick=\"fr_toggle({$cur_row})\" id=\"frd{$cur_row}\" ondblclick=\"document.location=\'{$this->edit_uri}?id={$cur_row}\'\">\n";
+ if (is_array($row[$this->cname[$col]])) {
+ foreach ($row[$this->cname[$col]] as $data) {
+ echo " {$data}<br/>\n";
+ }
+ } else {
+ echo " " . $row[$this->cname[$col]] . "\n";
+ }
+ echo " </td>\n";
+ }
+ echo " <td class=\"listbg\" onClick=\"fr_toggle({$cur_row})\" id=\"frd{$cur_row}\" ondblclick=\"document.location=\'{$this->edit_uri}?id={$cur_row}\'\">\n";
+ echo " <font color=\"#FFFFFF\">{$row[$this->cname[$this->columns - 1]]}</font>\n";
+ echo " </td>\n";
+ echo " <td class=\"list\" nowrap>\n";
+ $this->display_buttons($cur_row);
+ echo " </td>\n";
+ echo "</tr>\n";
+
+ $cur_row++;
+ }
+ }
+ private function display_footer() {
+ global $g;
+ echo "<tr>\n";
+ echo " <td class=\"list\" colspan=\"{$this->columns}\"></td>\n";
+ echo " <td class=\"list\">\n";
+ echo " <table border=\"0\" cellspacing=\"0\" cellpadding=\"1\">\n";
+ echo " <tr>\n";
+ echo " <td width=\"17\"></td>\n";
+ echo " <td valign=\"middle\"><a href=\"{$this->edit_uri}\"><img src=\"/themes/{$g['theme']}/images/icons/icon_plus.gif\" width=\"17\" height=\"17\" border=\"0\"></a></td>\n";
+ echo " </tr>\n";
+ echo " </table>\n";
+ echo " </td>\n";
+ echo "</tr>\n";
+ }
+ private function display_buttons($row) {
+ echo " <table border=\"0\" cellspacing=\"0\" cellpadding=\"1\">\n";
+ echo " <tr>\n";
+ if ($this->buttons['move'])
+ echo $this->display_button('move', $row);
+ if ($this->buttons['edit'])
+ echo $this->display_button('edit', $row);
+ echo " <tr>\n";
+ if ($this->buttons['del'])
+ echo $this->display_button('del', $row);
+ if ($this->buttons['dup'])
+ echo $this->display_button('dup', $row);
+ echo " </tr>\n";
+ echo " </table>\n";
+ }
+ private function display_button($button, $row) {
+ global $g;
+ echo "<td valign=\"middle\">";
+ switch ($button) {
+ case "move": {
+ echo "<input name=\"move_{$row}\" type=\"image\" src=\"./themes/{$g['theme']}/images/icons/icon_left.gif\" width=\"17\" height=\"17\" title=\"Move selected entries before this entry\" onMouseOver=\"fr_insline({$row}, true)\" onMouseOut=\"fr_insline({$row}, false)\">";
+ break;
+ }
+ case "edit": {
+ echo "<a href=\"{$this->edit_uri}?id={$row}\"><img src=\"/themes/{$g['theme']}/images/icons/icon_e.gif\" width=\"17\" height=\"17\" border=\"0\" title=\"Edit entry\"></a>";
+ break;
+ }
+ case "del": {
+ echo "<a href=\"{$this->my_uri}?act=del&id={$row}\" onclick=\"return confirm(\'Do you really want to delete this entry?\')\"><img src=\"/themes/{$g['theme']}/images/icons/icon_x.gif\" width=\"17\" height=\"17\" border=\"0\" title=\"Delete entry\"></a>";
+ break;
+ }
+ case "dup": {
+ echo "<a href=\"{$this->edit_uri}?act=dup&id={$row}\"><img src=\"/themes/{$g['theme']}/images/icons/icon_plus.gif\" width=\"17\" height=\"17\" border=\"0\" title=\"Duplicate entry\"></a>";
+ break;
+ }
+ }
+ echo "</td>";
+ }
+
+}
+?>
OpenPOWER on IntegriCloud