# patchstack/trunk/includes/views/pages/settings.php

Patchstack – WordPress &amp; Plugins Security, version trunk. 34 lines.

- Page: https://pluginprobe.com/plugins/patchstack/trunk/code/includes/views/pages/settings.php
- Raw: https://pluginprobe.com/plugins/patchstack/trunk/raw/includes/views/pages/settings.php
- Modified: 2025-09-04T12:02:52+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/trunk/code/includes/views/pages/settings.php#L10-L20`.

```php
<?php

// Do not allow the file to be called directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$managed = get_option( 'patchstack_managed', false );
?>
<div class="patchstack-content-wrap patchstack-free">
	<div class="patchstack-top">
		<div class="patchstack-top-logo">
			<img src="<?php echo esc_url( $this->plugin->url ); ?>assets/images/logo.svg" alt="">
		</div>
	</div>

	<div class="patchstack-top">
		<h1 <?php echo !$managed ? 'style="display: none;"' : ''; ?>>
			<?php echo wp_kses(get_option( 'patchstack_managed_text', '' ), $this->allowed_html); ?>
		</h1>
	</div>

	<div class="patchstack-content-table">
		<div class="patchstack-content-inner patchstack-premium">
			<?php
				if (isset($_GET['page']) && $_GET['page'] == 'patchstack-multisite-settings' && is_multisite()) {
					require 'multisite-activation.php';
				} else {
					require 'license.php';
				}
			?>
		</div>
	</div>
</div>
```
