forked from LiveCarta/LiveCartaWP
Changed source root directory
This commit is contained in:
52
html/wp-content/plugins/honeypot/includes/views/wpa_main.php
Normal file
52
html/wp-content/plugins/honeypot/includes/views/wpa_main.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
if ( ! defined( 'ABSPATH' ) ) exit;
|
||||
if (isset($_POST['submit-wpa-general-settings'])){
|
||||
$saveReturn = wpa_save_settings();
|
||||
}
|
||||
|
||||
if (isset($_POST['submit-wpae-general-settings'])){
|
||||
$saveReturn = wpae_save_settings();
|
||||
}
|
||||
|
||||
if (isset($_POST['submit-wpae-whitelist_ips'])){
|
||||
$saveReturn = wpae_save_whitelist_ips();
|
||||
}
|
||||
|
||||
if (isset($_POST['submit-wpae-integrations'])){
|
||||
$saveReturn = wpae_save_integrations();
|
||||
}
|
||||
|
||||
if (isset($_GET['tab']) && array_key_exists($_GET['tab'],$wpa_tabs)){
|
||||
$currentTab = $_GET['tab'];
|
||||
} else {
|
||||
$currentTab = 'settings';
|
||||
}
|
||||
?>
|
||||
|
||||
<?php if (isset($saveReturn)):?>
|
||||
<div class="updated <?php echo $saveReturn['status']; ?>" id="message"><p><?php echo $saveReturn['body']; ?></p></div>
|
||||
<?php endif; ?>
|
||||
|
||||
<div class="wrap">
|
||||
|
||||
<h1>WP Armour - HoneyPot Anti Spam</h1>
|
||||
|
||||
<nav class="nav-tab-wrapper">
|
||||
<?php foreach ($wpa_tabs as $tabKey => $tabData) { ?>
|
||||
<a href="<?php echo admin_url(); ?>admin.php?page=wp-armour&tab=<?php echo $tabKey; ?>" class="nav-tab <?php echo $currentTab == $tabKey?'nav-tab-active':''; ?>"><?php echo $tabData['name']; ?></a>
|
||||
<?php } ?>
|
||||
</nav>
|
||||
|
||||
<div class="tab-content">
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<?php include($wpa_tabs[$currentTab]['path']); ?>
|
||||
</td>
|
||||
<td width="15"> </td>
|
||||
<td width="250" valign="top"><?php include('wpa_sidebar.php'); ?></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user