summaryrefslogtreecommitdiffstats
path: root/usr/local/www/firewall_shaper_vinterface.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_shaper_vinterface.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_shaper_vinterface.php')
-rw-r--r--usr/local/www/firewall_shaper_vinterface.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/usr/local/www/firewall_shaper_vinterface.php b/usr/local/www/firewall_shaper_vinterface.php
index 7415447..e1370d8 100644
--- a/usr/local/www/firewall_shaper_vinterface.php
+++ b/usr/local/www/firewall_shaper_vinterface.php
@@ -1,7 +1,7 @@
<?php
/* $Id$ */
/*
- firewall_shaper.php
+ firewall_shaper_vinterface.php
Copyright (C) 2004, 2005 Scott Ullrich
Copyright (C) 2008 Ermal Luçi
All rights reserved.
@@ -87,7 +87,7 @@ if ($_GET) {
if ($queue) {
$queue->delete_queue();
write_config();
- touch($d_shaperconfdirty_path);
+ mark_subsystem_dirty('shaper');
}
header("Location: firewall_shaper_vinterface.php");
exit;
@@ -152,7 +152,7 @@ if ($_GET) {
$queue->SetEnabled("on");
$output_form .= $queue->build_form();
write_config();
- touch($d_shaperconfdirty_path);
+ mark_subsystem_dirty('shaper');
} else
$input_errors[] = "Queue not found!";
break;
@@ -161,7 +161,7 @@ if ($_GET) {
$queue->SetEnabled("");
$output_form .= $queue->build_form();
write_config();
- touch($d_shaperconfdirty_path);
+ mark_subsystem_dirty('shaper');
} else
$input_errors[] = "Queue not found!";
break;
@@ -184,7 +184,7 @@ if ($_GET) {
$dnpipe->SetLink(&$tmppath);
$dnpipe->wconfig();
write_config();
- touch($d_shaperconfdirty_path);
+ mark_subsystem_dirty('shaper');
$can_enable = true;
$can_add = true;
}
@@ -202,7 +202,7 @@ if ($_GET) {
write_config();
$can_enable = true;
$can_add = false;
- touch($d_shaperconfdirty_path);
+ mark_subsystem_dirty('shaper');
$can_enable = true;
}
read_dummynet_config();
@@ -224,7 +224,7 @@ if ($_GET) {
/* XXX: TODO Make dummynet pretty graphs */
// enable_rrd_graphing();
- unlink($d_shaperconfdirty_path);
+ clear_subsystem_dirty('shaper');
if ($queue) {
$output_form .= $queue->build_form();
@@ -241,7 +241,7 @@ if ($_GET) {
$queue->update_dn_data($_POST);
$queue->wconfig();
write_config();
- touch($d_shaperconfdirty_path);
+ mark_subsystem_dirty('shaper');
$dontshow = false;
}
read_dummynet_config();
@@ -351,7 +351,7 @@ include("fbegin.inc");
<form action="firewall_shaper_vinterface.php" method="post" id="iform" name="iform">
<?php if ($savemsg) print_info_box($savemsg); ?>
-<?php if (file_exists($d_shaperconfdirty_path)): ?><p>
+<?php if (is_subsystem_dirty('shaper')): ?><p>
<?php print_info_box_np("The traffic shaper 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">
OpenPOWER on IntegriCloud