# weforms/1.6.15/includes/admin/views/weforms-settings-privacy.php

weForms – Easy Drag &amp; Drop Contact Form Builder For WordPress, version 1.6.15. 31 lines.

- Page: https://pluginprobe.com/plugins/weforms/1.6.15/code/includes/admin/views/weforms-settings-privacy.php
- Raw: https://pluginprobe.com/plugins/weforms/1.6.15/raw/includes/admin/views/weforms-settings-privacy.php
- Modified: 2020-10-20T13:26:26+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/weforms/1.6.15/code/includes/admin/views/weforms-settings-privacy.php#L10-L20`.

```php
<h3 class="hndle"><?php esc_html_e( 'Privacy', 'weforms' ); ?></h3>

    <div class="inside">
        <table class="form-table">
            <tr>
                <th><?php esc_html_e( 'Export Payment Data', 'weforms' ); ?></th>
                <td>
                    <label>
                        <input type="checkbox" v-model="settings.privacy_payment_export">
                        <?php esc_html_e( 'Allow Exporting Payment Data of User.', 'weforms' ); ?>
                    </label>
                    <p class="help"></p>
                </td>
            </tr>
            <tr>
                <th><?php esc_html_e( 'Erase Payment Data', 'weforms' ); ?></th>
                <td>
                    <label>
                        <input type="checkbox" v-model="settings.privacy_payment_erase">
                        <?php esc_html_e( 'Allow Erasing Payment Data of User.', 'weforms' ); ?>
                    </label>
                    <p class="help"></p>
                </td>
            </tr>
        </table>
    </div>

<div class="submit-wrapper">
    <button v-on:click.prevent="saveSettings($event.target)" class="button button-primary"><?php esc_html_e( 'Save Changes', 'weforms' ); ?></button>
</div>

```
