-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadmin.php
More file actions
48 lines (33 loc) · 2.83 KB
/
Copy pathadmin.php
File metadata and controls
48 lines (33 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<h2><img style="vertical-align:middle" width="200" height="auto" src="<?php echo esc_url( plugin_dir_url(__FILE__) ) . "assets/images/logo.png";?>"/></h2>
<?php
/*
This Original Work is copyright of 51 Degrees Mobile Experts Limited.
Copyright 2019 51 Degrees Mobile Experts Limited, 5 Charlotte Close,
Caversham, Reading, Berkshire, United Kingdom RG4 7BY.
This Original Work is licensed under the European Union Public Licence (EUPL)
v.1.2 and is subject to its terms as set out below.
If a copy of the EUPL was not distributed with this file, You can obtain
one at https://opensource.org/licenses/EUPL-1.2.
The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
amended by the European Commission) shall be deemed incompatible for
the purposes of the Work and the provisions of the compatibility
clause in Article 5 of the EUPL shall not apply.
*/
$allowed_tabs = ['setup', 'google-analytics', 'properties', 'robots', 'suspicious', 'pmp', 'help'];
if (isset($_GET["tab"]) && in_array(sanitize_text_field($_GET["tab"]), $allowed_tabs, true)) {
$active_tab = sanitize_text_field( $_GET["tab"] );
} else {
$active_tab = "setup";
}
?>
<h2 class="nav-tab-wrapper">
<a href="?page=51Degrees&tab=setup" class="nav-tab <?php echo $active_tab == 'setup' ? 'nav-tab-active' : ''; ?>">Setup</a>
<a href="?page=51Degrees&tab=google-analytics" class="nav-tab <?php echo $active_tab == 'google-analytics' ? 'nav-tab-active' : ''; ?>" style="<?php echo !get_option(Options::RESOURCE_KEY) ? 'pointer-events:none;color:#C0C0C0;' : ''; ?>">Google Analytics</a>
<a href="?page=51Degrees&tab=properties" class="nav-tab <?php echo $active_tab == 'properties' ? 'nav-tab-active' : ''; ?>" style="<?php echo !get_option(Options::RESOURCE_KEY) ? 'pointer-events:none;color:#C0C0C0;' : ''; ?>">Properties</a>
<a href="?page=51Degrees&tab=robots" class="nav-tab <?php echo $active_tab == 'robots' ? 'nav-tab-active' : ''; ?>" style="<?php echo !get_option(Options::RESOURCE_KEY) ? 'pointer-events:none;color:#C0C0C0;' : ''; ?>">Robots.txt</a>
<a href="?page=51Degrees&tab=suspicious" class="nav-tab <?php echo $active_tab == 'suspicious' ? 'nav-tab-active' : ''; ?>" style="<?php echo !get_option(Options::RESOURCE_KEY) ? 'pointer-events:none;color:#C0C0C0;' : ''; ?>"><?php esc_html_e('Suspicious', '51D'); ?></a>
<a href="?page=51Degrees&tab=pmp" class="nav-tab <?php echo $active_tab == 'pmp' ? 'nav-tab-active' : ''; ?>" style="<?php echo !get_option(Options::RESOURCE_KEY) ? 'pointer-events:none;color:#C0C0C0;' : ''; ?>">PMP</a>
<a href="?page=51Degrees&tab=help" class="nav-tab <?php echo $active_tab == 'help' ? 'nav-tab-active' : ''; ?>">Help</a>
</h2>
<?php
include plugin_dir_path(__FILE__) . $active_tab . ".php";