# patchstack/2.2.3/includes/views/pages/firewall.php

Patchstack – WordPress &amp; Plugins Security, version 2.2.3. 19 lines.

- Page: https://pluginprobe.com/plugins/patchstack/2.2.3/code/includes/views/pages/firewall.php
- Raw: https://pluginprobe.com/plugins/patchstack/2.2.3/raw/includes/views/pages/firewall.php
- Modified: 2023-11-13T09:50:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/patchstack/2.2.3/code/includes/views/pages/firewall.php#L10-L20`.

```php
<?php

// Do not allow the file to be called directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}
?>
<div class="patchstack-font">
	<form class="patchstack-form-wrap" method="post" action="<?php echo esc_attr( $form_action ); ?>">
		<input type="hidden" value="<?php echo wp_create_nonce( 'patchstack-option-page' ); ?>" name="PatchstackNonce">
		<input type="hidden" value="patchstack_firewall_settings_group" name="option_page">
		<?php
			do_settings_sections( 'patchstack_firewall_settings' );
			settings_fields( 'patchstack_firewall_settings_group' );
			submit_button( __( 'Save settings', 'patchstack' ) );
		?>
	</form>
</div>

```
