PluginProbe
WP Directory Kit / 1.2.7
WP Directory Kit v1.2.7
1.5.6 1.5.5 1.5.4 1.5.3 trunk 1.1.0 1.1.6 1.1.8 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.8 1.4.0 1.4.1 All 35 releases
wpdirectorykit / application / views / wdk_install / remove_log.php

remove_log.php in WP Directory Kit 1.2.7, at application/views/wdk_install/remove_log.php

30 lines 997 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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); ?>