PluginProbe
GD Security Headers / 1.5
GD Security Headers v1.5
trunk 1.0 1.1 1.1.1 1.2 1.3 1.4 1.5 1.6 1.6.1 1.7 1.7.1 1.8 1.9
gd-security-headers / forms / install.php

install.php in GD Security Headers 1.5, at forms/install.php

41 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 if (!defined('ABSPATH')) { exit; }
4
5 $_classes = array('d4p-wrap', 'wpv-'.GDSIH_WPV, 'd4p-page-install');
6
7 ?>
8 <div class="<?php echo join(' ', $_classes); ?>">
9 <div class="d4p-header">
10 <div class="d4p-plugin">
11 GD Security Headers
12 </div>
13 </div>
14 <div class="d4p-content">
15 <div class="d4p-content-left">
16 <div class="d4p-panel-title">
17 <i aria-hidden="true" class="fa fa-magic"></i>
18 <h3><?php _e("Installation", "gd-security-headers"); ?></h3>
19 </div>
20 <div class="d4p-panel-info">
21 <?php _e("Before you continue, make sure plugin installation was successful.", "gd-security-headers"); ?>
22 </div>
23 </div>
24 <div class="d4p-content-right">
25 <div class="d4p-update-info">
26 <?php
27
28 include(GDSIH_PATH.'forms/setup/database.php');
29
30 gdsih_settings()->set('install', false, 'info');
31 gdsih_settings()->set('update', false, 'info', true);
32
33 ?>
34
35 <h3><?php _e("All Done", "gd-security-headers"); ?></h3>
36 <?php _e("Installation completed.", "gd-security-headers"); ?>
37 <br/><br/><a class="button-primary" href="<?php echo network_admin_url('admin.php?page=gd-security-headers-about'); ?>"><?php _e("Click here to continue.", "gd-security-headers"); ?></a>
38 </div>
39 </div>
40 </div>
41 </div>