diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2011-05-25 19:42:48 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2011-05-25 19:43:51 -0400 |
commit | d65962a7736ae9917182007f4ee0862193fc910f (patch) | |
tree | de515187848b3ebba4451006fb8b3564e7563866 /usr/local/www/firewall_nat_edit.php | |
parent | 838e4eb8762a000509cf98e3bd5e2a2cceac06ff (diff) | |
download | pfsense-d65962a7736ae9917182007f4ee0862193fc910f.zip pfsense-d65962a7736ae9917182007f4ee0862193fc910f.tar.gz |
Adding a new hook system for firewall nat edit and firewall rules edit page.
Basically if the directory exists it will suck in the files to extend these pags.
/usr/local/pkg/firewall_nat/input_validation
/usr/local/pkg/firewall_nat/pre_write_config
/usr/local/pkg/firewall_nat/htmlphpearly
/usr/local/pkg/firewall_nat/htmlphplate
/usr/local/pkg/firewall_rules/input_validation
/usr/local/pkg/firewall_rules/pre_write_config
/usr/local/pkg/firewall_rules/htmlphpearly
/usr/local/pkg/firewall_rules/htmlphplate
Diffstat (limited to 'usr/local/www/firewall_nat_edit.php')
-rwxr-xr-x | usr/local/www/firewall_nat_edit.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/usr/local/www/firewall_nat_edit.php b/usr/local/www/firewall_nat_edit.php index 3dc1d83..9895312 100755 --- a/usr/local/www/firewall_nat_edit.php +++ b/usr/local/www/firewall_nat_edit.php @@ -290,6 +290,9 @@ if ($_POST) { } } + // Allow extending of the nat edit page and include custom input validation + pfSense_handle_custom_code("/usr/local/pkg/firewall_nat/input_validation"); + if (!$input_errors) { $natent = array(); @@ -422,6 +425,9 @@ if ($_POST) { mark_subsystem_dirty('natconf'); + // Allow extending of the nat edit page and include custom input validation + pfSense_handle_custom_code("/usr/local/pkg/firewall_nat/pre_write_config"); + write_config(); header("Location: firewall_nat.php"); @@ -440,6 +446,11 @@ include("fbegin.inc"); ?> <?php if ($input_errors) print_input_errors($input_errors); ?> <form action="firewall_nat_edit.php" method="post" name="iform" id="iform"> <table width="100%" border="0" cellpadding="6" cellspacing="0"> +<?php + // Allow extending of the nat edit page and include custom input validation + pfSense_handle_custom_code("/usr/local/pkg/firewall_nat/htmlphpearly"); +?> + <tr> <td colspan="2" valign="top" class="listtopic"><?=gettext("Edit Redirect entry"); ?></td> </tr> @@ -817,6 +828,10 @@ include("fbegin.inc"); ?> </select> </td> </tr><?php endif; ?> +<?php + // Allow extending of the nat edit page and include custom input validation + pfSense_handle_custom_code("/usr/local/pkg/firewall_nat/htmlphplate"); +?> <tr> <td width="22%" valign="top"> </td> <td width="78%"> </td> |