summaryrefslogtreecommitdiffstats
path: root/usr/local/www/wizards
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/wizards
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/wizards')
-rw-r--r--usr/local/www/wizards/traffic_shaper_wizard.inc4
-rwxr-xr-xusr/local/www/wizards/traffic_shaper_wizard_dedicated.inc4
-rwxr-xr-xusr/local/www/wizards/traffic_shaper_wizard_multi_all.inc4
-rw-r--r--usr/local/www/wizards/traffic_shaper_wizard_multi_lan.inc4
4 files changed, 8 insertions, 8 deletions
diff --git a/usr/local/www/wizards/traffic_shaper_wizard.inc b/usr/local/www/wizards/traffic_shaper_wizard.inc
index bb4559b..17e6547 100644
--- a/usr/local/www/wizards/traffic_shaper_wizard.inc
+++ b/usr/local/www/wizards/traffic_shaper_wizard.inc
@@ -513,7 +513,7 @@ function step5_stepsubmitphpaction() {
}
function step8_stepsubmitphpaction() {
- global $g, $config, $d_shaperconfdirty_path;
+ global $g, $config;
/* save the new configuration */
apply_all_choosen_items();
@@ -527,7 +527,7 @@ function step8_stepsubmitphpaction() {
filter_configure();
/* And we're no longer dirty! */
- unlink_if_exists($d_shaperconfdirty_path);
+ clear_subsystem_dirty('shaper');
update_filter_reload_status("Initializing");
diff --git a/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc b/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc
index 3d05c7f..650e878 100755
--- a/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc
+++ b/usr/local/www/wizards/traffic_shaper_wizard_dedicated.inc
@@ -549,7 +549,7 @@ function step5_stepsubmitphpaction() {
}
function step8_stepsubmitphpaction() {
- global $g, $config, $d_shaperconfdirty_path;
+ global $g, $config;
/* save the new configuration */
apply_all_choosen_items();
@@ -563,7 +563,7 @@ function step8_stepsubmitphpaction() {
filter_configure();
/* And we're no longer dirty! */
- unlink_if_exists($d_shaperconfdirty_path);
+ clear_subsystem_dirty('shaper');
update_filter_reload_status("Initializing");
diff --git a/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc b/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc
index 1173a1e..dd6caa5 100755
--- a/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc
+++ b/usr/local/www/wizards/traffic_shaper_wizard_multi_all.inc
@@ -594,7 +594,7 @@ function step5_stepsubmitphpaction() {
}
function step8_stepsubmitphpaction() {
- global $g, $config, $d_shaperconfdirty_path;
+ global $g, $config;
/* save the new configuration */
apply_all_choosen_items();
@@ -608,7 +608,7 @@ function step8_stepsubmitphpaction() {
filter_configure();
/* And we're no longer dirty! */
- unlink_if_exists($d_shaperconfdirty_path);
+ clear_subsystem_dirty('shaper');
update_filter_reload_status("Initializing");
diff --git a/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.inc b/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.inc
index 1de1269..a876839 100644
--- a/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.inc
+++ b/usr/local/www/wizards/traffic_shaper_wizard_multi_lan.inc
@@ -377,7 +377,7 @@ function step5_stepsubmitphpaction() {
}
function step8_stepsubmitphpaction() {
- global $g, $config, $d_shaperconfdirty_path;
+ global $g, $config;
/* save the new configuration */
apply_all_choosen_items();
@@ -391,7 +391,7 @@ function step8_stepsubmitphpaction() {
filter_configure();
/* And we're no longer dirty! */
- unlink_if_exists($d_shaperconfdirty_path);
+ clear_subsystem_dirty('shaper');
update_filter_reload_status("Initializing");
OpenPOWER on IntegriCloud