PluginProbe
Patchstack – WordPress & Plugins Security / trunk
Patchstack – WordPress & Plugins Security vtrunk
2.3.7 trunk 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.16 2.1.17 2.1.18 2.1.19 2.1.2 2.1.20 2.1.21 2.1.22 2.1.23 2.1.24 2.1.25 2.1.3 2.1.4 2.1.5 2.1.6 All 49 releases
patchstack / includes / views / pages / settings.php

settings.php in Patchstack – WordPress & Plugins Security trunk, at includes/views/pages/settings.php

34 lines 945 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 // Do not allow the file to be called directly.
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit;
6 }
7
8 $managed = get_option( 'patchstack_managed', false );
9 ?>
10 <div class="patchstack-content-wrap patchstack-free">
11 <div class="patchstack-top">
12 <div class="patchstack-top-logo">
13 <img src="<?php echo esc_url( $this->plugin->url ); ?>assets/images/logo.svg" alt="">
14 </div>
15 </div>
16
17 <div class="patchstack-top">
18 <h1 <?php echo !$managed ? 'style="display: none;"' : ''; ?>>
19 <?php echo wp_kses(get_option( 'patchstack_managed_text', '' ), $this->allowed_html); ?>
20 </h1>
21 </div>
22
23 <div class="patchstack-content-table">
24 <div class="patchstack-content-inner patchstack-premium">
25 <?php
26 if (isset($_GET['page']) && $_GET['page'] == 'patchstack-multisite-settings' && is_multisite()) {
27 require 'multisite-activation.php';
28 } else {
29 require 'license.php';
30 }
31 ?>
32 </div>
33 </div>
34 </div>