| 1 |
<?php |
| 2 |
/** |
| 3 |
* The template for Log Page. |
| 4 |
* |
| 5 |
* This is the template that table list, alerts |
| 6 |
* |
| 7 |
*/ |
| 8 |
|
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
exit; // Exit if accessed directly. |
| 11 |
} |
| 12 |
?> |
| 13 |
<!-- This file should primarily consist of HTML with a little bit of PHP. --> |
| 14 |
<div class="wrap wdk-wrap"> |
| 15 |
<h1 class="wp-heading-inline"><?php echo __('Remove Plugin Data', 'wpdirectorykit'); ?></h1> |
| 16 |
<br /><br /> |
| 17 |
<div class="wdk-body"> |
| 18 |
<div class="postbox" style="display: block;"> |
| 19 |
<div class="postbox-header"> |
| 20 |
<h3><?php echo __('Info', 'wpdirectorykit'); ?></h3> |
| 21 |
</div> |
| 22 |
<div class="inside"> |
| 23 |
<?php echo wmvc_xss_clean($data_log);?> |
| 24 |
</div> |
| 25 |
</div> |
| 26 |
<a class="button button-primary" href="<?php echo esc_url(admin_url('admin.php?page=wdk_settings'));?>"><?php echo __('Back to Settings', 'wpdirectorykit'); ?></a> |
| 27 |
</div> |
| 28 |
</div> |
| 29 |
|
| 30 |
<?php $this->view('general/footer', $data); ?> |