# gd-security-headers/1.5/forms/tools/remove.php

GD Security Headers, version 1.5. 54 lines.

- Page: https://pluginprobe.com/plugins/gd-security-headers/1.5/code/forms/tools/remove.php
- Raw: https://pluginprobe.com/plugins/gd-security-headers/1.5/raw/forms/tools/remove.php
- Modified: 2019-03-28T08:50:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gd-security-headers/1.5/code/forms/tools/remove.php#L10-L20`.

```php
<div class="d4p-group d4p-group-extra d4p-group-important">
    <h3><?php _e("Important", "gd-security-headers"); ?></h3>
    <div class="d4p-group-inner">
        <?php _e("This tool can remove plugin settings saved in the WordPress options table and all database tables added by the plugin.", "gd-security-headers"); ?><br/><br/>
        <?php _e("Deletion operations are not reversible, and it is highly recommended to create database backup before proceeding with this tool.", "gd-security-headers"); ?> 
        <?php _e("If you choose to remove plugin settings, once that is done, all settings will be reinitialized to default values if you choose to leave plugin active.", "gd-security-headers"); ?>
    </div>
</div>

<div class="d4p-group d4p-group-tools d4p-group-reset">
    <h3><?php _e("Remove plugin settings", "gd-security-headers"); ?></h3>
    <div class="d4p-group-inner">
        <label>
            <input type="checkbox" class="widefat" name="gdsihtools[remove][settings]" value="on" /> <?php _e("All Plugin Settings", "gd-security-headers"); ?>
        </label>
    </div>
</div>

<div class="d4p-group d4p-group-tools d4p-group-reset">
    <h3><?php _e("Remove .HTACCESS rules", "gd-security-headers"); ?></h3>
    <div class="d4p-group-inner">
        <label>
            <input type="checkbox" class="widefat" name="gdsihtools[remove][htaccess]" value="on" /> <?php _e("All rules added to .HTACCESS", "gd-security-headers"); ?>
        </label>
    </div>
</div>

<div class="d4p-group d4p-group-tools d4p-group-reset">
    <h3><?php _e("Remove database data and tables", "gd-security-headers"); ?></h3>
    <div class="d4p-group-inner">
        <label>
            <input type="checkbox" class="widefat" name="gdsihtools[remove][drop]" value="on" /> <?php _e("Remove plugins database tables and all data in them", "gd-security-headers"); ?>
        </label>
        <label>
            <input type="checkbox" class="widefat" name="gdsihtools[remove][truncate]" value="on" /> <?php _e("Remove all data from database tables", "gd-security-headers"); ?>
        </label><br/>
        <hr/>
        <p><?php _e("Database tables that will be affected", "gd-security-headers"); ?>:</p>
        <ul style="list-style: inside disc;">
            <li><?php echo gdsih_db()->csp_reports; ?></li>
            <li><?php echo gdsih_db()->xxp_reports; ?></li>
        </ul>
    </div>
</div>

<div class="d4p-group d4p-group-tools d4p-group-reset">
    <h3><?php _e("Disable Plugin", "gd-security-headers"); ?></h3>
    <div class="d4p-group-inner">
        <label>
            <input type="checkbox" class="widefat" name="gdsihtools[remove][disable]" value="on" /> <?php _e("Disable plugin", "gd-security-headers"); ?>
        </label>
    </div>
</div>

```
