summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_nat_out.php
diff options
context:
space:
mode:
authorErmal Luçi <eri@pfsense.org>2009-06-30 17:11:30 +0000
committerErmal Luçi <eri@pfsense.org>2009-06-30 17:15:22 +0000
commita368a026db2e79ef7c48f5db0fbff27da5468c26 (patch)
tree0b68b80cafa3f8cc310d8deaaa8a8fbd2e2f0482 /usr/local/www/firewall_nat_out.php
parent6819b7f60c841f89e415d6547e2e776cf1a47c5e (diff)
downloadpfsense-a368a026db2e79ef7c48f5db0fbff27da5468c26.zip
pfsense-a368a026db2e79ef7c48f5db0fbff27da5468c26.tar.gz
* Reorganize the 'apply' button infrustructure in the GUI.
- Present three new functions is/mark/clear_subsystem_dirty('name_of_subsystem'). This makes easier to create such things without needing to introduce new globals. - Convert all pages to the new infrustructure - This improves a lot the control on this notification
Diffstat (limited to 'usr/local/www/firewall_nat_out.php')
-rwxr-xr-xusr/local/www/firewall_nat_out.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr/local/www/firewall_nat_out.php b/usr/local/www/firewall_nat_out.php
index 1a1192c..fc7d14b 100755
--- a/usr/local/www/firewall_nat_out.php
+++ b/usr/local/www/firewall_nat_out.php
@@ -59,8 +59,8 @@ if ($_POST['apply']) {
$savemsg = $retval;
if ($retval == 0) {
- unlink_if_exists($d_natconfdirty_path);
- unlink_if_exists($d_filterconfdirty_path);
+ clear_subsystem_dirty('natconf');
+ clear_subsystem_dirty('filter');
}
}
@@ -112,7 +112,7 @@ if (isset($_POST['save']) && $_POST['save'] == "Save") {
break;
}
write_config();
- touch($d_natconfdirty_path);
+ mark_subsystem_dirty('natconf');
header("Location: firewall_nat_out.php");
exit;
}
@@ -124,7 +124,7 @@ if (isset($_POST['del_x'])) {
unset($a_out[$rulei]);
}
write_config();
- touch($d_natconfdirty_path);
+ mark_subsystem_dirty('natconf');
header("Location: firewall_nat_out.php");
exit;
}
@@ -171,7 +171,7 @@ if (isset($_POST['del_x'])) {
unset($config['nat']['advancedoutbound']);
write_config();
- touch($d_natconfdirty_path);
+ mark_subsystem_dirty('natconf');
header("Location: firewall_nat_out.php");
exit;
}
@@ -188,7 +188,7 @@ include("head.inc");
<script type="text/javascript" language="javascript" src="/javascript/row_toggle.js">
</script>
<?php if ($savemsg) print_info_box($savemsg); ?>
-<?php if (file_exists($d_natconfdirty_path)): ?><p>
+<?php if (is_subsystem_dirty('natconf')): ?><p>
<?php print_info_box_np("The NAT configuration has been changed.<br>You must apply the changes in order for them to take effect.");?><br>
<?php endif; ?>
<table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td>
OpenPOWER on IntegriCloud