summaryrefslogtreecommitdiffstats
path: root/usr/local/www/load_balancer_setting.php
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2015-05-13 16:36:24 +0545
committerPhil Davis <phil.davis@inf.org>2015-05-13 16:36:24 +0545
commit0162f9a1f078f25a935642f0b3db6a51b9b207a0 (patch)
treedf456107826e6755f6e1dc5f142fa62fba441c0e /usr/local/www/load_balancer_setting.php
parentc8f7068d1aaccf4ca1d1f782704289e9519233dc (diff)
downloadpfsense-0162f9a1f078f25a935642f0b3db6a51b9b207a0.zip
pfsense-0162f9a1f078f25a935642f0b3db6a51b9b207a0.tar.gz
Code style Load Balancer
Diffstat (limited to 'usr/local/www/load_balancer_setting.php')
-rw-r--r--usr/local/www/load_balancer_setting.php136
1 files changed, 68 insertions, 68 deletions
diff --git a/usr/local/www/load_balancer_setting.php b/usr/local/www/load_balancer_setting.php
index b91570f..e48e38e 100644
--- a/usr/local/www/load_balancer_setting.php
+++ b/usr/local/www/load_balancer_setting.php
@@ -55,27 +55,27 @@ $lbsetting = &$config['load_balancer']['setting'];
if ($_POST) {
- if ($_POST['apply']) {
- $retval = 0;
- $retval |= filter_configure();
- $retval |= relayd_configure();
-
- $savemsg = get_std_save_message($retval);
- clear_subsystem_dirty('loadbalancer');
- } else {
+ if ($_POST['apply']) {
+ $retval = 0;
+ $retval |= filter_configure();
+ $retval |= relayd_configure();
+
+ $savemsg = get_std_save_message($retval);
+ clear_subsystem_dirty('loadbalancer');
+ } else {
unset($input_errors);
$pconfig = $_POST;
-
+
/* input validation */
if ($_POST['timeout'] && !is_numeric($_POST['timeout'])) {
$input_errors[] = gettext("Timeout must be a numeric value");
}
- if ($_POST['interval'] && !is_numeric($_POST['interval'])) {
+ if ($_POST['interval'] && !is_numeric($_POST['interval'])) {
$input_errors[] = gettext("Interval must be a numeric value");
- }
+ }
- if ($_POST['prefork']) {
+ if ($_POST['prefork']) {
if (!is_numeric($_POST['prefork'])) {
$input_errors[] = gettext("Prefork must be a numeric value");
} else {
@@ -91,8 +91,8 @@ if ($_POST) {
$lbsetting['interval'] = $_POST['interval'];
$lbsetting['prefork'] = $_POST['prefork'];
- write_config();
- mark_subsystem_dirty('loadbalancer');
+ write_config();
+ mark_subsystem_dirty('loadbalancer');
}
}
}
@@ -112,60 +112,60 @@ include("head.inc");
<?php print_info_box_np(gettext("The load balancer configuration has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));?><br />
<?php endif; ?>
<table width="100%" border="0" cellpadding="0" cellspacing="0" summary="load balancer settings">
- <tr>
- <td class="tabnavtbl">
- <?php
- /* active tabs */
- $tab_array = array();
- $tab_array[] = array(gettext("Pools"), false, "load_balancer_pool.php");
- $tab_array[] = array(gettext("Virtual Servers"), false, "load_balancer_virtual_server.php");
- $tab_array[] = array(gettext("Monitors"), false, "load_balancer_monitor.php");
- $tab_array[] = array(gettext("Settings"), true, "load_balancer_setting.php");
- display_top_tabs($tab_array);
- ?>
- </td>
- </tr>
- <tr>
- <td id="mainarea">
- <div class="tabcont">
- <table width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area">
- <tr>
- <td colspan="2" valign="top" class="listtopic"><?=gettext("Relayd global settings"); ?></td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncell"><?=gettext("timeout") ; ?></td>
- <td width="78%" class="vtable">
- <input name="timeout" id="timeout" value="<?php if ($lbsetting['timeout'] <> "") echo $lbsetting['timeout']; ?>" class="formfld unknown" />
- <br />
- <?=gettext("Set the global timeout in milliseconds for checks. Leave blank to use the default value of 1000 ms "); ?>
- </td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncell"><?=gettext("interval") ; ?></td>
- <td width="78%" class="vtable">
- <input name="interval" id="interval" value="<?php if ($lbsetting['interval'] <> "") echo $lbsetting['interval']; ?>" class="formfld unknown" />
- <br />
- <?=gettext("Set the interval in seconds at which the member of a pool will be checked. Leave blank to use the default interval of 10 seconds"); ?>
- </td>
- </tr>
- <tr>
- <td width="22%" valign="top" class="vncell"><?=gettext("prefork") ; ?></td>
- <td width="78%" class="vtable">
- <input name="prefork" id="prefork" value="<?php if ($lbsetting['prefork'] <> "") echo $lbsetting['prefork']; ?>" class="formfld unknown" />
- <br />
- <?=gettext("Number of processes used by relayd for dns protocol. Leave blank to use the default value of 5 processes"); ?>
- </td>
- </tr>
- <tr>
- <td width="22%" valign="top">&nbsp;</td>
- <td width="78%">
- <input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save");?>" />
- </td>
- </tr>
- </table>
- </div>
- </td>
- </tr>
+ <tr>
+ <td class="tabnavtbl">
+<?php
+ /* active tabs */
+ $tab_array = array();
+ $tab_array[] = array(gettext("Pools"), false, "load_balancer_pool.php");
+ $tab_array[] = array(gettext("Virtual Servers"), false, "load_balancer_virtual_server.php");
+ $tab_array[] = array(gettext("Monitors"), false, "load_balancer_monitor.php");
+ $tab_array[] = array(gettext("Settings"), true, "load_balancer_setting.php");
+ display_top_tabs($tab_array);
+?>
+ </td>
+ </tr>
+ <tr>
+ <td id="mainarea">
+ <div class="tabcont">
+ <table width="100%" border="0" cellpadding="6" cellspacing="0" summary="main area">
+ <tr>
+ <td colspan="2" valign="top" class="listtopic"><?=gettext("Relayd global settings"); ?></td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("timeout") ; ?></td>
+ <td width="78%" class="vtable">
+ <input name="timeout" id="timeout" value="<?php if ($lbsetting['timeout'] <> "") echo $lbsetting['timeout']; ?>" class="formfld unknown" />
+ <br />
+ <?=gettext("Set the global timeout in milliseconds for checks. Leave blank to use the default value of 1000 ms "); ?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("interval") ; ?></td>
+ <td width="78%" class="vtable">
+ <input name="interval" id="interval" value="<?php if ($lbsetting['interval'] <> "") echo $lbsetting['interval']; ?>" class="formfld unknown" />
+ <br />
+ <?=gettext("Set the interval in seconds at which the member of a pool will be checked. Leave blank to use the default interval of 10 seconds"); ?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell"><?=gettext("prefork") ; ?></td>
+ <td width="78%" class="vtable">
+ <input name="prefork" id="prefork" value="<?php if ($lbsetting['prefork'] <> "") echo $lbsetting['prefork']; ?>" class="formfld unknown" />
+ <br />
+ <?=gettext("Number of processes used by relayd for dns protocol. Leave blank to use the default value of 5 processes"); ?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top">&nbsp;</td>
+ <td width="78%">
+ <input name="Submit" type="submit" class="formbtn" value="<?=gettext("Save");?>" />
+ </td>
+ </tr>
+ </table>
+ </div>
+ </td>
+ </tr>
</table>
</form>
<?php include("fend.inc"); ?>
OpenPOWER on IntegriCloud